|
-
Feb 14th, 2000, 01:28 PM
#1
Thread Starter
Addicted Member
Private Sub savelog_Click()
Open App.Path & "/" & "PortPlus.Log" For Output As #1
Print , Form1.Text1
Close #1
End Sub
-
Feb 14th, 2000, 05:25 PM
#2
Frenzied Member
Try
Print #1, Form1.Text1
instead.
------------------
Mark "Buzby" Beeton
VB Developer
[email protected]
-
Feb 14th, 2000, 05:26 PM
#3
Frenzied Member
Oh.. and I would open the file for Append, not for Output, otherwise the file will be overwritten when you next write to it.
------------------
Mark "Buzby" Beeton
VB Developer
[email protected]
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
|
Click Here to Expand Forum to Full Width
|