Hello,
I used the Microsoft HTML object libary from an excel vba module to read web html.
The code is
iexpfleetobj.document.all.Item
Call iexpfleetobj.document.parentWindow.execScript("document.form.P_IMO.value='" & VesselIMO & "';document.form.action='ShipInfo?fs=FleetInfo';document.form.submit();")
With IE 11 I read you need to use eval instead of execscript, the HTML object model does not seem to support it or I do not know how to use eval instead of execscript in the above context. Can you please help me by giving me an example.
Thank you