Hi all,
I have this code which checks the value on the listbox if true then it will display msg, if false will also display msg with different txt.
If Me.lstClinicalDetails.Column(5) = "avm" Then
' Me.TrigemRC.Enabled = True
MsgBox "trigem"
Else
' Me.TrigemRC.Enabled = False
MsgBox "not trigem"
End If
The problem is if it is avm it still display "not trigem".
cheers
I have this code which checks the value on the listbox if true then it will display msg, if false will also display msg with different txt.
If Me.lstClinicalDetails.Column(5) = "avm" Then
' Me.TrigemRC.Enabled = True
MsgBox "trigem"
Else
' Me.TrigemRC.Enabled = False
MsgBox "not trigem"
End If
The problem is if it is avm it still display "not trigem".
cheers