Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
105
Saving Gauge XML to database
posted

Trying to save gauge data to a sql database using a memory stream.  My code is producing the following error.

'igGauge' is an undeclared namespace. Line 3, position 2.

Do you have any idea what is causing this?

 

// Save the gauge to the memory stream.

MemoryStream ms = new MemoryStream();

ms.seek(0, SeekOrigin.Begin)ms.SetLength(0);

this.ultraGauge1.SavePreset(ms, sReportName, sDescription, Infragistics.Win.UltraWinGauge.PresetType.All);