AD
Administrator
Syncfusion Team
October 3, 2002 09:28 AM UTC
Binary saves results in smaller files, and probably is quicker, but you may not notice it depending upon the grids involved.
In version 1.0.2.4 which I suspect is whatyou have, GridControl.LoadSoap is broken. But shared (static) GridModel.LoadSoap does work in that release. So, you can use code like:
'save it
grdReport.Model.SaveSoap("c:\testXML.txt")
'load it
grdReport.Model = GridModel.LoadSoap("c:\testXML.txt")
RE
Raphael Eschmann
October 3, 2002 10:13 AM UTC
Yes that work fine.
Thanks