Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

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

  • Leaders
Posted

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")

  • *Experts*
Posted

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.

Posted (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 by Derek Stone

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...