query vs forms

D

deekay

A query looks very similar to a form in datasheet view.
Is it possible to call a form from a query if you click on a certain
field - or is this only possible using a form.
Is is possible to check if a one of two checkboxes has been ticked
(say male or female) in a record just by entering the data in a query
using some sort of table validation - I know that you can do some
limited required field validation.
Just wanted to know if this was at all possible because at the moment
I am doing all data entry through select queries and it seems to be
working Ok, but need to know whether its really necessary to switch to
forms (would rather not).
 
M

Mr B

deekay,

Forms are your friends. You really do need to use them. The power is in the
forms.

Really, you do need to use forms and not just queries and/or tables
directly. That is one of the purposes of forms.
 
Top