|
||||||
| Visual Basic Programming Discussion forum for Visual Basic, an event driven programming language and associated development environment from Microsoft for its COM programming model. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||||
|
Search google for reading/writing to files using Visual Basic. You may be using 2008 but you will find 2005 tutorials will most likely work with your version. Take the textbox value (you should use a richtextbox IMO) and write it to a file. When loading simply read the file to a string and apply that string to the textbox.
__________________
CodeCall Blog | CodeCall Wiki | Shareware Site | Linux Forum | Write a Blog The CodeCall Wiki is now fully integrated with vBulletin users! Check it out and add some new pages! |
| Sponsored Links |
|
|
|
|||
|
Hey, im just a student and so far the easiest for me to save stuff from the program to a text file - is using a normal for loop and getting it to read the stuff you want.
For instance i used this code below to read all the things in the listbox and save it to a text file. Code:
For b As Integer = 0 To lstdisplay.Items.Count - 1
Dim line As String
line = lstdisplay.Items(b)
System.IO.File.AppendAllText("File.txt", line + Environment.NewLine)
Next
Hope this helps - good luck Last edited by TcM; 01-26-2008 at 04:58 AM. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| VB 6.0: Tutorial, How to Make Glass2K!! | TcM | VB Tutorials | 12 | 09-28-2008 12:53 PM |
| VB 6.0: Tutorial, How to make a GIF in your application | TcM | VB Tutorials | 17 | 07-01-2008 04:26 PM |
| What Sort Of Things Did You Make When You Started VB? | Skel | Visual Basic Programming | 1 | 11-06-2007 02:47 PM |
| VB 6.0: Tutorial, Explaining the VB 6.0 GUI | TcM | VB Tutorials | 1 | 05-18-2007 11:25 AM |
| How to make Dumplings | ahsan16 | The Lounge | 2 | 01-11-2007 11:55 PM |
| WingedPanther | ........ | 2753.6 |
| Xav | ........ | 2704 |
| Brandon W | ........ | 1702.32 |
| John | ........ | 1207.73 |
| marwex89 | ........ | 1175.24 |
| morefood2001 | ........ | 966.05 |
| dcs | ........ | 655.75 |
| Steve.L | ........ | 475.59 |
| orjan | ........ | 418.58 |
| Aereshaa | ........ | 383.54 |
Goal: 100,000 Posts
Complete: 97%