The language used in both the QlikView loadscript and in the module code (macros) is modified VBScript. You can easily find information about VBScript commands and syntax through Google. For example, to find information about msgbox prompts and syntax enter this in Google:
vbscript tutorial msgbox
QlikviewNotes has moved!
-
My QlikviewNotes blog has relocated to the Qlikview Cookbook site. All
links to the qlikviewnotes.blogger.com site have been automatically
redirected to th...
10 years ago
4 comments:
How can I check the return value of MsgBox in a macro so that I can exit the macro if the user clicks "Cancel"?
answer=MsgBox("Hello everyone!",vbOKCancel,"Example")
If answer=vbCancel then
Exit Sub
End if
There's a ton of VBScript info on the Internet. For a question like this just go to Google and type in vscript tutorial msgbox
Thanks for sharing your valuable knowledge.
Post a Comment