Hi All,
Using VBA code, trying to open website in Internet Explorer browser, fill data form from excel to web and then save it.
Most of the task is done like opening asp website.
Trouble is selecting particular tabs on asp website and saving data after updates.
Below is the code for IE
Any suggestion/tips/solution will appreciate it.
Thanks,
TechIT
Using VBA code, trying to open website in Internet Explorer browser, fill data form from excel to web and then save it.
Most of the task is done like opening asp website.
Trouble is selecting particular tabs on asp website and saving data after updates.
Below is the code for IE
Code:
Sub Open_InternetExplorer
dim oIE as object
set oIE = createobject("InternetExplorer.Application")
oIE.Navigate("[URL unfurl="true"]http://www.msn.com/......asp?....");[/URL]
oIE.Visible = true;
[b][COLOR=#EF2929]????? How do we select a particular tab[/color][/b]
......
[b][COLOR=#EF2929]????? after entering the value, how to save it[/color][/b]
end sub
Any suggestion/tips/solution will appreciate it.
Thanks,
TechIT