11-12-2009, 03:55 PM
How do I add Textbox1.Text to a textfile?
How do I add Textbox1.Text to a textfile?
|
11-12-2009, 03:55 PM
How do I add Textbox1.Text to a textfile?
11-12-2009, 04:05 PM
I suppose you want to write text to file.
For VB check this link. http://www.freevbcode.com/ShowCode.Asp?ID=4492 If you code in C# : Code: System.IO.StreamWriter streamWrite = new System.IO.StreamWriter("C:\\output.txt");
Hey mate, I cant really explain it but read this tutorial and it should help.
Heres How you do it for VB.Net http://www.vbtutor.net/vb2008/vb2008_lesson21.html And for VB6 http://www.computing.net/answers/program.../7105.html Sorry if that doesnt help.
11-12-2009, 09:11 PM
Solved:
Code: Using sw As New System.IO.StreamWriter("C:\Sample.txt") 'Opens/creates file & StreamWriter object
11-17-2009, 03:33 AM
write this code in button click event
My.Computer.FileSystem.WriteAllText("Urfilepathname", TextBox1.Text, True) |
« Next Oldest | Next Newest »
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
What could i add to my browser? [Project] | XDarkCoder | 3 | 1,434 |
02-16-2013, 10:10 AM Last Post: Swift Swim |
|
TextBox2.Text | Transfer Text to ListBox | Die | 3 | 2,664 |
01-02-2012, 06:09 PM Last Post: AceInfinity |
|
How can i add a thread? | Modestep | 2 | 1,152 |
11-16-2011, 06:24 AM Last Post: TalishHF |
|
Text Converter. Turn your text upside down! | Red X | 29 | 8,655 |
08-01-2011, 07:46 AM Last Post: Red X |
|
textBox1 on form1 = label1 on form 2? | GW19191 | 5 | 2,976 |
11-06-2010, 11:11 AM Last Post: Resistance |