The concept of "lines of data" doesn't apply to binary files, there are just bytes.
You can use the ADO Stream object to read/write binary files, or the older built-in
VB method of
Open <<filename>> for Binary As <<filenumber>>
combined with Get and Put to read and write the data.
hth
Phil