Simple Deployment Bug / feature Capture

I wanted to implement and notification format for my solution so that when it is deployed and issues arise, a user can select a button, select a few classifications / priorities fields, make some notes and send me the email.

The only thing I was unsure about was how to capture the form name, I thought I saw a application level function to accomplish this.

Thanks for the help in advannce.

Erich

Under the application node there is a function called:

getMethodTriggerForm

Which will return the name of the form from, like the name of the function says, the method was triggered.

Also available: currentcontroller.getName(). This returns the main form shown, so, if you’re inside a tabPanel, it will return the from on which the tabPanel is placed.

Paul

Perfect, thanks