[HELP] Opening Pages

Posts 115 of 15 · Page 1 of 1
[HELP] Opening Pages
Ok so my 'Handy Thing V2' Is almost finishes, currently working out a few bugs and improving the lag producer.
It works on the basis of opening web pages ( You can alter the speed obviously.. )
It looks like this
Timer4_Tick
Process.Start ("http://www.mpgh.net")

But it doesnt open web pages..
Help?
Quote Originally Posted by Golden. View Post
Ok so my 'Handy Thing V2' Is almost finishes, currently working out a few bugs and improving the lag producer.
It works on the basis of opening web pages ( You can alter the speed obviously.. )
It looks like this
Timer4_Tick
Process.Start ("http://www.mpgh.net")

But it doesnt open web pages..
Help?
Instead of using:

Code:
Process.Start ("http://www.mpgh.net")
Use:

Code:
System.Diagnostics.Process.start("http://www.mpgh.net")
Quote Originally Posted by Hassan View Post
Instead of using:

Code:
Process.Start ("http://www.mpgh.net")
Use:

Code:
System.Diagnostics.Process.start("http://www.mpgh.net")
Still doesn't work unfortunately..
Quote Originally Posted by Golden. View Post
Still doesn't work unfortunately..
Post your complete timer code here....Plus is timer even enabled ??
Quote Originally Posted by Hassan View Post
Post your complete timer code here....Plus is timer even enabled ??
Duhh
Here is the code(s)

Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
Timer4.Enabled = True
Button5.Text = "Lagging..."
Button6.Text = "Stop Lag!"
End Sub

Private Sub Timer4_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs)
System.Diagnostics.Process.Start("http://www.mpgh.net")
Why the heck would you want to put everything on timers >_>

@Hassan, unless he gets an error(missing namespace or so) what you wrote is unnecessary.
Quote Originally Posted by Blubb1337 View Post
Why the heck would you want to put everything on timers >_>

@Hassan, unless he gets an error(missing namespace or so) what you wrote is unnecessary.
cuz its a lag producer?
Lots of pages = lag?
Quote Originally Posted by Blubb1337 View Post
Why the heck would you want to put everything on timers >_>

@Hassan, unless he gets an error(missing namespace or so) what you wrote is unnecessary.
Knowing the noobs here, it was necessary !!!

@Topic: The problem is really a gay one. Don't have a clue yet -.-
Quote Originally Posted by Hassan View Post
Knowing the noobs here, it was necessary !!!

@Topic: The problem is really a gay one. Don't have a clue yet -.-
hmm, im still trying..
The site is opened threw your default browser. Try setting firefox or so as your default browser and retry. Else, check your registry for errors.
Quote Originally Posted by Blubb1337 View Post
The site is opened threw your default browser. Try setting firefox or so as your default browser and retry. Else, check your registry for errors.
i think it is already, is there a code so i could open the page with IE?
Dim myProcess as new System.Diagnostics.Process()



myProcess.StartInfo = new System.Diagnostics.ProcessStartInfo("iexplore")

myProcess.Arguments = yourWebsite

myProcess.Start()
Quote Originally Posted by Blubb1337 View Post
Dim myProcess as new System.Diagnostics.Process()



myProcess.StartInfo = new System.Diagnostics.ProcessStartInfo("iexplore")

myProcess.Arguments = yourWebsite

myProcess.Start()
Could you test it for me?
i've attached it if you will.
Quote Originally Posted by Golden. View Post
Could you test it for me?
i've attached it if you will.
Scans? /not approved
You still need a screenshot and two virus scans before I can approve that attachment.
Posts 115 of 15 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?