Connecting Tech Pros Worldwide Forums | Help | Site Map

Unbound form and subform used for new record creation

tricard@gmail.com
Guest
 
Posts: n/a
#1: Jun 27 '06
Good day all,

I am in the process of creating a form used to enter new purchase
orders. The thing is that I do not want to bind the form to a record
set; instead I will use a SQL insert statement in VBA to update the
tables once all the data is entered on the form. I have three fields
(single record) to fill out for the table tblPurchaseOrder and three
fields (multiple records) to fill out for table tblPODetails.

The tblPurchaseOrder info is straight forward to insert with a sql
statement. I have a subform on my form right now that is bound to a
table called TEMP_PO. I do not know how to get the records off of the
subform (TEMP_PO table) and inserted into tblPODetails from my VBA code
when the "create PO" button is clicked on the form.

Thanks for the help.

Tim


rkc
Guest
 
Posts: n/a
#2: Jun 28 '06

re: Unbound form and subform used for new record creation


tricard@gmail.com wrote:[color=blue]
> Good day all,
>
> I am in the process of creating a form used to enter new purchase
> orders. The thing is that I do not want to bind the form to a record
> set; instead I will use a SQL insert statement in VBA to update the
> tables once all the data is entered on the form. I have three fields
> (single record) to fill out for the table tblPurchaseOrder and three
> fields (multiple records) to fill out for table tblPODetails.
>
> The tblPurchaseOrder info is straight forward to insert with a sql
> statement. I have a subform on my form right now that is bound to a
> table called TEMP_PO. I do not know how to get the records off of the
> subform (TEMP_PO table) and inserted into tblPODetails from my VBA code
> when the "create PO" button is clicked on the form.[/color]

Use the query builder to create an append query that selects
from the temp table and inserts into the details table. It's
pretty much a point and click operation. Run the query as part
of the "create PO" button being clicked process. If you need to
add the key field from the purchase order then edit the sql that
is generated to include it.



tricard@gmail.com
Guest
 
Posts: n/a
#3: Jun 28 '06

re: Unbound form and subform used for new record creation


That is so easy I feel stupid now :). Thank you for the help.

Tim

rkc wrote:[color=blue]
> tricard@gmail.com wrote:[color=green]
> > Good day all,
> >
> > I am in the process of creating a form used to enter new purchase
> > orders. The thing is that I do not want to bind the form to a record
> > set; instead I will use a SQL insert statement in VBA to update the
> > tables once all the data is entered on the form. I have three fields
> > (single record) to fill out for the table tblPurchaseOrder and three
> > fields (multiple records) to fill out for table tblPODetails.
> >
> > The tblPurchaseOrder info is straight forward to insert with a sql
> > statement. I have a subform on my form right now that is bound to a
> > table called TEMP_PO. I do not know how to get the records off of the
> > subform (TEMP_PO table) and inserted into tblPODetails from my VBA code
> > when the "create PO" button is clicked on the form.[/color]
>
> Use the query builder to create an append query that selects
> from the temp table and inserts into the details table. It's
> pretty much a point and click operation. Run the query as part
> of the "create PO" button being clicked process. If you need to
> add the key field from the purchase order then edit the sql that
> is generated to include it.[/color]

Closed Thread