//AB/ CLASSDEF Class cWizard Is A dbModalPanel // Inherit all IDE settings for dbModalPanel Inherit // Size of the wizard can not be changed by the user // not by the size property Property No_Generate No_Visible Complex Size 272 362 // and not by changing size by mouse Set Size_Allowed To False // When the object is created add the following package name as USE in the top of the source code Set ClassPackage To "cWizard.Pkg" // Give the object a default name based on the classname and a counter Set ObjectNameMask To "oWizard" // You can only drop wizard pages on this panel Set Drop_Allowed To 16 // Tell the IDE where to find help Set ClassHelpName To "cWizard" // Hide all properties which are not wanted or do have a particular default value Property No_Visible String Bitmap "cWizard.Bmp" Property No_Visible Mode Bitmap_Style Bitmap_Actual Bitmap_Actual Bitmap_Stretch Bitmap_Tile Bitmap_Center Property No_Visible Mode Border_Style Border_Dialog Border_None Border_Normal Border_Dialog Border_Thick Border_ClientEdge Border_WindowEdge Border_StaticEdge Property No_Visible Boolean Caption_Bar True Property No_Visible Color Color clLtGray Property No_Visible Color TextColor clWindowText Property No_Visible String Icon "" Property No_Visible String Label "Wizard label, set this label via psLabel in the wizard" Property No_Visible String Icon "" Property No_Visible Boolean Minimize_Icon False Property No_Visible Boolean Maximize_Icon False Property No_Visible Boolean Sysmenu_Icon True // Add properties of this wizard class Property No_Execute String psHeaderGraphic "" Property No_Execute String psLabel "" End_Class