Link to home
Start Free TrialLog in
Avatar of bkanthavelms
bkanthavelms

asked on

datagrid + vb

Hello
i need help

       * I am using msaccess vb with msaccess
and I am using datagrid


       My ques is how can I add more more one record at a time without update in database. ie.when i click save button then that the more than one record will update to database.

waiting for ur rep


Avatar of rgenius
rgenius

they why not use a temporary table. you could replicate your original table, then on save simply move all records from your temp table to your original table.

i use this most of the time.
Avatar of bkanthavelms

ASKER

Sir
How can i add more than one record in datagrid with vb
and ms access
waiting for ur rep

ASKER CERTIFIED SOLUTION
Avatar of rgenius
rgenius

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Respected sir
i have one datagrid and one command button whenever i click command button one row will increase.
how can i increase?
waiting for ur rep

thank u for ur rep
just add the "datagrid1.refresh" command after your insert statement. it is important that refresh your grid to update your entries.