Loading Windows Grid Control Data into Grid Web Control

I have saved the binary Data of Windows Grid Cotrol. That is,

Syncfusion.Windows.Forms.Grid.GridControl grd;
byte[] objArraybyte;

grd.Model.SaveBinary(objMemoryStream);
objArraybyte = objMemoryStream.GetBuffer();

I have saved this objArraybyte.

Now i wnat to load Grid Web Control with this
saved Windows Grid Control Information.

How Can I Do Thtat?

1 Reply

HA haneefm Syncfusion Team April 16, 2007 07:15 PM UTC

Hi Naveed,

You can try this code.

this.GridWebControl1.GridModel = Syncfusion.Windows.Forms.Grid.GridModel.LoadBinary(objMemoryStream);

Best regards,
Haneef

Loader.
Up arrow icon