Highlight Demand
Hi, You created a sample plugin for me for Non Physical items to use demand.
I would like to now be able to highlight this if > 0, code in V6 was :
'Sales Orders Entry - ADD TO 'Form GridLines Displayed'
' Demand >0 Highlight Red ONLY if Unprocessed - DH
With FormObject.grdLines
.BlockMode = True
.Col = .GetColFromID(UCase("QuantityDemand"))
.Col2 = .Col
.Row = Row
.Row2 = Row
If SalesOrderLineObject Is Nothing Then
.BackColor = vbWhite
Else
If SalesOrderLineObject.QuantityDemand = 0 Then
.BackColor = vbWhite
Else
.BackColor = vbRed
End If
End If
End With
Can you give me some pointers to add in V7! Thanks
I would like to now be able to highlight this if > 0, code in V6 was :
'Sales Orders Entry - ADD TO 'Form GridLines Displayed'
' Demand >0 Highlight Red ONLY if Unprocessed - DH
With FormObject.grdLines
.BlockMode = True
.Col = .GetColFromID(UCase("QuantityDemand"))
.Col2 = .Col
.Row = Row
.Row2 = Row
If SalesOrderLineObject Is Nothing Then
.BackColor = vbWhite
Else
If SalesOrderLineObject.QuantityDemand = 0 Then
.BackColor = vbWhite
Else
.BackColor = vbRed
End If
End If
End With
Can you give me some pointers to add in V7! Thanks