Lookup Table to select (or multi-select) for edit

  • Thread starter Thread starter abc my vclass
  • Start date Start date
A

abc my vclass

I want to write a form control to lookup some tables fields from
database,
let users to select one record (or multi-select more records) under
win-form
environment for fill some fields of parent forms. Is datagrid control
support multi-select features? Is datagrid control support paging
feature to
access tables (because some tables has more than 100000 records!!)?
Has any
best ideas?
 
Hi,

Yes the datagrid control supports mutiselect. No the
windows forms datagrid does not support paging.

I would limit the data i load from database. I can not see
a user needing 100000 records. If you load it in to a dataset all the data
will be in memory. I would query the database to get the data the user is
looking for.

Ken
-------------------
I want to write a form control to lookup some tables fields from
database,
let users to select one record (or multi-select more records) under
win-form
environment for fill some fields of parent forms. Is datagrid control
support multi-select features? Is datagrid control support paging
feature to
access tables (because some tables has more than 100000 records!!)?
Has any
best ideas?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top