
06-04-2001, 09:12 AM
|
|
Senior Contributor
Retired Moderator * Guru *
|
|
Join Date: Aug 1999
Location: Hartford, Connecticut, 06
Posts: 1,487
|
|
Re: Adding new records...
|
ANUNEZ is partly correct.
No. You cannot "add more than one record at a time in a table with an .addnew/.update structure."
You can use it many times to add more record to the table.
You may use ANUNEZ's approach.
You may use the source as "INSERT INTO YourTable (PrimaryKey and other required fields, separated
by the comman in this parenthesis) VALUES PrimValue, ReqField1Value, ReqField2Value, SoOnValue;"
This source help adding many records to the table without loop.
AnhMy_Tran
|
|