Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Aug 27th, 2004, 8:52 AM   #1
darklord_205
Newbie
 
Join Date: Aug 2004
Posts: 2
Rep Power: 0 darklord_205 is on a distinguished road
O.K, this may be easiest thing in the world to do, but I don't know how to save data (e.g ComboBox Items) from a VB6 application into a text file (without a flex grid). I can load from a file, and do so using this code:
Private Sub Form_Load()
Dim file As String
file = "h:\DL - BRU.txt" 
Open file For Input As #1
row = 1 
Do Until EOF(1)
Input #1, rm(row)
cmbNo.AddItem rm(row), num(row)
Form3.cmbNo.AddItem rm(row), num(row)
row = row + 1
Loop
Is it possible to save using similiar code?
darklord_205 is offline   Reply With Quote
Old Aug 27th, 2004, 9:10 AM   #2
Pizentios
Programming Guru
 
Pizentios's Avatar
 
Join Date: May 2004
Location: Brandon, Manitoba, Canada
Posts: 2,023
Rep Power: 7 Pizentios is on a distinguished road
Send a message via ICQ to Pizentios Send a message via MSN to Pizentios
If you are needing to save a variable to disk as a file, add this function to your project (cut & paste) and then use the example below for how to call it.

Private Function SaveFile(txtFile, ByVal MyText As String)
  Dim FileNum As Integer

  FileNum = FreeFile()

  Open txtFile For Output As FileNum
  Print #FileNum, MyText;
  Close FileNum
End Function
Say your variable containing data you want saved was named
strVarA

You would use like so:
SaveFile "D:\File.txt", strVarA

You do not need to use a variable in place of strVarA, you can just put the text you want to save inside of quotes.

SaveFile "D:\File.txt", "This is the contents of File.txt"
__________________
Profanity is the one language that all programmers understand.

Check out my Blog <---updated Nov 30 2007!
Pizentios is offline   Reply With Quote
Old Aug 27th, 2004, 9:57 AM   #3
darklord_205
Newbie
 
Join Date: Aug 2004
Posts: 2
Rep Power: 0 darklord_205 is on a distinguished road
Thanks
darklord_205 is offline   Reply With Quote
Old Aug 27th, 2004, 10:21 AM   #4
Pizentios
Programming Guru
 
Pizentios's Avatar
 
Join Date: May 2004
Location: Brandon, Manitoba, Canada
Posts: 2,023
Rep Power: 7 Pizentios is on a distinguished road
Send a message via ICQ to Pizentios Send a message via MSN to Pizentios
No Prob. Welcome to the Forums by the way.
__________________
Profanity is the one language that all programmers understand.

Check out my Blog <---updated Nov 30 2007!
Pizentios is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 5:58 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC