Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
Questionusing infomessege in firebird or other database Pin
muhammedmustafa10-Apr-09 4:48
muhammedmustafa10-Apr-09 4:48 
AnswerRe: using infomessege in firebird or other database Pin
Colin Angus Mackay10-Apr-09 5:04
Colin Angus Mackay10-Apr-09 5:04 
GeneralRe: using infomessege in firebird or other database Pin
muhammedmustafa10-Apr-09 21:24
muhammedmustafa10-Apr-09 21:24 
GeneralRe: using infomessege in firebird or other database Pin
Colin Angus Mackay12-Apr-09 12:12
Colin Angus Mackay12-Apr-09 12:12 
Questionaccesing Gridview Data in javascript function Pin
Abhishek Rana10-Apr-09 2:45
Abhishek Rana10-Apr-09 2:45 
AnswerRe: accesing Gridview Data in javascript function Pin
Henry Minute10-Apr-09 8:33
Henry Minute10-Apr-09 8:33 
QuestionTreeview Problem Pin
Digubha10-Apr-09 2:02
Digubha10-Apr-09 2:02 
AnswerRe: Treeview Problem Pin
Xmen Real 10-Apr-09 6:15
professional Xmen Real 10-Apr-09 6:15 
I wrote a code for this a month ago but now I do not remember it correctly. However, I'll try to explain Wink | ;)
All you need a funtion and a generic list to hold all these values. eg.

public class ValuesHolder
{
public int ID;
public int ParentID;
public string Text;
public ValuesHolde(int id, int parentID, string text)
{
// set values here
}
}


List<valuesholder> ValuesHolder_List = new List<valuesholder>();
ValuesHolder_List.Add(new ValuesHolde(id, parentID, text)); // an example



for (int a = 0; a < ValuesHolder_List.Count; a++)
{
   if (ValuesHolder_List[a].ParentID == 0)
   {
      TV.Nodes.Add(ValuesHolder_List[a].ID, ValuesHolder_List[a].Text);
      ValuesHolder_List.RemoveAt(a--); // delete that item as well as a step back
   }
}

while (ValuesHolder_List.Count != 0)
{
   for (int a = 0; a < ValuesHolder_List.Count; a++)
   {
      TreeNode[] tns = TV.Nodes.Find(ValuesHolder_List[a].ParentID, true);
      if (tns.Length > 0)
      {
         tns[0].Nodes.Add(ValuesHolder_List[a].ID, ValuesHolder_List[a].Text);
         ValuesHolder_List.RemoveAt(a--); // delete that item as well as a step back
      }
   }
}


I didn't test the code, but I'm sure it'll help you.



TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKQUFK[M`UKs*$GwU#QDXBER@CBN%
R0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-i’TV.C\y<pŠjxsg-b$f4ia>

-----------------------------------------------
128 bit encrypted signature, crack if you can

QuestionAdmin prevlige Pin
yesu prakash10-Apr-09 1:59
yesu prakash10-Apr-09 1:59 
AnswerRe: Admin prevlige Pin
Colin Angus Mackay10-Apr-09 2:02
Colin Angus Mackay10-Apr-09 2:02 
QuestionAdding my app's link to Desktop Context Menu Pin
Sumit Prakash Sharma10-Apr-09 1:06
professionalSumit Prakash Sharma10-Apr-09 1:06 
AnswerRe: Adding my app's link to Desktop Context Menu Pin
Luc 64801110-Apr-09 1:35
Luc 64801110-Apr-09 1:35 
GeneralRe: Adding my app's link to Desktop Context Menu Pin
Sumit Prakash Sharma10-Apr-09 23:03
professionalSumit Prakash Sharma10-Apr-09 23:03 
GeneralRe: Adding my app's link to Desktop Context Menu Pin
Luc 64801111-Apr-09 0:16
Luc 64801111-Apr-09 0:16 
QuestionCall event in another event Pin
Sajjad Leo10-Apr-09 0:00
Sajjad Leo10-Apr-09 0:00 
AnswerRe: Call event in another event Pin
Deresen10-Apr-09 3:09
Deresen10-Apr-09 3:09 
QuestionOracle 11g DB + ODP.NET version 2.111.6.20 + Transaction Scope/.NET3.5 [modified] Pin
devvvy9-Apr-09 23:18
devvvy9-Apr-09 23:18 
QuestionProblem - How to get HDD Serial Number in Windows Vista Pin
kalyan chattopadhyay9-Apr-09 22:22
kalyan chattopadhyay9-Apr-09 22:22 
AnswerRe: Problem - How to get HDD Serial Number in Windows Vista Pin
MumbleB9-Apr-09 22:33
MumbleB9-Apr-09 22:33 
GeneralRe: Problem - How to get HDD Serial Number in Windows Vista Pin
Bhim Prakash Singh9-Apr-09 22:46
Bhim Prakash Singh9-Apr-09 22:46 
Questionexcel to web form Pin
kapilsahrawat9-Apr-09 22:02
kapilsahrawat9-Apr-09 22:02 
AnswerRe: excel to web form Pin
Henry Minute10-Apr-09 8:38
Henry Minute10-Apr-09 8:38 
Questionhard disk serial no Pin
Bhim Prakash Singh9-Apr-09 21:51
Bhim Prakash Singh9-Apr-09 21:51 
AnswerRe: hard disk serial no Pin
Nissim Salomon9-Apr-09 22:01
Nissim Salomon9-Apr-09 22:01 
GeneralRe: hard disk serial no Pin
Bhim Prakash Singh9-Apr-09 22:10
Bhim Prakash Singh9-Apr-09 22:10 

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.