Refresh grid not working 10.2.600

My company is currently working on an upgrade from 10.2.200 to 10.2.600 and we are having an issue with one of our forms. We were performing a refresh in the customization after an operation is performed, since the upgrade this is throwing an “Object reference not set to an instance of an object.” error and doesn’t perform the refresh. This does not cause a compile error.

This is the code for how we were performing the refresh:

MethodInfo mi = JobAsmViewLate.GetType().GetMethod("invokeExecute", BindingFlags.Instance | BindingFlags.NonPublic); 
mi.Invoke(JobAsmViewLate, new object[]{ true });

Any ideas on why this isn’t working anymore?

In 600 they “re-cased” a bunch of method just to make things fun… “InvokeExecute”

3 Likes

Of course they did… Oh well, works perfectly now, thank you!

Because we have nothing better to do than look for this needle in our haystack.

Thanks Jose!