O
open a adobe file from a command button
I have a text box named "vault_no" on a form. When the form opens if
"vault_no has data in it, I want a print button named "command43" to be
disabled. I used the following code and many variations but I could not get
it to work. Thanks for any help!!!
If Me!vault_No = IsNull() Then
Me!Command43.Enabled = True
Else
Me!Command43.Enabled = False
End If
"vault_no has data in it, I want a print button named "command43" to be
disabled. I used the following code and many variations but I could not get
it to work. Thanks for any help!!!
If Me!vault_No = IsNull() Then
Me!Command43.Enabled = True
Else
Me!Command43.Enabled = False
End If