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

C#

 
GeneralRe: Validating the credential while sending mail Pin
M. J. Jaya Chitra2-Nov-07 23:37
M. J. Jaya Chitra2-Nov-07 23:37 
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 
I have 2 pieces of code one for datasets and the other a class in which I have a similar problem, I did not include all of the code but the general idea is there. I will place the second in a different thread. Note that some of the syntax comes from a program called OleDBProNet for loading data from a database though this should not matter see where I can read data in "***".

Class1
{
DataSet_I dsI = new DataSet_I();
DataSet_I.BSecDataDataTable BSD = new DataSet_I.BSecDataDataTable();


public void buttonFillDataTables_Click(object sender, EventArgs e)
{
if (checkBoxOleDBProNet.Checked == true)
{
if (checkBoxFilldsIDataTables.Checked == true) FilldsI_DataTablesOleDBProNet();

string strGroup = BSD[200].strGroup;

******* Data does not show here line above*****
}
}
}

Class2
{
DataSet_I dsI = new DataSet_I();
DataSet_I.BSecDataDataTable BSD = new DataSet_I.BSecDataDataTable();

FilldsI_DataTablesOleDBProNet();
{
ShowRowset();
string strGroup = BSD[200].strGroup; ******* Data shows here *****
}

public void ShowRowset()
{
Rowset.MoveFirst();
while (!Rowset.IsEOF)
{
BSD.NewBSecDataRow();
BSD.Rows.Add(nUseRecNumID);

if (Rowset.GetData(1) != null) BSD[nUseRecNumID].nRecNumID = (Int32)Rowset.GetData(1);

Rowset.MoveNext();
}
}
}
}

GeneralRe: Reading and writing DataSets Pin
MAW305-Nov-07 12:18
MAW305-Nov-07 12:18 
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 

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.