hello guys
i have a trouble into filtering data from access database depending on a user entry on textbox and binding it by datagrid,but the main problem that when i getting data into datagrid how can i select row and when clicking on this row i want to take data that in this row and printing report(crystal report) depending on these data.
thanks for all
Loading
Andrzej WegierskiPosted Nov 28, 2005, 3:29 AM
Main problem: the row is selected after You click it. Next, get values using CurrentRowIndex property. Use indexer on DataGrid:
myDataGrid[myDataGrid.CurrentRowIndex,columnNo]
sunnyPosted Nov 26, 2005, 3:45 AM