Is it possible to have an event run against a selection in the Action Menu?
I would like to check some data in a before event of the Print Sales Ack in Order Entry. Not sure if it is possible and also how to reference the selection in code if it is possible.
Use a MessageBox to figure out the name ofthe tool you want to fire on
MessageBox.Show(args.Tool.Key);
You’ll get a message box every time you click on someting… figure out what they Key is for the action you want and then you can do an IF args.Tool.Key==“MyToo”… do x y z