Thanks Mike. Great info for upgrading existing Jiwa 7 plugins.
One question (for now

)
Lets say I have this code:
- Code: Select all
salesOrderForm.LineDisplayed += My_LineDisplayed;
which has the following parameters from Jiwa 7
- Code: Select all
private void My_LineDisplayed(object sender, System.EventArgs e, JiwaFinancials.Jiwa.JiwaSales.SalesOrder.SalesOrderLine soLine, int row)
I'm getting an error
"No overload for 'My_LineDisplayed' matches delegate 'BaseSalesOrderEntryForm.LineDisplayedEventHandler'
I don't need you to tell me the new changes or what the actual problem is, I'll just nut it out myself but I used to be able to put an open parenthesis like this which would show the expected parameters in the void routine.
- Code: Select all
salesOrderForm.LineDisplayed( += My_LineDisplayed;
In the new plugin IDE nothing shows. Is there a new trick for getting that kind of information? I have tried unticking Release Optimised but that's not it.