I want to create some reports like customer transaction details....
i want to give search conditions something like,
1 user can select some / all customers (i want to provide customer names list)
2 user can select some / all transaction ids (i want to provide transaction id list)
Customer name, customer id, transaction id all are var char() fields. (not numbers).
Transaction may have hundreds of records and even customer may have hundreds of names.
How can i provide convenient searching option like. If i give combo box to select, it will display very very long list and can not select more than 1 customer at a time.
If i give checked list box still may be better than combo box but still very long list and user has to go up and down to select and see what he has selected.
May be i have to provide datagridview with check box column.
Any other better/innovative idea??
h2007