how can i parse at 10 chrs per line (CRLF...)?
Open MyFile For Binary as #1
Put #1,, MyArray 'can I add parameters there?
Close #1
...? thank you
Printable View
how can i parse at 10 chrs per line (CRLF...)?
Open MyFile For Binary as #1
Put #1,, MyArray 'can I add parameters there?
Close #1
...? thank you
IF I get what you want - cr/lf every 10 chars
Code:tmp$ = vbCrLf
Open MyFile For Binary as #1
for x = 1 to ubound(MyArray)
Put #1,, MyArray(x)
if x mod 10 = 0 then
put #1,, tmp$
end if
next x
Close #1