Hi Guys
I am using this code to disable a control on a form a split form to be precise:
What I am looking for is that in case the ORDER control is not empty, then I want to gray color the entire row.Private Sub enable()
If IsNull(Me.ORDER) Then
Me.BUY.Enabled = True
Else
Me.BUY.Enabled = False
End If
End Sub
Any thoughts on that?
Regards
Webisti