dknightley
09-13-2007, 04:18 AM
HI,
I have created an if statement to get rid of any label where the corresponding field is empty or null, its no performaing as it should.
Can anyone see anything wrong?
thanks david
Private Sub Check_Controls()
If [Sku] Is Null Or [Sku] = "" Then Label15.Visible = False
Else
Label15.Visible = True
End If
End Sub
I have created an if statement to get rid of any label where the corresponding field is empty or null, its no performaing as it should.
Can anyone see anything wrong?
thanks david
Private Sub Check_Controls()
If [Sku] Is Null Or [Sku] = "" Then Label15.Visible = False
Else
Label15.Visible = True
End If
End Sub