Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
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 23, 2024, 2:21 am This article has been viewed 35214 times.
|
|