Code:
// ««« SYSTEM INITIALIZATION SECTION: »»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»
if( DataValidated ) {
if( SystemRegistration( SystemSymbol, Symbol(), Append ) == Done ) {
if( UserVerification( Comfirmed )) {
RightsToTrading = Granted;
SystemMode = StandBy;
SystemTag = GetTagNumber();
CurrencyID = GetCurrencyID( Symbol() );
RunSerialNumber = ( SystemTag + Space + SystemSymbol + Space +
CurrencyID + Space + SystemStartTime );
Authentication = ( LicenseInfo + RunSerialNumber );
Print( "System Initialization Completed: ", AccountCompany(), " Has ",
AccountName()," As The Authorized User Of This Account, ",
"Under The System Software License [ ", LicenseNumber, " ]." );
} else {
Print( "System Initialization FAILURE: You are not recognized as the ",
"Licensed User of this software." );
} // End If, UserVerification:
Print( "System Registration Process Completed Successfully." );
} else {
Print( "System Registration FAILURE: System could not complete the ",
"registrattion process: Fatal Error System Halted." );
} // End If, SystemRegistration:
} else {
Print( "Data Validation FAILURE: System Mode is Off Line, The system can ",
"not be activated till the above condition is corrected." );
} // End If, DataValidated: