Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm trying to figure out how to creat a user select value as input for partial reload.
The helptext for input box is unclear for me.
Has anyone an other example?
Thanks.
Create an input box on the QV sheet (not the script), linked to a variable. The user can set the variable value in this box.
Then look up this variable value in the script...
if (isnull(varDataLoad)) then
let varDataLoad = 4;
end if ;
Note the default value '4' used for when that variable has no value.
If you want to have a message box pop up to the user, add this line above the if( )...
let varDataLoad = input('Prompt', 'Message box title');
Which you use will depend on if you have any automated reloads - they can't respond to prompts and I don't know what happens to the input message box.
Create an input box on the QV sheet (not the script), linked to a variable. The user can set the variable value in this box.
Then look up this variable value in the script...
if (isnull(varDataLoad)) then
let varDataLoad = 4;
end if ;
Note the default value '4' used for when that variable has no value.
If you want to have a message box pop up to the user, add this line above the if( )...
let varDataLoad = input('Prompt', 'Message box title');
Which you use will depend on if you have any automated reloads - they can't respond to prompts and I don't know what happens to the input message box.