Asked by netta blinchevsky on May 23, 2024

verifed

Verified

In a macro's conditional expression, you refer to a value of a form control using the following syntax: ____.

A) [Forms]![formname]![controlname]
B) {Forms}!{formname}!{controlname}
C) Forms.formname(controlname)
D) Forms.(formname) .(controlname)

Conditional Expression

In programming, a statement that evaluates to true or false based on specific conditions, directing the flow of control.

Form Control

Elements in a form that allow users to input data, such as buttons, checkboxes, or text fields.

  • Identify and utilize inherent functions within Access for database operations.
verifed

Verified Answer

CC
Cesar CastroMay 29, 2024
Final Answer :
A
Explanation :
The correct syntax for referring to a value of a form control in VBA is [Forms]![formname]![controlname]. This syntax uses square brackets to enclose the object hierarchy, with each object separated by an exclamation mark.