Page 1 of 1

Change Colour Size matrix label

PostPosted: Tue Jun 16, 2015 12:55 pm
by 2can2
Hi,
Can you give me the label names so I can change the 'Colours' and 'Sizes' labels in the X and Y labels for Inventory, Add/Edit Style? on V6513.
Thanks

Re: Change Colour Size matrix label

PostPosted: Tue Jun 23, 2015 11:31 pm
by Mike.Sheen
Hi Doug,

Put the following code in the Inventory Read Completed and Inventory Create New Completed breakouts of the Inventory Maintenance form:

Code: Select all
FormObject.GridManager.GridText(FormObject.gridSizeColours, "Colours", 2) = "zzz Colours"
FormObject.GridManager.GridText(FormObject.gridSizeColours, "Code", 1) = "xxx Sizes"
FormObject.GridManager.GridText(FormObject.gridSizeColours, "Code", 2) = "yyy Code"


That will alter the grid text for the colours and codes to be whatever you like.

Mike