|
-
FreeFile function and writing a file
I am useing the FreeFile function to create and then write a file to a specific location. This is working good but I notice that if I exicute it a second time with the same write location it will delete the previously written file and then create the new one. I would like to have both (or all) saved without any getting deleted, is that posible?
j = FreeFile
sa = sThePath & "\Reviewed.txt"
On Error GoTo errH
Open sa For Output As #j
Print #j, ""
Print #j, "Reviewed by: " & sThePerson
Print #j, ""
Print #j, sThePath & " -- was reviewed on " & CStr(Now)
Print #j, "<>"
Close #j
Similar Threads
-
Replies: 0
Last Post: 06-06-2008, 03:58 PM
-
By Lithic in forum VB Classic
Replies: 12
Last Post: 02-22-2005, 08:24 PM
-
By koonlee in forum ASP.NET
Replies: 1
Last Post: 12-31-2001, 03:19 AM
-
By David in forum VB Classic
Replies: 6
Last Post: 07-11-2001, 07:45 PM
-
Replies: 5
Last Post: 01-29-2001, 01:52 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks