|
-
September 27th, 2001, 02:26 PM
#1
Integer Values to Binary File
Hello....
I have a array of a user defined type that I am adding to a file like this:
Open FileName for binary as #nFileNum
for nCount = LBound(g_MyArray) to UBound(g_MyArray) step 1
Put nFileNum, , g_MyArray(nCount)
next nCount
' close the file
Close nFileNum
Now I want to add some integers to the file that is not in the array. What is the best way to do that?
Much thanks in advance for your help.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|