Click to See Complete Forum and Search --> : How can i read selected row in msaccess


tis707
May 3rd, 2008, 06:18 AM
Hi all,

How can i read the selected values of a table and keet it in memory and
i have to paste it by click event

database : msaccess
C#

thanks a lot

say i there is two values in that row
if i click on title(like this page post new thread) the first value should paste and next message

Shuja Ali
May 3rd, 2008, 12:30 PM
Get the values into a Dataset. Then you do whatever you want to with the values. After Dataset is just an in-memory representation of your database.

tis707
May 5th, 2008, 07:49 AM
Get the values into a Dataset. Then you do whatever you want to with the values. After Dataset is just an in-memory representation of your database.

Thank you