saving a array to disk

  • Thread starter Thread starter cliff
  • Start date Start date
C

cliff

i am a old bloke trying to teach myself to program.
i sish to save a 3 demensional aray (structur and data) to disk and return
it at a later date from a diferent module usingvba in access 2003.
i have read of openfile,put and get but i am having truble puting them
together can sombody give me a example
 
i am a old bloke trying to teach myself to program.
i sish to save a 3 demensional aray (structur and data) to disk and return
it at a later date from a diferent module usingvba in access 2003.
i have read of openfile,put and get but i am having truble puting them
together can sombody give me a example

Given that you're using a database, why not store the data in a Table in your
database? A three dimensional array maps precisely to a three-field table. By
writing to an external text file you're forcing yourself to reinvent... a
database!

It can be done, and it might be a useful learning experience, but if the
purpose is in fact to save the data, why not use the tools to hand?
 
Back
Top