Blank Column Headings in Matrix Forms

chrisdfchrisdf Member Posts: 82
If you open a V5 database with the V6 classic client, the matrix forms have blank column headings.

I contacted Microsoft who gave me the following fix:

Go into every matrix form and find the function called DimCodeToOption. It is called with a passing parameter of type Code and this needs to be changed to type Text. So change the parameter here from Code(30) to Text(30) or whatever.

Thi issue had to do with upper/lower case. If you run this code:

OnRun()
CodeVar := 'A';
CASE CodeVar OF
'a':
MESSAGE('xyz');
END;

Then V5 and NAV2009 behave differently.

Which means you have to edit every matrix form if you want to run a V5 database with the V6 executables!

Hope this helps anybody looking for a fix!
Sign In or Register to comment.