when I want to append a file, I want to add text to the TOP of it... how do i do that??
Printable View
when I want to append a file, I want to add text to the TOP of it... how do i do that??
Code:Dim buffer as string
Open File for binary as 1
buffer=space(lof(1))
Get #1,,Buffer
Put #1,1,YourTextThatYouWantToHaveOnTop & Buffer
Close 1