datagrid minimized on startup?

  • Thread starter Thread starter frank brown
  • Start date Start date
F

frank brown

I added a datagrid to my windows forms C# app. It gets filled from a sql
dataset. It works just fine, however when the app is started the datagrid
is minimized to a little '+' in a box, clicking the '+' displays the dataset
label, clicking this label displays the data. I want it displayed/expanded
by default. I've looked at all the properties and can't figure out why this
behavior. Any suggestions?

-Frank Brown
Seattle Fire Dept
http://www.inwa.net/~frog/
 
Hi,

Set the datasource for the grid to the dataset.datatable instead of
just the dataset.

Ken
 
Back
Top