Quote:
> Thanks. I thought it was but the documentation is really vague and the
> example even worse. I will have to get a good reference book. Any
> suggestions. Ive just moved from standard basic to vb.
> Ian
> Sent via Deja.com http://www.deja.com/
> Before you buy.
Do it this way ..
As far as books go I have accosted several newbies at Borders recently
thrusting into their greasy palms, copies of Balena's Programming Visual
Basic 6
Neila
Private Sub Form_Load()
Dim X() As Long
Dim Y() As Long
ReDim X(50)
Dim I As Long
For I = 0 To 50
X(I) = I
Next
Dim lngSize As Long
Dim FF As Integer
FF = FreeFile
Open FF For Binary As #FF
lngSize = UBound(X)
Put #FF, , lngSize
Put #FF, , X
Close FF
FF = FreeFile
Open FF For Binary As #FF
Get #FF, , lngSize
ReDim Y(lngSize)
Get #FF, , Y
Close FF
For I = 0 To 50
Debug.Print Y(I)
Next
End Sub