Determin Required field on Form

L

Lisa B.

how can you, by code determine if a field on a form is required

1. you have a field called fldName in tblPeople whose required property
=Yes

2. you have a form with a TextBox control called txtName whose Control
Source is fldName

Is it refrenced something like this
If ControlName.ControlSource.required = Yes Then .....
 
Top