need help in vb

  • Thread starter Thread starter KIRTI
  • Start date Start date
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 : (e-mail address removed)

Please Its Really Urgent.

Thanks.
 
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.
 
Back
Top