Public Arrays
Public Arrays
(OP)
In VB 6, how can I save an array to be used by other methods? I can't save as public and I don't want to use an UI control to save it. TYVM
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
|
Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.
Here's Why Members Love Eng-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: Public Arrays
RE: Public Arrays
Dim Fnu As Long 'File Number
Open FileName4Array For Binary As Fnu
Put #Fnu, 1, ArrayName() '1 is starting location
'for saving see "PUT" help
Close Fnu
' to read
Open FileName$ For Binary As Fnu
Get #Fnu, 1, AnyArrayName()
Close #Fnu
'Now "1" again is the staring point for read, you may read a part or all.
The read array must be resized to hold all data otherwise the command will read to the size of variable defined in Get Function, this allows you to add a fixed length header to tel the reader software what he is reading and how many bytes... all info you may want to save with your array
Best regards
Maged A. Mohamed
http://magedm.freeyellow.com
http://www.magedsoft.com