05-29-2008, 01:20 PM
Hi,
I would create a function only to open a website, but out of function I must do some operation on the site. How can I write the code?
... if here I write ObjExplorer.Page("..") obviously fails for the lack of the object in the repository.
Somebody can write me some code row so i can understand the exact procedure way?
thanks for every help!
I would create a function only to open a website, but out of function I must do some operation on the site. How can I write the code?
Code:
Function Open()
Dim ObjExplorer
Set ObjExplorer = createobject("InternetExplorer.Application")
ObjExplorer.visible=true
ObjExplorer.navigate"http:\\www.google.it"
End Function
Open
Somebody can write me some code row so i can understand the exact procedure way?
thanks for every help!