cdoverlaw Posted October 12, 2003 Posted October 12, 2003 Hi Can someone point out what is wrong with this subroutine Private Sub cmdLaunchCPANEL_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdLaunchCPANEL.Click System.Diagnostics.Process.Start("HTTP://"(txtUSERNAME.Text)":"(txtPassword.Text)"@rawserve.com:2082") End Sub Thanks in advance Jonathan Quote
Leaders dynamic_sysop Posted October 12, 2003 Leaders Posted October 12, 2003 you need extra " marks and also you need & signs to seperate the url bits from the TextBox bits , eg: System.Diagnostics.Process.Start("HTTP://""" & txtUSERNAME.Text & """:""" & txtPassword.Text & """@rawserve.com:2082") Quote
cdoverlaw Posted October 12, 2003 Author Posted October 12, 2003 Ok, but then that makes the url http://"username":"password"@rawserve.com:2082 it needs to be http://username:password@rawserve.com:2082 to work Quote
Leaders dynamic_sysop Posted October 12, 2003 Leaders Posted October 12, 2003 in that case System.Diagnostics.Process.Start("HTTP://" & txtUSERNAME.Text & ":" & txtPassword.Text & "@rawserve.com:2082") Quote
cdoverlaw Posted October 12, 2003 Author Posted October 12, 2003 thanks, its workign now, i just need to get the sidebar to dock to the left hand side of the screen now, you know how i can do that Quote
*Experts* Volte Posted October 12, 2003 *Experts* Posted October 12, 2003 Use the [api]SHAppBarMessage[/api] API to make your screen's real-estate decrease and put the form containing the XP Bar into the space. AllAPI will tell you what to do. Quote
cdoverlaw Posted October 12, 2003 Author Posted October 12, 2003 (edited) i am confused, please explain how to do this in a more detailed manner, thanks in advance (i must sound realy thick, sorry for that, I am just trying to learn more advanced stuff bout .net while working on a open source project i have started up) I have attached a working version of what i have so far, i hope posting this isnt against the forum rules, anyway this works so far i just need to get it docked on to the left hand side of the screen and i will then upload what i have so far to my open source site on sourceforge File has been scanned for virus's but you are recommended to scan for virus's. I take no responsibility for the use of this program Jonathan [edit]Binaries are not allowed in file attachments. No exceptions. Please upload either the source code or post a link where the files can be downloaded elsewhere. (Derek Stone, October 12, 2003 13:20:00)[/edit] Edited October 12, 2003 by Derek Stone Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.