Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Opening Saving Arrays in Visual Basic

Status
Not open for further replies.

MikeMM

Automotive
Feb 1, 2005
17
0
0
US
I'm writing a program in VB5 where I want to save the contents of a multidimensional array and be able to open that file and fill the array with the saved data. I'm familar with how to open and save data generally but I don't know how to save an entire array all at once. Is there any method that would be more effecient than using a loop to save the data one item at a time.

thanks for your help

Mike
 
Replies continue below

Recommended for you

If your write your data array in form of spread sheet then perhaps you could use a command Workbooks(name).save or Workbooks(name).Close(SaveChanges,FileName...).It is not an ellegant way but might work.
m777182
 
Status
Not open for further replies.
Back
Top