Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

IE commands not working through QV macro

I am trying to execute some IE commands through a QV macro. Some commands (such as Navigate) are working but some (such as visible, ExecWB) do not seem to work.

Here is a sample code

Set IE = CreateObject("InternetExplorer.Application")

Set RLLinks = ActiveDocument.Fields("RLLink").GetPossibleValues()

for i = 0 to RLLinks.count - 1

    RLLink = "" & RLLinks.item(i).text & ""

     IE.Navigate RLLink

     ActiveDocument.GetApplication.Sleep 5000

     IE.ExecWB 6,2

next

0 Replies