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.