Link to home
Start Free TrialLog in
Avatar of tuchfeld
tuchfeld

asked on

.Net Form to select group of people from list

Hi, I'd like to create a Form that shows a list of people (with scroll bar if the list is long. the list is a result of SQL query).
and have a checkbox near each name to select specific person
or push a button to select all of them.
The selected set could be edited again if the user choose to do so (i.e. the Form should remember the previous selections).
Avatar of srikanthreddyn143
srikanthreddyn143

use a gridview which has a check box and column which shows the name. You can edit or do what ever for the selected names by looping the grid rows which are selected.
Avatar of tuchfeld

ASKER

1) Can You send a link that describs how to do so?
2) Is in neccary to use the DataSource or I can set the details myself in code? which I prefere.
ASKER CERTIFIED SOLUTION
Avatar of tuchfeld
tuchfeld

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
this is the solution I was looking for.