Friday, February 10, 2012

Internet Explorer Automation using VBScript


'''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

Excel VBA to send email from excel with HTML table in a email body

'' Excel vba script to send email from outlook & email body in HTML table format. ''Write down email body in HTML tags...