hi
i have a program in which i want to save a file on other system which is on my LAN network i use this coding
it works fine but how we append this file because it create new file every time when i execute program but i want if file is not in the specified location then create or if file is present then open it and append it how is it possible
sLog = ("\\BLACK6FL2\d \Log.txt")
Open sLog For Output As #1
str = Now
MsgBox "The Programe Run At " & str
Write #1, str
Close #1
thanks in advance
varinder
i have a program in which i want to save a file on other system which is on my LAN network i use this coding
it works fine but how we append this file because it create new file every time when i execute program but i want if file is not in the specified location then create or if file is present then open it and append it how is it possible
sLog = ("\\BLACK6FL2\d \Log.txt")
Open sLog For Output As #1
str = Now
MsgBox "The Programe Run At " & str
Write #1, str
Close #1
thanks in advance
varinder
Comment