Validate Data in SQL table

  • Thread starter Thread starter Lou Civitella
  • Start date Start date
L

Lou Civitella

I have a form that the user enters values on it. One of the fields I need to
validate what is being entered against records in a SQL table.
Something like doing a findfirst in Access and then doing a nomatch.

How do I go about doing this?

Thanks In Advance,
Lou
 
U¿ytkownik "Lou Civitella said:
I have a form that the user enters values on it. One of the fields I need
to
validate what is being entered against records in a SQL table.
Something like doing a findfirst in Access and then doing a nomatch.

How do I go about doing this?

Create command (text or stored proc) that will check data in SQL Table.
Regards,
Grzegorz
 
Hi Lou,

Change the textbox to a combobox; then load the data from the table into the
combobox and the user can only pick valid data, by definition.

HTH,

Bernie Yaeger
 
Back
Top