Click here to Skip to main content
15,892,298 members
Home / Discussions / C#
   

C#

 
GeneralRe: API hooking Pin
tmp027-Sep-05 4:30
tmp027-Sep-05 4:30 
QuestionDataGrid Event Pin
Yoyosch25-Sep-05 9:16
Yoyosch25-Sep-05 9:16 
QuestionGet the filename of my application Pin
QzRz25-Sep-05 7:29
QzRz25-Sep-05 7:29 
AnswerRe: Get the filename of my application Pin
Stefan Troschuetz25-Sep-05 22:18
Stefan Troschuetz25-Sep-05 22:18 
GeneralRe: Get the filename of my application Pin
QzRz26-Sep-05 5:09
QzRz26-Sep-05 5:09 
QuestionRaw sound Pin
Niklas Ulvinge25-Sep-05 6:42
Niklas Ulvinge25-Sep-05 6:42 
Questionxml file parsing Pin
Elvis_the_Pretzelator25-Sep-05 5:08
Elvis_the_Pretzelator25-Sep-05 5:08 
AnswerRe: xml file parsing Pin
Guffa25-Sep-05 6:08
Guffa25-Sep-05 6:08 
By parent nodes I assume that you mean the elements that are direct children of the root element. Then you just get the nodes in the root element an iterate through them, adding an item in the combobox for each node.

Something like:

foreach (XmlNode node in myXmlDoc.DocumentElement.ChildNodes) {
myCombo.Items.Add(node.whatever);
}

---
b { font-weight: normal; }

GeneralRe: xml file parsing Pin
Elvis_the_Pretzelator25-Sep-05 7:06
Elvis_the_Pretzelator25-Sep-05 7:06 
GeneralRe: xml file parsing Pin
Guffa25-Sep-05 8:00
Guffa25-Sep-05 8:00 
GeneralRe: xml file parsing Pin
Elvis_the_Pretzelator29-Sep-05 5:05
Elvis_the_Pretzelator29-Sep-05 5:05 
QuestionWebcam/Scanner Pin
XeoN-Kc25-Sep-05 4:44
XeoN-Kc25-Sep-05 4:44 
AnswerRe: Webcam/Scanner Pin
Andrew Kirillov25-Sep-05 19:30
Andrew Kirillov25-Sep-05 19:30 
GeneralRe: Webcam/Scanner Pin
Anonymous26-Sep-05 19:39
Anonymous26-Sep-05 19:39 
GeneralRe: Webcam/Scanner Pin
Anonymous27-Sep-05 6:38
Anonymous27-Sep-05 6:38 
QuestionUsing IShellFolder.BindToObject Pin
daouner25-Sep-05 4:17
daouner25-Sep-05 4:17 
QuestionSerialize an Object with a Hashtable of Objects Pin
Gilad Kapelushnik25-Sep-05 3:35
Gilad Kapelushnik25-Sep-05 3:35 
AnswerRe: Serialize an Object with a Hashtable of Objects Pin
S. Senthil Kumar25-Sep-05 4:26
S. Senthil Kumar25-Sep-05 4:26 
QuestionSerialize an Object with a Hashtable of Objects Pin
Gilad Kapelushnik25-Sep-05 3:35
Gilad Kapelushnik25-Sep-05 3:35 
QuestionHow can I know if a Class has an instance object in Computer's memory ? Pin
Anonymous25-Sep-05 1:46
Anonymous25-Sep-05 1:46 
AnswerRe: How can I know if a Class has an instance object in Computer's memory ? Pin
S. Senthil Kumar25-Sep-05 4:28
S. Senthil Kumar25-Sep-05 4:28 
GeneralRe: How can I know if a Class has an instance object in Computer's memory ? Pin
mav.northwind25-Sep-05 20:09
mav.northwind25-Sep-05 20:09 
QuestionWord doc in Web Browser Control Pin
mirano25-Sep-05 0:28
mirano25-Sep-05 0:28 
AnswerRe: Word doc in Web Browser Control Pin
Anonymous25-Sep-05 23:52
Anonymous25-Sep-05 23:52 
Questioncache question Pin
snouto24-Sep-05 16:58
snouto24-Sep-05 16:58 

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.