IBX.IBInstall.TIBSetupOnError

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TIBSetupOnError = function (Sender : TObject; IscCode : TIscError;
ErrorMessage, ErrorComment : string):

C++

typedef TErrorResult __fastcall (__closure *TIBSetupOnError)(System::TObject* Sender, int IscCode, System::UnicodeString ErrorMessage, System::UnicodeString ErrorComment);

Properties

Type Visibility Source Unit Parent
type
typedef
public
IBX.IBInstall.pas
IBX.IBInstall.hpp
IBX.IBInstall IBX.IBInstall

Description

TIBSetupOnError is the type of event handlers that respond to installation errors.

Sender is the TIBSetup component that encounters the exception.

IscCode is the error code for the problem that was encounted.

ErrorMessage is the error message fro the problem that occurred.

ErrorComment returns a string that will be displayed to the user.

The event handler is expected to return isc_fp_install_continue, isc_install_abort or isc_fp_install_retry.