|
-
Sep 16th, 2000, 09:40 PM
#1
Thread Starter
Fanatic Member
-
Sep 16th, 2000, 09:50 PM
#2
Frenzied Member
here you go:
Code:
Private Sub cmdAdd_Click()
dim strAdd as string
strAdd = Text1 & Text2
open App.Path & "\Test.txt" for Append as #1
Append #1, strAdd
close #1
End Sub
NXSupport - Your one-stop source for computer help
-
Sep 16th, 2000, 09:56 PM
#3
Wrong way dimava.
Code:
Private Sub cmdAdd_Click()
dim strAdd as string
strAdd = Text1.text & Text2.text
open App.Path & "\Test.txt" for Append As #1
Print #1, strAdd
Close #1
End Sub
-
Sep 16th, 2000, 09:57 PM
#4
Frenzied Member
for some reason, today I've been making those little mistakes all day.
NXSupport - Your one-stop source for computer help
-
Sep 17th, 2000, 07:46 AM
#5
Thread Starter
Fanatic Member
Thanks a lot both of you. It really solved my problem.
Thnaks a lot once again.
Kinjal
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
|