home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / Chip_2004-10_cd1.bin / software / code / setup.exe / CodePad.exe / 0 / RCDATA / TTODOITEMFORM / TTODOITEMFORM.txt
Encoding:
Text File  |  2003-02-24  |  2.0 KB  |  117 lines

  1. object ToDoItemForm: TToDoItemForm
  2.   Left = 345
  3.   Top = 336
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsSingle
  6.   Caption = 'To-Do Item'
  7.   ClientHeight = 197
  8.   ClientWidth = 356
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poOwnerFormCenter
  17.   OnCreate = FormCreate
  18.   OnShow = FormShow
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object lCategory: TLabel
  22.     Left = 203
  23.     Top = 119
  24.     Width = 42
  25.     Height = 13
  26.     Caption = 'Category'
  27.     Transparent = True
  28.   end
  29.   object lOwner: TLabel
  30.     Left = 53
  31.     Top = 119
  32.     Width = 31
  33.     Height = 13
  34.     Caption = 'Owner'
  35.     Transparent = True
  36.   end
  37.   object lPriority: TLabel
  38.     Left = 9
  39.     Top = 119
  40.     Width = 31
  41.     Height = 13
  42.     Caption = 'Priority'
  43.     Transparent = True
  44.   end
  45.   object lText: TLabel
  46.     Left = 9
  47.     Top = 7
  48.     Width = 21
  49.     Height = 13
  50.     Caption = 'Text'
  51.     Transparent = True
  52.   end
  53.   object bOK: TButton
  54.     Left = 177
  55.     Top = 166
  56.     Width = 83
  57.     Height = 24
  58.     Caption = 'OK'
  59.     Default = True
  60.     ModalResult = 1
  61.     TabOrder = 4
  62.   end
  63.   object bCancel: TButton
  64.     Left = 265
  65.     Top = 166
  66.     Width = 83
  67.     Height = 24
  68.     Cancel = True
  69.     Caption = 'Cancel'
  70.     ModalResult = 2
  71.     TabOrder = 5
  72.   end
  73.   object eText: TMemo
  74.     Left = 9
  75.     Top = 24
  76.     Width = 338
  77.     Height = 89
  78.     ScrollBars = ssBoth
  79.     TabOrder = 0
  80.     WordWrap = False
  81.     OnChange = eTextChange
  82.     OnKeyPress = eTextKeyPress
  83.   end
  84.   object ePriority: TComboBox
  85.     Left = 9
  86.     Top = 135
  87.     Width = 39
  88.     Height = 21
  89.     Style = csDropDownList
  90.     ItemHeight = 13
  91.     TabOrder = 1
  92.     Items.Strings = (
  93.       ''
  94.       '1'
  95.       '2'
  96.       '3'
  97.       '4'
  98.       '5')
  99.   end
  100.   object eOwner: TComboBox
  101.     Left = 53
  102.     Top = 135
  103.     Width = 145
  104.     Height = 21
  105.     ItemHeight = 13
  106.     TabOrder = 2
  107.   end
  108.   object eCategory: TComboBox
  109.     Left = 203
  110.     Top = 135
  111.     Width = 145
  112.     Height = 21
  113.     ItemHeight = 13
  114.     TabOrder = 3
  115.   end
  116. end
  117.