| | |
FTP url in address bar??
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Sep 2009
Posts: 108
Reputation:
Solved Threads: 0
I want to run a FTP url in explorer. (Not in IE)
What i want is some how when the button clicked the URL should appear in the address bar of the windows explorer.
This is because the ftp I access should be accessed in that way (By typing the url in the address bar of..lets say ..mycomputer window.)
I don't knw whether both do the same thing. But when I do I manually I could access the FTP by typing the URL in address bar in mycomputer(I think it is windows explorer) but not by typing it in the address bar of IE.
Please let me knw the way to put an address in the address bar in windows explorer
thank u.
What i want is some how when the button clicked the URL should appear in the address bar of the windows explorer.
This is because the ftp I access should be accessed in that way (By typing the url in the address bar of..lets say ..mycomputer window.)
I don't knw whether both do the same thing. But when I do I manually I could access the FTP by typing the URL in address bar in mycomputer(I think it is windows explorer) but not by typing it in the address bar of IE.
Please let me knw the way to put an address in the address bar in windows explorer
thank u.
Last edited by jrosh; 34 Days Ago at 11:41 pm.
•
•
Join Date: Jun 2009
Posts: 259
Reputation:
Solved Threads: 50
0
#2 34 Days Ago
vb Syntax (Toggle Plain Text)
Dim UserName As String = "myusername" Dim password As String = "mypassword" Diagnostics.Process.Start("explorer.exe", "ftp://" & UserName & ":" & password & "@microsoft.com/bugs/")
•
•
Join Date: Sep 2009
Posts: 108
Reputation:
Solved Threads: 0
0
#3 34 Days Ago
•
•
•
•
vb Syntax (Toggle Plain Text)
Dim UserName As String = "myusername" Dim password As String = "mypassword" Diagnostics.Process.Start("explorer.exe", "ftp://" & UserName & ":" & password & "@microsoft.com/bugs/")
what are the Username & password here?? Is it the username & password for FTP??????
•
•
Join Date: Sep 2009
Posts: 108
Reputation:
Solved Threads: 0
0
#4 34 Days Ago
•
•
•
•
vb Syntax (Toggle Plain Text)
Dim UserName As String = "myusername" Dim password As String = "mypassword" Diagnostics.Process.Start("explorer.exe", "ftp://" & UserName & ":" & password & "@microsoft.com/bugs/")
VB gives an error saying that password should be a secureString. How can I create a secureString.????
•
•
Join Date: Jun 2009
Posts: 259
Reputation:
Solved Threads: 50
0
#5 33 Days Ago
•
•
•
•
what are the Username & password here?? Is it the username & password for FTP??????
---------
to the last poster....
it only request secure string if you define the username and password during the process.startinfo.password
vb Syntax (Toggle Plain Text)
Public Shared Function ReadSecureString(ByVal password As String) As System.Security.SecureString ReadSecureString = Nothing If Not String.IsNullOrEmpty(password) Then ReadSecureString = New System.Security.SecureString For Each character As Char In password.ToCharArray ReadSecureString.AppendChar(character) Next ReadSecureString.MakeReadOnly() End If End Function
process.startinfo.password=ReadSecureString("mypassword")
![]() |
Similar Threads
- New-Need to get to FTP -no Explorer address bar (Windows NT / 2000 / XP)
- get url form address bar (Python)
- Retrieve URL from address bar (PHP)
- IE will not open new URL from address bar (Viruses, Spyware and other Nasties)
- IE Address Bar hijacked by http://s5.th.msie.cc/ index.php (CWShredder.exe) (Viruses, Spyware and other Nasties)
Other Threads in the VB.NET Forum
- Previous Thread: help with windows form applications
- Next Thread: Keeping spaces when extracting text from HTML
| Thread Tools | Search this Thread |
.net .net2005 30minutes 2005 2008 access account arithmetic array basic binary bing button buttons c# center check code combobox component connectionstring convert crystalreport data database databasesearch datagrid datagridview design dissertation dissertations dissertationthesis dropdownlist excel file-dialog folder ftp generatetags google gridview hardcopy image images inline insert intel internet listview mobile monitor ms net networking output passingparameters peertopeervideostreaming picturebox picturebox1 plugin port print printing problem problemwithinstallation project reports" save savedialog searchbox searchvb.net select serial server soap sql table tcp text textbox timer toolbox trim update updown user usercontrol vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web wpf





