Click here to Skip to main content
15,919,434 members
Home / Discussions / C#
   

C#

 
GeneralRe: Validating the credential while sending mail Pin
Johan Martensson4-Nov-07 3:11
Johan Martensson4-Nov-07 3:11 
QuestionTAPI , H323 Pin
sima_m2-Nov-07 18:59
sima_m2-Nov-07 18:59 
QuestionTAPI , H323 Pin
sima_m2-Nov-07 18:58
sima_m2-Nov-07 18:58 
QuestionReading and writing DataSets Pin
MAW302-Nov-07 15:59
MAW302-Nov-07 15:59 
GeneralRe: Reading and writing DataSets Pin
T.EDY2-Nov-07 18:11
T.EDY2-Nov-07 18:11 
GeneralRe: Reading and writing DataSets Pin
I Believe In GOD3-Nov-07 4:13
I Believe In GOD3-Nov-07 4:13 
GeneralRe: Reading and writing DataSets Pin
MAW305-Nov-07 12:17
MAW305-Nov-07 12:17 
GeneralRe: Reading and writing DataSets Pin
MAW305-Nov-07 12:18
MAW305-Nov-07 12:18 
public class NameInfoCS
{
public int historyHandle = -1;
public int nRecNumID = 0;
public string Name = "";
public int item = 0;
}


public class FillNamesInfoArrayCS
{
NameInfoCS[] NameInfoArray
public void FillArray()
{
NameInfoArray = new NameInfoCS[Names.Length];
for (int idx = 0; idx < Names.Length; ++idx)
{
NameInfoArray[idx] = new NameInfoCS();
NameInfoArray[idx].Name = Names[idx];
NameInfoArray[idx].nRecNumID = idx + 1000;
}
}
}



private Class1
{
private NameInfoCS[] NameInfoArray = new NameInfoCS[100];


******* if I load data from FillNamesInfoArrayCS here there is no problem, but if I load FillNamesInfoArrayCS from outside of this class and then call this class the class has no data in it. “info.” Below shows as null, “NameInfoCS info in NameInfoArray” error message says I must use new ****************


public void DATAMultipleHistory()
{
if (program.IsEntitled != 0)
{
program.ReleaseAllDATA();
foreach (NameInfoCS info in NameInfoArray)
{
info.historyHandle = program.get_RequestHistory(info.Name, info.strDATATP, IProgram.DATAType.btDATA, info.nNumberOfDATA);
}
}
}
}
QuestionWrite direct to screen in game (fullscreen)??? Pin
dirwir2-Nov-07 14:29
dirwir2-Nov-07 14:29 
AnswerRe: Write direct to screen in game (fullscreen)??? Pin
Insincere Dave2-Nov-07 17:13
Insincere Dave2-Nov-07 17:13 
GeneralRe: Write direct to screen in game (fullscreen)??? Pin
dirwir3-Nov-07 1:16
dirwir3-Nov-07 1:16 
QuestionOperator overloading Pin
amatbrewer2-Nov-07 13:32
amatbrewer2-Nov-07 13:32 
AnswerRe: Operator overloading Pin
PIEBALDconsult2-Nov-07 15:51
mvePIEBALDconsult2-Nov-07 15:51 
GeneralRe: Operator overloading Pin
amatbrewer5-Nov-07 8:56
amatbrewer5-Nov-07 8:56 
AnswerRe: Operator overloading Pin
Daniel Grunwald3-Nov-07 6:08
Daniel Grunwald3-Nov-07 6:08 
QuestionResizable right to left windows form Pin
the_one2003a2-Nov-07 13:13
the_one2003a2-Nov-07 13:13 
QuestionDataGridView Pin
half-life2-Nov-07 12:53
half-life2-Nov-07 12:53 
QuestionNew Line Pin
MasterSharp2-Nov-07 11:06
MasterSharp2-Nov-07 11:06 
AnswerRe: New Line Pin
led mike2-Nov-07 11:09
led mike2-Nov-07 11:09 
GeneralRe: New Line Pin
MasterSharp2-Nov-07 11:14
MasterSharp2-Nov-07 11:14 
GeneralRe: New Line Pin
led mike2-Nov-07 11:23
led mike2-Nov-07 11:23 
GeneralRe: New Line Pin
MasterSharp2-Nov-07 11:29
MasterSharp2-Nov-07 11:29 
GeneralRe: New Line Pin
Pete O'Hanlon2-Nov-07 11:38
mvePete O'Hanlon2-Nov-07 11:38 
GeneralRe: New Line Pin
led mike2-Nov-07 11:42
led mike2-Nov-07 11:42 
GeneralRe: New Line Pin
Pete O'Hanlon2-Nov-07 11:46
mvePete O'Hanlon2-Nov-07 11:46 

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.