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

GB Gokul B Syncfusion Team April 16, 2007 09:35 PM UTC

Hi Naveed,

Could you please try this code.

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

Let us know if it helps.

Thanks for using Syncfusion products.

Regards,
Gokulkumar B

Loader.
Up arrow icon