Trigger and Twirl

pgendron

New Member
Hi,
I want to run a trigger on a GUI SyteLine screen... Each time my trigger is strating, I am having a warning because SyteLine is using the twirl....

My trigger cannot be executed because the twirl is active.... Can I disable the twirl on a GUI SyteLine Screen or do something else to skip this problem?

Thanks, for your help !!!

SyteLine v.6.00.10
Progress v.9.1C
 
U

Unregistered

Guest
You can try this:

Add this to your definitions.

&IF DEFINED (UIB_Is_Running) <> 0 &THEN
{lib/msg-def.i "g-" "NEW SHARED"}
&ENDIF
{lib\vcounter.i &NEW-SHARED = "NEW SHARED"}

Add this just before you run your triger:

{lib/work-off.i}

trigger.......

{lib\work-on.i &cancellable = TRUE}
{lib/twirl.i &title-twirly = " 'Working again!' "}


Hope this helps....
WB
 
Top