M
Mika
Hi,
I have been using MS Internet Transfer Control with Word 97 documents. I
have the following VBA code:
With UserForm1.Inet1
.URL = "ftp://invalid.invalid.invalid"
.UserName = "username"
.Password = "password"
.Execute , "PUT c:\test.txt /home/public_html/test.txt"
End With
This works fine, but do you know other ways which would be more secure?
How about this one...
With UserForm1.Inet1
.URL = "ftp://invalid.invalid.invalid"
.UserName = "username"
.Password = "password"
.Execute , "GET /home/public_html/test.txt c:\test.txt"
End With
How can I make sure that the test.txt will always be latest version of
the file?
Thanks,
Mika
I have been using MS Internet Transfer Control with Word 97 documents. I
have the following VBA code:
With UserForm1.Inet1
.URL = "ftp://invalid.invalid.invalid"
.UserName = "username"
.Password = "password"
.Execute , "PUT c:\test.txt /home/public_html/test.txt"
End With
This works fine, but do you know other ways which would be more secure?
How about this one...
With UserForm1.Inet1
.URL = "ftp://invalid.invalid.invalid"
.UserName = "username"
.Password = "password"
.Execute , "GET /home/public_html/test.txt c:\test.txt"
End With
How can I make sure that the test.txt will always be latest version of
the file?
Thanks,
Mika