M
Martin
Hello,
I have the following code on a forms On Current property:
Private Sub Form_Current()
If [STATUS] = "Bronze" Then Me.Bronze.Visible = True Else Me.Bronze.Visible
= False
If [STATUS] = "Silver" Then Me.Silver.Visible = True Else Me.Silver.Visible
= False
If [STATUS] = "Gold" Then Me.Gold.Visible = True Else Me.Gold.Visible = False
End Sub
This shows the relevany bitmap based on the field called Status. So if
Status says gold then the Gold symbol is shown. This works fine but when the
user views on print preview or actually prints the form then the code no
longer works.
Can anyone help with this?
Many thanks in advance.
Martin
I have the following code on a forms On Current property:
Private Sub Form_Current()
If [STATUS] = "Bronze" Then Me.Bronze.Visible = True Else Me.Bronze.Visible
= False
If [STATUS] = "Silver" Then Me.Silver.Visible = True Else Me.Silver.Visible
= False
If [STATUS] = "Gold" Then Me.Gold.Visible = True Else Me.Gold.Visible = False
End Sub
This shows the relevany bitmap based on the field called Status. So if
Status says gold then the Gold symbol is shown. This works fine but when the
user views on print preview or actually prints the form then the code no
longer works.
Can anyone help with this?
Many thanks in advance.
Martin