Unbound form

  • Thread starter Thread starter Miya
  • Start date Start date
M

Miya

How do you create an unbound continuoue form? I want to enter from 1 to 15
records in the form and then run an append query to append those records to
a table. I guess I ought to ask how to do that too.

Thanks for all help!

Miya
 
A continuous form must be bound to a table or query.
If you like, you can create a temporary table (in your front end, if the
database is split), then run an append query to append those records to your
main table.

HTH
 
hi
It would be better to have an apend query to append each
record entered as it is entered instead of entering 15-20
records then append. with an unbound form, this would
cause you to have to use a extra "temp" table to hold the
date until the append. and you would be appending to the
temp table anyway.
by the way, you can't create an unbound continuous form.
 
Back
Top