View Single Post
  #10 (permalink)  
Old 05-18-2006, 02:17 AM
cockeyedcowboy's Avatar
cockeyedcowboy cockeyedcowboy is offline
Senior Member
 
Join Date: Nov 2005
Posts: 267
cockeyedcowboy is on a distinguished road
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:
Reply With Quote