//AB/ CLASSDEF Class cWizardPage Is A dbContainer3d // Inherit all IDE settings for dbContainer3d Inherit // Use the property Visible_State to make the component IDE aware Property No_Generate Boolean Visible_State False // Size and/or location of the wizard can not be changed by the user // not by the size / location properties Property No_Visible No_Generate Complex Location 0 0 Property No_Visible No_Generate Complex Size 228 362 // and not by changing size / location by mouse Set MoveSize_Allowed To False // Tell the IDE that this control is a wizard page. 16 does not exist yet. Set Type_Of_Drag To 16 // Allow all controls except wizard pages Set Drop_Allowed To 15 // Give the following properties the default value as defined in the class Property No_Execute Integer piPreviousPage 0 Property No_Execute Integer piNextPage 0 Property No_Execute No_Visible Boolean pbWelcomePage False Property No_Execute No_Visible Boolean pbCompletionPage False // Hide all properties which are not wanted or do have a particular default value Property No_Visible String Bitmap "" Property No_Visible Mode Bitmap_Style Bitmap_Actual Bitmap_Actual Bitmap_Stretch Bitmap_Tile Bitmap_Center Property No_Visible Mode Border_Style Border_None Border_None Border_Normal Border_Dialog Border_Thick Border_ClientEdge Border_WindowEdge Border_StaticEdge Property No_Visible Color Color clLtGray Property No_Visible Color TextColor clWindowText // 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 "oWizardPage" // Tell the IDE where to find help Set ClassHelpName To "cWizard" End_Class