AD
Administrator
Syncfusion Team
May 19, 2004 10:28 AM UTC
After changing the datasource, try calling
Me.Grid.Refresh();
to see if that make things work.
Also, how are you changing the datasource? You might try setting it to null before setting it to a new datasource.
this.gridDataBoundGrid1.DataMember = "";
this.gridDataBoundGrid1.DataSource = null;
this.gridDataBoundGrid1.DataMember = newDataMember;
this.gridDataBoundGrid1.DataSource = newDataSource;
IB
Inder Babbra
May 19, 2004 10:35 AM UTC
Yes the refresh worked thx.
>After changing the datasource, try calling
>
>Me.Grid.Refresh();
>
>to see if that make things work.
>
>Also, how are you changing the datasource? You might try setting it to null before setting it to a new datasource.
>
>
>this.gridDataBoundGrid1.DataMember = "";
>this.gridDataBoundGrid1.DataSource = null;
>this.gridDataBoundGrid1.DataMember = newDataMember;
>this.gridDataBoundGrid1.DataSource = newDataSource;
>