'''Internet Explore Automation using VBScript
'''Note:- Copy the Whole the script & paste into notepad and save the "filename.vbs"
Sub IE_Automation
Dim ie
set ie=createobject("internetexplorer.application")
ie.Visible = True
ie.AddressBar = False
ie.StatusBar = False
ie.MenuBar = False
ie.FullScreen = False
ie.Toolbar = False
ie.Navigate InputBox("Enter any url","Must Add .com/.net etc")
end sub
call IE_Automation
No comments:
Post a Comment