H
HLCruz via AccessMonster.com
Private Sub Form_Current()
If Me.ListType = "Resident" And Me.Address Is Not Null Then
Me.cmdEditAddress.Visible = False
Else
Me.cmdEditAddress.Visible = True
End If
End Sub
I have a command button that I would like to be visible only if the record
meets two critera, that the ListType is Resident and their address is Not
Null. I've tried this several ways and haven't gotten it to work... thank
you to anyone who can help me out with this.
Heather
If Me.ListType = "Resident" And Me.Address Is Not Null Then
Me.cmdEditAddress.Visible = False
Else
Me.cmdEditAddress.Visible = True
End If
End Sub
I have a command button that I would like to be visible only if the record
meets two critera, that the ListType is Resident and their address is Not
Null. I've tried this several ways and haven't gotten it to work... thank
you to anyone who can help me out with this.
Heather