Force Input Question

Force Input Question

am 26.11.2007 16:46:53 von tbrogdon

I have a form to add new employees to tblEmployee with the following
fields:

Department (text - linked to tblDept - 3 values in a single field)
Shift (numeric - linked to tblShift - 3 values in a single field)
First Name (tblEmployee.FirstName)
LastName (tblEmployee.LastName)
Hiring Status (linked to tblHireStatus - 3 values in a single field)
Hire Date (Date/Time)

I cannot seem to figure out how to force these inputs to be made.

Currently, for some reason unknown to me, the only field that forces
data input is the Hire Status field.

I have looked through the properties for each field but can't seem to
figure out where I am going wrong.

Like I said, I need the user to input for all fields before moving to
a new record.

Thanks in advance,

Tim

Re: Force Input Question

am 26.11.2007 17:04:35 von Jebusville

wrote in message
news:af7b4a5c-5dd3-4086-9eec-a162b0c08c62@s6g2000prc.googleg roups.com...
>I have a form to add new employees to tblEmployee with the following
> fields:
>
> Currently, for some reason unknown to me, the only field that forces
> data input is the Hire Status field.
>
> I have looked through the properties for each field but can't seem to
> figure out where I am going wrong.
>
> Like I said, I need the user to input for all fields before moving to
> a new record.
>

Set the controls' Required properties to True.

Keith.
www.keithwilby.com

Re: Force Input Question

am 26.11.2007 19:49:33 von tbrogdon

>
> Set the controls' Required properties to True.
>

Duh...Thanks