G
grep
Okay, now here's my understanding of the IIF statement:
Evaluate a boolean expression.
If the expression = True, do the first thing.
If the expression = False, do the second thing.
Now, this code is placed in OnCurrent for the form. Basically, the
intent is that a field should be skipped for a new record. Why am I
getting a syntax error?
iif (isnull(SupplierName), SupplierLookup.TabStop=False,
supplierlookup.TabStop=True)
TIA!
Evaluate a boolean expression.
If the expression = True, do the first thing.
If the expression = False, do the second thing.
Now, this code is placed in OnCurrent for the form. Basically, the
intent is that a field should be skipped for a new record. Why am I
getting a syntax error?
iif (isnull(SupplierName), SupplierLookup.TabStop=False,
supplierlookup.TabStop=True)
TIA!