I am using a continuous form to show videos in stock, and I have a label that says "Available" and another label that say's "Currently out of stock". I am using the following If/Then statement to decide which label to show:
If Me.chkAvailable = True Then
Me.lblAvailable.Visible = True
Me.lblOOStock.Visible = False
Else
Me.lblAvailable.Visible = False
Me.lblOOStock.Visible = True
End If
My question is, how can I get this to work on a single record in a continuous form instead of it effecting each record on the form. I hope I am making sense, and that it is possible. I am using it under the 'OnCurrent' event. Thanks for any help.
If Me.chkAvailable = True Then
Me.lblAvailable.Visible = True
Me.lblOOStock.Visible = False
Else
Me.lblAvailable.Visible = False
Me.lblOOStock.Visible = True
End If
My question is, how can I get this to work on a single record in a continuous form instead of it effecting each record on the form. I hope I am making sense, and that it is possible. I am using it under the 'OnCurrent' event. Thanks for any help.