R
Rob
I want to display an object (rectangle or something else)
on a report when a value of a field is a specified value.
I know you have to add some code to the On Format proerty
in the reports Detail section.
I have now the following code (which does not work):
Private Sub Detail_Format(Cancel As Integer, FormatCount
As Integer)
If Len(Me.[FldProdCode]) = 0 Then
Me![bxProductcode].Visible = True
Else
Me![bxProductcode].Visible = False
End If
End Sub
Can sombody help?
/Rob
on a report when a value of a field is a specified value.
I know you have to add some code to the On Format proerty
in the reports Detail section.
I have now the following code (which does not work):
Private Sub Detail_Format(Cancel As Integer, FormatCount
As Integer)
If Len(Me.[FldProdCode]) = 0 Then
Me![bxProductcode].Visible = True
Else
Me![bxProductcode].Visible = False
End If
End Sub
Can sombody help?
/Rob