Click here to Skip to main content
15,896,552 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHow to copy some files from one folder to other with multithreading in VB.NET? Pin
Hadi Basiri16-Apr-09 14:04
Hadi Basiri16-Apr-09 14:04 
AnswerRe: How to copy some files from one folder to other with multithreading in VB.NET? Pin
Christian Graus16-Apr-09 15:13
protectorChristian Graus16-Apr-09 15:13 
GeneralRe: How to copy some files from one folder to other with multithreading in VB.NET? Pin
CPallini16-Apr-09 21:56
mveCPallini16-Apr-09 21:56 
AnswerRe: How to copy some files from one folder to other with multithreading in VB.NET? Pin
Zaegra16-Apr-09 20:33
Zaegra16-Apr-09 20:33 
Questionload xml into text box Pin
kryan016-Apr-09 13:17
kryan016-Apr-09 13:17 
AnswerRe: load xml into text box Pin
kryan016-Apr-09 13:18
kryan016-Apr-09 13:18 
GeneralRe: load xml into text box Pin
kryan016-Apr-09 13:18
kryan016-Apr-09 13:18 
AnswerRe: load xml into text box Pin
Zaegra16-Apr-09 20:26
Zaegra16-Apr-09 20:26 
Try the following Wink | ;)

Dim doc as New xml.xmldocument
doc.Load(Filename)
Dim MainNode as xml.xmlnode = doc.ChildNodes(1)

For Each NameNode As Xml.Xmlnode In MainNode.ChildNodes
Dim Name as String = NameNode.InnerText
TextBox1.Text = Textbox1.Text & vbCrLf & Name
Next


Just replace the names of the controls, that's pretty obvious. Smile | :)

Note: You might have to delete the first enter (vbCrLf) in your textbox. (Why? Take a good look at the code :P)

Hope this helped you out,
Zaegra

Motivation is the key to software development.

QuestionRe: load xml into text box [modified] Pin
kryan017-Apr-09 4:25
kryan017-Apr-09 4:25 
AnswerRe: load xml into text box Pin
Christian Graus16-Apr-09 15:11
protectorChristian Graus16-Apr-09 15:11 
GeneralRe: load xml into text box Pin
kryan017-Apr-09 1:25
kryan017-Apr-09 1:25 
QuestionHelp Pin
mo1om116-Apr-09 11:38
mo1om116-Apr-09 11:38 
AnswerRe: Help Pin
Luc Pattyn16-Apr-09 11:51
sitebuilderLuc Pattyn16-Apr-09 11:51 
AnswerRe: Help Pin
Wes Aday16-Apr-09 12:06
professionalWes Aday16-Apr-09 12:06 
AnswerRe: Help Pin
Christian Graus16-Apr-09 12:25
protectorChristian Graus16-Apr-09 12:25 
GeneralRe: Help Pin
Dave Kreskowiak16-Apr-09 12:46
mveDave Kreskowiak16-Apr-09 12:46 
GeneralRe: Help Pin
Luc Pattyn16-Apr-09 13:33
sitebuilderLuc Pattyn16-Apr-09 13:33 
GeneralRe: Help Pin
Christian Graus16-Apr-09 14:53
protectorChristian Graus16-Apr-09 14:53 
JokeRe: Help Pin
Zaegra16-Apr-09 20:29
Zaegra16-Apr-09 20:29 
GeneralRe: Help Pin
Jay Royall16-Apr-09 21:56
Jay Royall16-Apr-09 21:56 
AnswerRe: Help Pin
CPallini16-Apr-09 12:47
mveCPallini16-Apr-09 12:47 
GeneralRe: Help Pin
0x3c017-Apr-09 0:38
0x3c017-Apr-09 0:38 
GeneralRe: Help Pin
Dave Kreskowiak17-Apr-09 3:22
mveDave Kreskowiak17-Apr-09 3:22 
QuestionBitConverter - what am I missing? Pin
dan mur16-Apr-09 11:25
dan mur16-Apr-09 11:25 
AnswerRe: BitConverter - what am I missing? Pin
Luc Pattyn16-Apr-09 11:31
sitebuilderLuc Pattyn16-Apr-09 11:31 

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.