Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~227 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for kingvandal

Hi, I am new to VB and have hit another road block. Maybe someone can help me? How do you output the contents of a Treeview to a text file? thanks Rich

0
79
Member Avatar for april_er

Dim sw As IO.TextWriter sw = IO.File.AppendText("C:\MyTextFile.txt") sw.WriteLine(text1.text) sw.Flush() sw.Close() Hi new to the board and new to VB. I used your code and worked great. Only difference I tryed to use it in a timer. Did not work. I normally use FileOpen(1, "\TestTextbox1.txt", OpenMode.Output) Print(1, TextBox1.Text) FileClose(1) Problem with …

Member Avatar for kingvandal
0
148

The End.