I have a very simple form using the compact framework. I have two search fields a search button and a datagrid. The button sets the DataSource for a DataGrid on the form. I know that I can set the height and width on the DataGrid but I don't want the user to have to use the scroll bars on the DataGrid as it has a few hundred records. I just want the user to use the scroll bar on the form to scroll. How do I accomplish this?
|
|
|
I am assuming that the behavior you want is for a vertical scroll bar that spans the total height of the form to navigate through the records of the You could add a The tricky part is hiding the scroll bar of the Based on your application, you may want to look into using a |
||||
|
|
You must get the rowcount from the DataSource. Cast it like the enclosed example to produce the row count: (rsMissingItems is a SqlCEResultSet object)
|
|||
|
|