CALicense::OutputBuffer

Revision as of 19:35, 21 January 2016 by Lchrisman (talk | contribs) (Created page with "Category:ADE User Guide ADE User Guide > ADE Server Class Reference > CALicense <languages /> <translate> ''new to Analytica 4.7'' = property string CAL...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

ADE User Guide > ADE Server Class Reference > CALicense

new to Analytica 4.7

property string CALicense::OutputBuffer

May contain detailed error messages that occur while attempting to instantiate a CAEngine using the CALicense::NewCAEngine() method. the OutputBuffer is set when CALicense::ErrorCode is set to 94, which occurs under certain types of situations, usually related to something with ADE not being installed correctly.

Data Type

string

Access

read

Example usage

C#

CALicense lic = new ADE.CALicense();
CAEngine ade = lic.NewCAEngine();
if ( lic.ErrorCode == 94) {
   MessageBox.Show( "Error " + lic.ErrorCode + ": " + lic.ErrorText, "ADE could not be started:\r\r" + lic.OutputBuffer, MessageBoxButtons.OK );
   return;
}...
...

See Also

Comments


You are not allowed to post comments.