O
objectref
hi to all,
let's say i have the following code:
SqlDataAdapter da = new SqlDataAdapter(cmd.CommandText, cnn);
DataSet ds = new DataSet("ds");
TestData.DataSource = ds;
da.Fill(ds);
the abvoe code is working and fetch the data in a datagrid but it displays a
plus sign on the upper left
and use have to click this plus sign to see the data loaded in the datagrid.
Is there a way to prevent this ? I mean, when the code runs, i want the
datagrid to be filled with data.
It is something reletive to the datagrid.DataMember but i could not find
what exatly is...
Any help ?
objectref
let's say i have the following code:
SqlDataAdapter da = new SqlDataAdapter(cmd.CommandText, cnn);
DataSet ds = new DataSet("ds");
TestData.DataSource = ds;
da.Fill(ds);
the abvoe code is working and fetch the data in a datagrid but it displays a
plus sign on the upper left
and use have to click this plus sign to see the data loaded in the datagrid.
Is there a way to prevent this ? I mean, when the code runs, i want the
datagrid to be filled with data.
It is something reletive to the datagrid.DataMember but i could not find
what exatly is...
Any help ?
objectref