dim IE as object
set IE = CreateObject("internetexplorer.application")
IE.visible = true
IE.navigate "URL HERE"
the code is working but the only problem that i have here that everytime its open a new iexplorer ..
is there a code where i can define a iexplorer name like we do in html so all the website open in a same window
Regards
Sohail
If you declare the variable globally (Dim IE As Object) and not locally in a function, then you should be able to access it again and run the IE.navigate with a different URL.
Has someone helped you? Then you can Rate their helpful post.