J
Jonathan Smith
In an Access 2002 environment, with Access 2000 File Format:
Table has two fields:
ActivityCode (Required)
ClientName
Form has two Controls:
cmbACtivityCode
cmbClientName
Validation Need:
I need to check the value of cmbActivityCode, if the value is any
of 12 (possible 17 choices), then cmbClientName is required; otherwise
cmbClientName is not required.
PseudoCode:
If cmbActivityCode.Value = 6001 Then cmbClientName Cannot be NULL
I would appreciate any suggestions on Actual Code.
Table has two fields:
ActivityCode (Required)
ClientName
Form has two Controls:
cmbACtivityCode
cmbClientName
Validation Need:
I need to check the value of cmbActivityCode, if the value is any
of 12 (possible 17 choices), then cmbClientName is required; otherwise
cmbClientName is not required.
PseudoCode:
If cmbActivityCode.Value = 6001 Then cmbClientName Cannot be NULL
I would appreciate any suggestions on Actual Code.