Difference between revisions of "CALicense::OutputBuffer"

(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...")
 
m (4.7 -> 5.0)
 
Line 3: Line 3:
 
<languages />
 
<languages />
 
<translate>
 
<translate>
''new to [[Analytica 4.7]]''
+
''new to [[Analytica 5.0]]''
  
 
= property string [[CALicense]]::OutputBuffer = <!--T:1-->
 
= property string [[CALicense]]::OutputBuffer = <!--T:1-->

Latest revision as of 01:30, 28 April 2016

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.