-
Hi, I am a newbie... When replying this remember i know little... If i need to add a moduel please tell me!!! I am makng a program that opens a website.. U want it to open a site to a timer (like every few minutes) in the same browser and goto different pages, how is this possible?
-Mike Finders
ICQ: 18345428
-
I am not sure whether you are working with VB or HTML pages
This will work with HTML pages
Add this code in your HTML page this will redirect the page to microsoft.com after 5 second
Code:
<meta http-equiv="refresh" content="5;url=http://www.microsoft.com">
If you are using vb with webbrowser or other controls you can use timer control to achieve this
Ramdas
-
Well here are some details.
If you use the Webbrowser Control in your App then you can just use the timer set the interval for what you want and then call webbrowser.navigate2(url).
You can use the ShellExe function in the WINAPI and then you can open up separate instances of Internet Explorer. This may not be what you want to do.
-
I mean in VB, so it opens the default webbrowser then refreshes to a different page specified in the program every lets say a minute..