home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Bin / exptdemo.dll / RCDATA / TAPPEXPERT / TAPPEXPERT.txt
Text File  |  1999-08-11  |  10KB  |  425 lines

  1. object AppExpert: TAppExpert
  2.   Left = 218
  3.   Top = 131
  4.   BorderStyle = bsDialog
  5.   Caption = 'Application Wizard'
  6.   ClientHeight = 286
  7.   ClientWidth = 527
  8.   ParentFont = True
  9.   Position = poScreenCenter
  10.   OnCreate = FormCreate
  11.   OnDestroy = FormDestroy
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object Sample: TPaintBox
  15.     Left = 4
  16.     Top = 5
  17.     Width = 107
  18.     Height = 72
  19.     OnPaint = SamplePaint
  20.   end
  21.   object CancelBtn: TButton
  22.     Left = 444
  23.     Top = 256
  24.     Width = 77
  25.     Height = 25
  26.     Cancel = True
  27.     Caption = 'Cancel'
  28.     ModalResult = 2
  29.     TabOrder = 3
  30.   end
  31.   object PrevButton: TButton
  32.     Left = 275
  33.     Top = 256
  34.     Width = 77
  35.     Height = 25
  36.     Caption = '< &Back'
  37.     Enabled = False
  38.     TabOrder = 1
  39.     OnClick = NextPrevClick
  40.   end
  41.   object NextButton: TButton
  42.     Left = 352
  43.     Top = 256
  44.     Width = 77
  45.     Height = 25
  46.     Caption = '&Next >'
  47.     TabOrder = 2
  48.     OnClick = NextPrevClick
  49.   end
  50.   object PageControl: TPageControl
  51.     Left = 112
  52.     Top = 4
  53.     Width = 409
  54.     Height = 245
  55.     ActivePage = Menus
  56.     TabOrder = 0
  57.     TabStop = False
  58.     object Menus: TTabSheet
  59.       Caption = 'Menus'
  60.       TabVisible = False
  61.       object Label1: TLabel
  62.         Left = 8
  63.         Top = 7
  64.         Width = 385
  65.         Height = 45
  66.         AutoSize = False
  67.         Caption = 
  68.           'Your application can contain a menu bar by checking one or more ' +
  69.           'of the following standard Windows menus:'
  70.         WordWrap = True
  71.       end
  72.       object Label2: TLabel
  73.         Left = 32
  74.         Top = 59
  75.         Width = 336
  76.         Height = 13
  77.         AutoSize = False
  78.         Caption = 'The file menu contains items such as Open, Save and Exit.'
  79.       end
  80.       object Label3: TLabel
  81.         Left = 32
  82.         Top = 103
  83.         Width = 326
  84.         Height = 13
  85.         AutoSize = False
  86.         Caption = 'The Edit menu contains Undo, Cut, Copy and Paste items'
  87.       end
  88.       object Label4: TLabel
  89.         Left = 32
  90.         Top = 147
  91.         Width = 335
  92.         Height = 29
  93.         AutoSize = False
  94.         Caption = 
  95.           'The Window menu contains window management functions specficiall' +
  96.           'y designed for MDI applications.'
  97.         WordWrap = True
  98.       end
  99.       object Label5: TLabel
  100.         Left = 32
  101.         Top = 202
  102.         Width = 354
  103.         Height = 33
  104.         AutoSize = False
  105.         Caption = 
  106.           'The Help menu provides access to your application'#39's help file, a' +
  107.           's well as an item to show the About box.'
  108.         WordWrap = True
  109.       end
  110.       object cbFileMenu: TCheckBox
  111.         Left = 12
  112.         Top = 39
  113.         Width = 133
  114.         Height = 17
  115.         Caption = '&File menu'
  116.         TabOrder = 0
  117.         OnClick = MenuClicked
  118.       end
  119.       object cbEditMenu: TCheckBox
  120.         Left = 12
  121.         Top = 83
  122.         Width = 133
  123.         Height = 17
  124.         Caption = '&Edit menu'
  125.         TabOrder = 1
  126.         OnClick = MenuClicked
  127.       end
  128.       object cbWindowMenu: TCheckBox
  129.         Left = 12
  130.         Top = 127
  131.         Width = 129
  132.         Height = 17
  133.         Caption = '&Window menu'
  134.         TabOrder = 2
  135.         OnClick = MenuClicked
  136.       end
  137.       object cbHelpMenu: TCheckBox
  138.         Left = 12
  139.         Top = 185
  140.         Width = 97
  141.         Height = 17
  142.         Caption = '&Help menu'
  143.         TabOrder = 3
  144.         OnClick = MenuClicked
  145.       end
  146.     end
  147.     object Extensions: TTabSheet
  148.       Caption = 'Extensions'
  149.       TabVisible = False
  150.       object Label6: TLabel
  151.         Left = 8
  152.         Top = 5
  153.         Width = 385
  154.         Height = 45
  155.         AutoSize = False
  156.         Caption = 
  157.           'The table below allows you to define the file extensions to be u' +
  158.           'sed by the File Open and File Save dialog boxes.  Press Add to c' +
  159.           'reate a new entry in the table.'
  160.         FocusControl = ExtListBox
  161.         WordWrap = True
  162.       end
  163.       object Panel1: TPanel
  164.         Left = 8
  165.         Top = 52
  166.         Width = 313
  167.         Height = 180
  168.         BevelOuter = bvLowered
  169.         Caption = 'Panel1'
  170.         TabOrder = 0
  171.         object ExtHeader: THeader
  172.           Left = 1
  173.           Top = 1
  174.           Width = 311
  175.           Height = 21
  176.           BorderStyle = bsNone
  177.           Sections.Sections = (
  178.             #0'150'#0'Description'
  179.             #0'64'#0'Extension')
  180.           TabOrder = 0
  181.           OnSized = HeaderSized
  182.         end
  183.         object ExtListBox: TListBox
  184.           Left = 2
  185.           Top = 22
  186.           Width = 309
  187.           Height = 156
  188.           BorderStyle = bsNone
  189.           Ctl3D = False
  190.           ItemHeight = 16
  191.           ParentCtl3D = False
  192.           Style = lbOwnerDrawFixed
  193.           TabOrder = 1
  194.           OnDrawItem = DrawExtension
  195.         end
  196.       end
  197.       object AddButton: TButton
  198.         Left = 332
  199.         Top = 65
  200.         Width = 65
  201.         Height = 25
  202.         Caption = '&Add'
  203.         TabOrder = 1
  204.         OnClick = AddClick
  205.       end
  206.       object EditButton: TButton
  207.         Left = 332
  208.         Top = 97
  209.         Width = 65
  210.         Height = 25
  211.         Caption = '&Edit'
  212.         TabOrder = 2
  213.         OnClick = EditClick
  214.       end
  215.       object DeleteButton: TButton
  216.         Left = 332
  217.         Top = 129
  218.         Width = 65
  219.         Height = 25
  220.         Caption = '&Delete'
  221.         TabOrder = 3
  222.         OnClick = DeleteClick
  223.       end
  224.       object UpButton: TButton
  225.         Left = 332
  226.         Top = 177
  227.         Width = 65
  228.         Height = 25
  229.         Caption = '&Up'
  230.         TabOrder = 4
  231.         OnClick = MoveClick
  232.       end
  233.       object DownButton: TButton
  234.         Left = 332
  235.         Top = 207
  236.         Width = 65
  237.         Height = 25
  238.         Caption = 'D&own'
  239.         TabOrder = 5
  240.         OnClick = MoveClick
  241.       end
  242.     end
  243.     object Speedbtns: TTabSheet
  244.       Caption = 'Speedbtns'
  245.       TabVisible = False
  246.       object Label7: TLabel
  247.         Left = 6
  248.         Top = 6
  249.         Width = 385
  250.         Height = 45
  251.         AutoSize = False
  252.         Caption = 
  253.           'You can create a speedbar for your application by selecting spee' +
  254.           'd buttons from the Available commands list, and pressing Insert ' +
  255.           'to add them to the speedbar.  Press Space to add spacers.'
  256.         WordWrap = True
  257.       end
  258.       object Speedbar: TPaintBox
  259.         Left = 9
  260.         Top = 51
  261.         Width = 387
  262.         Height = 43
  263.         OnMouseDown = SpeedMouseDown
  264.         OnPaint = SpeedbarPaint
  265.       end
  266.       object Label8: TLabel
  267.         Left = 10
  268.         Top = 102
  269.         Width = 42
  270.         Height = 13
  271.         AutoSize = False
  272.         Caption = '&Menus:'
  273.         FocusControl = MenuList
  274.       end
  275.       object Label9: TLabel
  276.         Left = 138
  277.         Top = 102
  278.         Width = 120
  279.         Height = 13
  280.         AutoSize = False
  281.         Caption = 'Available &commands:'
  282.         FocusControl = MenuItemList
  283.       end
  284.       object MenuList: TListBox
  285.         Left = 10
  286.         Top = 118
  287.         Width = 121
  288.         Height = 113
  289.         ItemHeight = 13
  290.         Items.Strings = (
  291.           'File'
  292.           'Edit'
  293.           'Window'
  294.           'Help')
  295.         TabOrder = 0
  296.         OnClick = MenuListClick
  297.       end
  298.       object MenuItemList: TListBox
  299.         Left = 138
  300.         Top = 118
  301.         Width = 185
  302.         Height = 113
  303.         ItemHeight = 26
  304.         Style = lbOwnerDrawFixed
  305.         TabOrder = 1
  306.         OnDrawItem = DrawMenuItem
  307.       end
  308.       object Button1: TButton
  309.         Left = 330
  310.         Top = 118
  311.         Width = 65
  312.         Height = 25
  313.         Caption = '&Insert'
  314.         TabOrder = 2
  315.         OnClick = InsertClick
  316.       end
  317.       object Button2: TButton
  318.         Left = 330
  319.         Top = 146
  320.         Width = 65
  321.         Height = 25
  322.         Caption = '&Remove'
  323.         TabOrder = 3
  324.         OnClick = RemoveClick
  325.       end
  326.       object Button3: TButton
  327.         Left = 330
  328.         Top = 174
  329.         Width = 65
  330.         Height = 25
  331.         Caption = '&Space'
  332.         TabOrder = 4
  333.         OnClick = SpaceClick
  334.       end
  335.     end
  336.     object AppInfo: TTabSheet
  337.       Caption = 'AppInfo'
  338.       TabVisible = False
  339.       object Label13: TLabel
  340.         Left = 19
  341.         Top = 80
  342.         Width = 274
  343.         Height = 13
  344.         AutoSize = False
  345.         Caption = 'Enter the &path in which to store this application:'
  346.         FocusControl = AppPath
  347.       end
  348.       object Label10: TLabel
  349.         Left = 19
  350.         Top = 28
  351.         Width = 251
  352.         Height = 13
  353.         AutoSize = False
  354.         Caption = 'Enter the &name to assign to this application:'
  355.         FocusControl = AppName
  356.       end
  357.       object Label15: TLabel
  358.         Left = 7
  359.         Top = 8
  360.         Width = 345
  361.         Height = 13
  362.         AutoSize = False
  363.         Caption = 'The Application Wizard is ready to generate your application!'
  364.       end
  365.       object GroupBox1: TGroupBox
  366.         Left = 19
  367.         Top = 124
  368.         Width = 365
  369.         Height = 93
  370.         Caption = 'Options'
  371.         TabOrder = 3
  372.         object cbMDIApp: TCheckBox
  373.           Left = 12
  374.           Top = 20
  375.           Width = 257
  376.           Height = 17
  377.           Caption = 'Create &MDI application'
  378.           TabOrder = 0
  379.         end
  380.         object cbStatusLine: TCheckBox
  381.           Left = 12
  382.           Top = 44
  383.           Width = 237
  384.           Height = 17
  385.           Caption = 'Create a &status line'
  386.           TabOrder = 1
  387.         end
  388.         object cbHints: TCheckBox
  389.           Left = 12
  390.           Top = 68
  391.           Width = 253
  392.           Height = 17
  393.           Caption = 'Enable &hints'
  394.           TabOrder = 2
  395.         end
  396.       end
  397.       object AppPath: TEdit
  398.         Left = 19
  399.         Top = 96
  400.         Width = 273
  401.         Height = 21
  402.         TabOrder = 1
  403.         Text = 'AppPath'
  404.       end
  405.       object PathBrowse: TButton
  406.         Left = 303
  407.         Top = 94
  408.         Width = 81
  409.         Height = 25
  410.         Caption = 'B&rowse...'
  411.         TabOrder = 2
  412.         OnClick = BrowseClick
  413.       end
  414.       object AppName: TEdit
  415.         Left = 19
  416.         Top = 44
  417.         Width = 249
  418.         Height = 21
  419.         TabOrder = 0
  420.         Text = 'AppName'
  421.       end
  422.     end
  423.   end
  424. end
  425.