home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / VCL / AppEvents / MAIN.NFM < prev    next >
Encoding:
Text File  |  2004-10-22  |  2.6 KB  |  121 lines

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