Login
`
Templates, Tools and Utilities
|
||
Icetips Article
Back to article list
Search Articles
Add Comment
Printer friendly
Direct link
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
Today is November 21, 2024, 7:42 am This article has been viewed 35211 times.
|
|