CALicense::OutputBuffer

This page contains changes which are not marked for translation.

ADE User Guide > ADE Server Class Reference > CALicense

new to Analytica 5.0

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.