I have a report where two controls should be dependent of the [moveINOUT] control on the same report.
I've tried a variation of ways and I don't get it, this code above should work???
any ideas? thanks
Code:
Private Sub Report_Current()
If MoveINOUT = "IN" Then
NoteOUT.Visible = False
RepairOUT.Visible = False
Else
If MoveINOUT = "OUT" Then
NoteOUT.Visible = True
RepairOUT.Visible = True
End If
End If
End Sub
any ideas? thanks
Comment