Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
parul_mehta
Partner - Creator
Partner - Creator

Hide the Reload Window and show only input box

I have an input box which is displayed when I press CTRL + R, where the user enters the required component name

On pressing CTRL + R I want to hide the Script Execution progress window, and show only the input box

Can you please let me know if it is possible, and  what code needs to be added and where,

I need to hide the script execution progress window and show only the input box.

7 Replies
stabben23
Partner - Master
Partner - Master

Hi Parul,

You can use a macro to hide script window.

Sub RefreshData
ActiveDocument.DoReload 2,false,false
End Sub

balabhaskarqlik

parul_mehta
Partner - Creator
Partner - Creator
Author

At what stage should I call this macro ?

parul_mehta
Partner - Creator
Partner - Creator
Author

Bala, I have read this article ..

Where and how should I use this ?

stabben23
Partner - Master
Partner - Master

How do you Call the script execution right now?

you should use a button or something similar to fire the trigger.

parul_mehta
Partner - Creator
Partner - Creator
Author

I am just loading on CTRL + R

Need to use the same .

on CTRL+R, only input box should display, not script progress window

at what stage would it be best to call the macro ?

Peter_Cammaert
Partner - Champion III
Partner - Champion III

In QV Desktop, Ctrl-R by default triggers a standard reload, which includes displaying the Progress Window. You can circumvent that dialog by launching a reload by way of a macro, but AFAIK the macro cannot replace the Ctrl-R action. You'll have to devise another User sequence (for example using a big button, as suggested before) to trigger an alternate reload with your own chain of actions and dialogs.