New folder on ftp
-
Hello All I had connected ftp using vb6.0 application and want to create new folder on ftp using vb6.0. Please help. Thanx regards Shazz
Shazz here to help you...
-
Hello All I had connected ftp using vb6.0 application and want to create new folder on ftp using vb6.0. Please help. Thanx regards Shazz
Shazz here to help you...
Shazz Rock wrote:
I had connected ftp using vb6.0 application
OK, what did you use to accomplish this?? There's got to be something in the FTP library you used to do what you want. Without knowing what you used, it's really difficult to tell you what you have to do.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008 -
Shazz Rock wrote:
I had connected ftp using vb6.0 application
OK, what did you use to accomplish this?? There's got to be something in the FTP library you used to do what you want. Without knowing what you used, it's really difficult to tell you what you have to do.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008Thanx Dave This is my code I had used Inet for URL COnnection along with username password host_name = txtHost.Text If LCase$(Left$(host_name, 6)) <> "ftp://" Then host_name = "ftp://" & host_name inetFTP.URL = host_name inetFTP.UserName = txtUserName.Text inetFTP.Password = txtPassword.Text I hope now you got the code and you can help me. Please help....
Shazz here to help you...
-
Thanx Dave This is my code I had used Inet for URL COnnection along with username password host_name = txtHost.Text If LCase$(Left$(host_name, 6)) <> "ftp://" Then host_name = "ftp://" & host_name inetFTP.URL = host_name inetFTP.UserName = txtUserName.Text inetFTP.Password = txtPassword.Text I hope now you got the code and you can help me. Please help....
Shazz here to help you...
In that case, everything you need to do this is found right here[^].
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008