Hi!
How can i get the function to Get or set Url for a Process
(ex: internet explorer) :confused:
thanks
Printable View
Hi!
How can i get the function to Get or set Url for a Process
(ex: internet explorer) :confused:
thanks
VB Code:
private sub Form1_Load webpage.url = "wt eva u want" end sub
I mean to do that in a another process.
You can open a URL with the default browser by using:
VB Code:
System.Diagnostics.Process.Start("http://www.google.co.uk")
But, is it posible to do some thing like this:
Please helpVB Code:
process.start("www.google.com") if geturl = "www.google.com" then seturl("www.test.com") end if ' How can i connect to the process and get the function "geturl" and "seturl"?
Hi,Quote:
Originally Posted by zenteo
Here's a link about the Geturl:
http://search.msdn.microsoft.com/sea...0&query=geturl
And seturl:
http://search.msdn.microsoft.com/sea...siteid=0&tab=0
Hope it helps,
sparrow1
The question is: how i can have a project, that opens a test-program and run a public sub in the test-program. I'll get the test-program to do something when i run the project.
What you are trying to do will require API, because you are trying to modify information in other applications when no interfaces are built in. You will have to use API functions like FindWindowEX, SendMessage, etc in order to do it. You will get more answers if you post in the API section in this forum, but it seems like a common question if you do a search in the API section. Probably some examples already posted...
ok thank you anyway!