Click here to Skip to main content
15,915,093 members
Home / Discussions / C#
   

C#

 
GeneralThanks Pin
redfish3423-Dec-05 1:22
redfish3423-Dec-05 1:22 
QuestionStruct of array Pin
peppepinna20-Dec-05 22:32
peppepinna20-Dec-05 22:32 
AnswerRe: Struct of array Pin
Colin Angus Mackay20-Dec-05 22:41
Colin Angus Mackay20-Dec-05 22:41 
GeneralRe: Struct of array Pin
peppepinna20-Dec-05 22:56
peppepinna20-Dec-05 22:56 
GeneralRe: Struct of array Pin
peppepinna20-Dec-05 23:08
peppepinna20-Dec-05 23:08 
GeneralRe: Struct of array Pin
Colin Angus Mackay20-Dec-05 23:13
Colin Angus Mackay20-Dec-05 23:13 
AnswerRe: Struct of array Pin
Colin Angus Mackay20-Dec-05 23:12
Colin Angus Mackay20-Dec-05 23:12 
GeneralRe: Struct of array Pin
peppepinna20-Dec-05 23:17
peppepinna20-Dec-05 23:17 
I have solved in this way:

struct_db mystruct = new struct_db();

public struct str1{
public string nome;
public string lunghezza;
public string tipo;
}

public class tab{
public string nometab;
public str1[] fields;
public string[] index;
public string[] procedure;

public tab(){
fields = new str1[100];
index = new string[100];
procedure = new string[100];
}
}

public class struct_db{
public int count;
public tab[] tabs;

public struct_db(){
tabs = new tab[100];
for (int i = 0;i < 100;i++)
tabs[i] = new tab();
}

now work properly...
QuestionContinuous update of PrintPreviewControl Pin
lclarsen20-Dec-05 21:52
lclarsen20-Dec-05 21:52 
AnswerRe: Continuous update of PrintPreviewControl Pin
tatchung20-Dec-05 22:41
tatchung20-Dec-05 22:41 
GeneralRe: Continuous update of PrintPreviewControl Pin
lclarsen21-Dec-05 0:48
lclarsen21-Dec-05 0:48 
QuestionDraw in application using c# Pin
Mahi.Ragava20-Dec-05 21:28
Mahi.Ragava20-Dec-05 21:28 
AnswerRe: Draw in application using c# Pin
Bassam Saoud21-Dec-05 23:27
Bassam Saoud21-Dec-05 23:27 
GeneralRe: Draw in application using c# Pin
Mahi.Ragava21-Dec-05 23:52
Mahi.Ragava21-Dec-05 23:52 
QuestionCalling AcceptChanges not updating RowStatus Pin
hasansheik20-Dec-05 21:12
hasansheik20-Dec-05 21:12 
QuestionScanning a document Pin
minkinin20-Dec-05 20:46
minkinin20-Dec-05 20:46 
GeneralCall to ACCEPT Changes not working Pin
hasansheik20-Dec-05 20:39
hasansheik20-Dec-05 20:39 
GeneralRe: Call to ACCEPT Changes not working Pin
tarasn20-Dec-05 22:56
tarasn20-Dec-05 22:56 
QuestionSelect Complete Row in Datagrid Pin
Abubakarsb20-Dec-05 20:01
Abubakarsb20-Dec-05 20:01 
QuestionTrasnfer data using Modem Pin
ayuba asia20-Dec-05 20:00
ayuba asia20-Dec-05 20:00 
QuestionSql Timeout Error Pin
ayuba asia20-Dec-05 19:57
ayuba asia20-Dec-05 19:57 
AnswerRe: Sql Timeout Error Pin
rmhewa20-Dec-05 20:10
rmhewa20-Dec-05 20:10 
GeneralRe: Sql Timeout Error Pin
Colin Angus Mackay20-Dec-05 22:51
Colin Angus Mackay20-Dec-05 22:51 
QuestionCrystal Reports in C# Pin
rmhewa20-Dec-05 19:07
rmhewa20-Dec-05 19:07 
QuestionCopy .aspx to another location Pin
cshaaaa20-Dec-05 18:17
cshaaaa20-Dec-05 18:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.