The below code is just a basic way of doing a simple operation using VBA and IE. Without the actual weblink, it's hard to provide an exact solution....
Code:
Dim IE as Object
Set IE = CreateObject("InternetExplorer.Application")
IE.Navigate "http://www.yourwebsite.com/form.aspx"
Do Until IE.LocationURL = ""
DoEvents
Loop
Do Until IE.ReadyState = 4
DoEvents
Loop
IE.document.Forms("NameOfForm").elements("TextBox").Value = "Message Here"
IE.document.Forms("NameOfForm").elements("Submit").click
IE.Quit
End Sub
Also, search for
Code:
getElementsByTagName
and on the net. Might give you some clue....
Bookmarks