`
Par2: Get procedure name - template 2001-01-18 -- Marc van Roosmalen I created this global extension template so the users can be specific about the procedure when asking for changes a.s.o.: #EXTENSION(GetAPPandProcedurenames,'Get current application and procedure names'),DESCRIPTION('Get application and procedure name') #BOXED ('Helpdesk purpose') #DISPLAY ('') #DISPLAY ('') #DISPLAY ('This extension enables the user to get the ') #DISPLAY ('application name and the') #DISPLAY ('procedure name runtime') #DISPLAY ('by pressing Ctrl+Shift+E') #DISPLAY ('') #DISPLAY ('') #ENDBOXED #AT(%AfterWindowOpening) ALERT(CtrlShiftE) !Alert function key #ENDAT #AT(%PostWindowEventHandling,'ALERTKEY') If KEYCODE() = CtrlShiftE Message('Application :' & '%Application' & '|' & 'Procedure :' & '%Procedure','Properties',icon:exclamation) END #ENDAT Printed November 21, 2024, 12:36 pm This article has been viewed/printed 35211 times. |