Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
how to use macros..
Hi,
Go to the Module Editor (Ctrl + M) and select the language you are going to use. Most of the examples (if not all of them) in these forums are written in VBScript, just search the forums for macro and whatever you want to achieve.
Hope that helps.
Hi,
Go to the Module Editor (Ctrl + M) and select the language you are going to use. Most of the examples (if not all of them) in these forums are written in VBScript, just search the forums for macro and whatever you want to achieve.
Hope that helps.
open your QVW document
press CTRL+M to go to macro editro where you can write VBSCRipt or JScript
you can define Subs and call them from Actions of buttons, text ojbects ,etc...
ex:
sub MyFirstMacro
msgbox("hello")
endsub