Question semi collon triggers on frame

estebAngz

New Member
hello, i tried to add a trigger on my frame like this one : ":" . But the app builder send me an error. you can see an attach the program.
Best regards
 

Attachments

  • w-win.w
    12.1 KB · Views: 8

Osborne

Active Member
I am not sure if that is allowed. You may have to use ANY-KEY or ANY-PRINTABLE instead and check for the key pressed:
Code:
ON ANY-PRINTABLE OF FRAME F-Main DO:
   IF KEYFUNCTION(LASTKEY) = ":" THEN
      MESSAGE "toto" VIEW-AS ALERT-BOX INFO BUTTONS OK.
END.
 
Top