Recently we had the task of getting a large number of customization that had been created using VBA and Modifier to function on the GP2015 Web Client. Since VBA will not function on the web client, we had the option of re-writing the functionality in Dexterity or Dot Net. Our development team is mainly focused on Dot Net, with a few of us that are well versed in Dexterity. For this reason, we decided that Dot Net would be the best tool to use in this
There
1. Not all the events in VBA are available in Dot Net
VBA has the events ‘BeforeUserChanged’ and ‘AfterUserChanged’ on GP Fields. This is not available in Dot Net; you only get the ‘Change’ event. This change event will fire whether the user makes a change to the field or some other code makes a change; this can cause a problem when you are setting values of a field from code.
Dot Net has the events ‘ValidateAfterOriginal’ and ‘ValidateBeforeOriginal.’ These are your best bet instead of using the ‘Change’ event. They will fire when the field value changes and you can intercept before the GP code goes off with the ‘Before’ event.
2. The GP Fields script does not always run
In VBA when you change a field through
3. Field names do not match the VBA field names
This one ends up being just trial and error for the most part. If the field name is significantly different, it can be difficult to track down the exact right field name.
Local fields – fields that are local to the screen in question – will have the name word ‘Local’ before the field name. For example, if you have a local field called ‘NewField’, in Dot Net the field will be called ‘LocalNewField.’
4. Event Arguments instead of CancelLogic
In Dot Net, the events that you register on ‘EventHandler’ will usually have two parameters: ‘Sender’ and ‘EventArgs.’ The ‘Sender’ is an object which is the field that caused the event to fire. The ‘EventArgs’ are arguments passed to the event.
I am sure there are many other
WILL STAFFORD | .Net Business Solutions Team Leader
Will is responsible for the creation and maintenance of software customizations, reports and applications. He works on the entire development life cycle, gathering requirements, designing, coding, testing and providing support for applications. Will handles custom applications and the KTL suite of products. He has worked in the GP channel for over 15 years on integration and customization to Microsoft Dynamics. Will has extensive knowledge of Visual Basic, Visual Basic for Applications, MS SQL Server T-SQL, Crystal Reports and SQL Reporting Services. Will also works with the Microsoft .Net framework, including WPF, Web Services, Desktop Applications and Web Application development.