home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / AppEvents / main.dfm / main.txt
Text File  |  1999-08-11  |  3KB  |  122 lines

  1. object MainForm: TMainForm
  2.   Left = 191
  3.   Top = 106
  4.   Width = 696
  5.   Height = 358
  6.   Caption = 'MainForm'
  7.   Color = clBtnFace
  8.   ParentFont = True
  9.   Menu = MainMenu
  10.   OldCreateOrder = False
  11.   PixelsPerInch = 120
  12.   TextHeight = 16
  13.   object lblOnMessage: TLabel
  14.     Left = 9
  15.     Top = 0
  16.     Width = 77
  17.     Height = 16
  18.     Caption = 'OnMessage:'
  19.   end
  20.   object lblOther: TLabel
  21.     Left = 345
  22.     Top = 48
  23.     Width = 149
  24.     Height = 16
  25.     Caption = 'Other Application Events:'
  26.   end
  27.   object lblOnIdle: TLabel
  28.     Left = 121
  29.     Top = 0
  30.     Width = 42
  31.     Height = 16
  32.     Caption = 'OnIdle:'
  33.   end
  34.   object lblOnActionUpdate: TLabel
  35.     Left = 233
  36.     Top = 0
  37.     Width = 102
  38.     Height = 16
  39.     Caption = 'OnActionUpdate:'
  40.   end
  41.   object HintButton: TButton
  42.     Left = 345
  43.     Top = 16
  44.     Width = 336
  45.     Height = 25
  46.     Hint = 'This is a hint'
  47.     Caption = 'Hint button test (move mouse here)'
  48.     ParentShowHint = False
  49.     ShowHint = True
  50.     TabOrder = 0
  51.   end
  52.   object lbOnMessage: TListBox
  53.     Left = 9
  54.     Top = 16
  55.     Width = 104
  56.     Height = 289
  57.     ItemHeight = 16
  58.     TabOrder = 1
  59.   end
  60.   object lbOther: TListBox
  61.     Left = 345
  62.     Top = 64
  63.     Width = 336
  64.     Height = 241
  65.     ItemHeight = 16
  66.     TabOrder = 2
  67.   end
  68.   object lbIdle: TListBox
  69.     Left = 121
  70.     Top = 16
  71.     Width = 104
  72.     Height = 289
  73.     ItemHeight = 16
  74.     TabOrder = 3
  75.   end
  76.   object lbActionUpdate: TListBox
  77.     Left = 231
  78.     Top = 16
  79.     Width = 105
  80.     Height = 289
  81.     ItemHeight = 16
  82.     TabOrder = 4
  83.   end
  84.   object ApplicationEvents: TApplicationEvents
  85.     OnActionExecute = ApplicationEventsActionExecute
  86.     OnActionUpdate = ApplicationEventsActionUpdate
  87.     OnActivate = ApplicationEventsActivate
  88.     OnDeactivate = ApplicationEventsDeactivate
  89.     OnException = ApplicationEventsException
  90.     OnIdle = ApplicationEventsIdle
  91.     OnHelp = ApplicationEventsHelp
  92.     OnHint = ApplicationEventsHint
  93.     OnMessage = ApplicationEventsMessage
  94.     OnMinimize = ApplicationEventsMinimize
  95.     OnRestore = ApplicationEventsRestore
  96.     OnShowHint = ApplicationEventsShowHint
  97.     OnShortCut = ApplicationEventsShortCut
  98.     Left = 648
  99.     Top = 8
  100.   end
  101.   object ActionList: TActionList
  102.     Left = 616
  103.     Top = 8
  104.     object Action: TAction
  105.       Caption = 'Action1'
  106.       OnExecute = ActionExecute
  107.     end
  108.   end
  109.   object MainMenu: TMainMenu
  110.     Left = 632
  111.     Top = 40
  112.     object MenuAction: TMenuItem
  113.       Action = Action
  114.       Caption = '&Action'
  115.     end
  116.     object MenuException: TMenuItem
  117.       Caption = '&Raise Exception'
  118.       OnClick = MenuExceptionClick
  119.     end
  120.   end
  121. end
  122.