Page 1 of 1

Change Colour on Sales Order depending on warehouse

PostPosted: Thu Sep 10, 2015 8:50 pm
by aegean66
Is there a way to change the colour on a sales order to make it obvious which warehouse you are in. (similar to how credits are red)

eg:

if SalesOrderOnject.LogicalID = "ASDGADFGFG" then

Make SalesOrderColour = blue

Else
End if

Re: Change Colour on Sales Order depending on warehouse

PostPosted: Wed Sep 16, 2015 5:01 pm
by Scott.Pearce
You could do something like this in Form Loaded:

Code: Select all
If SalesOrderObject.LogicalID = "ZZZZZZZZZZ0000000000" Then
   FormObject.SSPanelSalesOrder.BackColor = &H00008000&
End If

Re: Change Colour on Sales Order depending on warehouse

PostPosted: Wed Sep 16, 2015 8:51 pm
by aegean66
Perfect. Thanks Scott for that.

What other properties does the FormObject have? how can I find this info?

Also the text and/or background colours on each sales order line?

cheers
Damon.