ON 'KEY':U OF {&WINDOW-NAME} ANYWHERE DO

bimsimsala

New Member
hey talkers,

the following snippet works fine, when starting the app in appbuilder. outside of appbuilder the trigger doesn't fire.

ON 'F7':U OF {&WINDOW-NAME} ANYWHERE DO:
run aProcedure in somewhere.
RETURN NO-APPLY.
END.

i put it inside of the main block inside the main window of my application.

any suggestions on how to get it working in the real world app ?

thx a lot
b
 

bimsimsala

New Member
quite easy solution

just had to put it before the standard include for smart windows....

/* Include custom Main Block code for SmartWindows. */
{src/adm2/windowmn.i}
 
Top