Access '97
Hi there. I have the following code:
If Nz(Me.Author_Na me) = " " then
Btn_Close.enabl ed = FALSE
MsgBox "Missing Author Name"
else
Btn_Close.enabl ed = TRUE
End If
When I test my form out, this code disables the CLOSE button when the control is blank. For some reason, after the control has an entry, the CLOSE button still does not become enabled until after I exit out of the entire record. Is there a way to have it become enabled immediately after the entry in the control?
Thank you
Hi there. I have the following code:
If Nz(Me.Author_Na me) = " " then
Btn_Close.enabl ed = FALSE
MsgBox "Missing Author Name"
else
Btn_Close.enabl ed = TRUE
End If
When I test my form out, this code disables the CLOSE button when the control is blank. For some reason, after the control has an entry, the CLOSE button still does not become enabled until after I exit out of the entire record. Is there a way to have it become enabled immediately after the entry in the control?
Thank you
Comment