cdnicholson
cassandra
- Local time
- Today, 11:44
- Joined
- Jun 22, 2009
- Messages
- 9
My main form, frmIssue, has command buttons to a open child form, frmIssueAuthoring, for data entry. When the child form is closed and the user returns to the main form, I don't want the command button that opened the frmIssueAuthoring to be visible anymore, since the fields one the form have been populated. I expect it will look something like this:
If frmIssueAuthoring![IssueKey] Is Null Then
Me![cmdAddIssueAuthoring].Visible = True
Else
Me![cmdAddIssueAuthoring].Visible = False
End If
What am I missing? Where do I put this code on the main form?
Thanks in advance!
If frmIssueAuthoring![IssueKey] Is Null Then
Me![cmdAddIssueAuthoring].Visible = True
Else
Me![cmdAddIssueAuthoring].Visible = False
End If
What am I missing? Where do I put this code on the main form?
Thanks in advance!