Regarding notepad

S

Shallo

Hi, I've got a Macro in VBA which reads/copies data from a particular
cell and then when i run this same macro's code in mainframe It over
writes the file rather than appending it. Plz can you suggest me if
there is any code which opens a particular file in append mode to add
new data to the existing one without deleting the previous.
 
N

NOPIK

there is any code which opens a particular file in append mode to add
new data to the existing one without deleting the previous.

open "Name" for append as #
 
Top