Click here to Skip to main content
15,895,084 members
Home / Discussions / C#
   

C#

 
GeneralRe: Web Service Client / Using Non-Passed In Parameters Pin
Ennis Ray Lynch, Jr.8-Nov-07 3:15
Ennis Ray Lynch, Jr.8-Nov-07 3:15 
QuestionN-Grandparent-Parent-Child Algorithm Pin
VarChar2555-Nov-07 5:08
VarChar2555-Nov-07 5:08 
AnswerRe: N-Grandparent-Parent-Child Algorithm Pin
Paddy Boyd5-Nov-07 5:21
Paddy Boyd5-Nov-07 5:21 
AnswerRe: N-Grandparent-Parent-Child Algorithm Pin
led mike5-Nov-07 5:21
led mike5-Nov-07 5:21 
AnswerRe: N-Grandparent-Parent-Child Algorithm Pin
Pete O'Hanlon5-Nov-07 9:24
mvePete O'Hanlon5-Nov-07 9:24 
GeneralRe: N-Grandparent-Parent-Child Algorithm Pin
VarChar2555-Nov-07 5:42
VarChar2555-Nov-07 5:42 
GeneralRe: N-Grandparent-Parent-Child Algorithm Pin
J4amieC5-Nov-07 5:56
J4amieC5-Nov-07 5:56 
GeneralRe: N-Grandparent-Parent-Child Algorithm Pin
VarChar2555-Nov-07 6:25
VarChar2555-Nov-07 6:25 
Here is what my developer has implemented (excerpts)


void ProcesstopicChildren(DataTable dttopic)
{

similar while loop, but calling processtopic within whileloop.
}

main()
{
DataTable dtChildtopic;
DataTable dtParenttopic;
ItopicManager topicManager; // this is the SQL connector to call the SQL.
int ParenttopicID;

ParenttopicID = 8; // Just as a test
dtParenttopic = topicManager.GettopicView(ParenttopicID);

while(dttopic.Rows.Count > 0)
{
ParenttopicID = int.Parse(dtParenttopic.Rows[ParenttopicCount]["ParenttopicID"].ToString());
dttopic = topicManager.GettopicView(ParenttopicID);
ParenttopicCount++;
}
}

QuestionCompare Static variable and Session variable Pin
P.Murugs5-Nov-07 5:07
P.Murugs5-Nov-07 5:07 
AnswerRe: Compare Static variable and Session variable Pin
led mike5-Nov-07 5:19
led mike5-Nov-07 5:19 
GeneralRe: Compare Static variable and Session variable Pin
P.Murugs5-Nov-07 5:46
P.Murugs5-Nov-07 5:46 
QuestionUse Form Authentication Pin
whale845-Nov-07 4:44
whale845-Nov-07 4:44 
AnswerRe: Use Form Authentication Pin
led mike5-Nov-07 4:55
led mike5-Nov-07 4:55 
GeneralRe: Use Form Authentication Pin
whale845-Nov-07 5:06
whale845-Nov-07 5:06 
QuestionRichTextBox Text Color Pin
half-life5-Nov-07 3:35
half-life5-Nov-07 3:35 
AnswerRe: RichTextBox Text Color Pin
Pete O'Hanlon5-Nov-07 4:21
mvePete O'Hanlon5-Nov-07 4:21 
GeneralRe: RichTextBox Text Color Pin
half-life5-Nov-07 4:29
half-life5-Nov-07 4:29 
GeneralRe: RichTextBox Text Color Pin
Pete O'Hanlon5-Nov-07 4:39
mvePete O'Hanlon5-Nov-07 4:39 
GeneralRe: RichTextBox Text Color Pin
half-life5-Nov-07 4:48
half-life5-Nov-07 4:48 
QuestionColor of Title bar Pin
coder_help5-Nov-07 3:25
coder_help5-Nov-07 3:25 
AnswerRe: Color of Title bar Pin
half-life5-Nov-07 3:31
half-life5-Nov-07 3:31 
AnswerRe: Color of Title bar Pin
Tamimi - Code5-Nov-07 3:48
Tamimi - Code5-Nov-07 3:48 
GeneralRe: Color of Title bar Pin
coder_help5-Nov-07 4:00
coder_help5-Nov-07 4:00 
GeneralRe: Color of Title bar Pin
coder_help5-Nov-07 4:01
coder_help5-Nov-07 4:01 
GeneralRe: Color of Title bar Pin
Luc Pattyn5-Nov-07 5:21
sitebuilderLuc Pattyn5-Nov-07 5:21 

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.