need help in vb

K

KIRTI

any budy tell me how to store multiple value to access database from
visual basic's DBgrid control.

i have 4 column

1) Item Description 2) qty (quantity) 3) price 4) Totalamt (total
amount) in my DBgrid control
now i wanna code for save multiple row value from dbgrid control to my
access database any budy know how to do this ? if yes, then send
code to my email address or post here :

my email address is : [email protected]

Please Its Really Urgent.

Thanks.
 
A

Arvin Meyer [MVP]

Multiple rows should store as multiple rows in the Access database. If your
grid is bound to an underlying data source, it should do it automatically.
If it's an unbound grid, you will need to loop through the recordset and
save them 1 at a time.
 
Top