S
Stephen
I have acontinuous form (list of all customer's orders). One of the
properties of each order is whether or not is is "locked" from making
changes.
I am tyring to setup the continuous form with an image for each line that
indicates whether or not the order is locked. The image is a small padlock,
so graphically, it is clear which orders are locked.
I tried to use the following code but then realized that the code will set
ALL of teh records to teh specified case instead of allowing each record to
act independently:
If Me.Approved = True Then
Me.LockedIndicator.Visible = True
Else
Me.LockedIndicator.Visible = False
End If
Is there a way of having an image appear or be hidden (independently on each
record in a continuous form?
-Stephen
properties of each order is whether or not is is "locked" from making
changes.
I am tyring to setup the continuous form with an image for each line that
indicates whether or not the order is locked. The image is a small padlock,
so graphically, it is clear which orders are locked.
I tried to use the following code but then realized that the code will set
ALL of teh records to teh specified case instead of allowing each record to
act independently:
If Me.Approved = True Then
Me.LockedIndicator.Visible = True
Else
Me.LockedIndicator.Visible = False
End If
Is there a way of having an image appear or be hidden (independently on each
record in a continuous form?
-Stephen