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

  1. object ToDoForm: TToDoForm
  2.   Left = 376
  3.   Top = 255
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsSingle
  6.   Caption = 'To-Do List'
  7.   ClientHeight = 212
  8.   ClientWidth = 448
  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 = poMainFormCenter
  17.   OnCreate = FormCreate
  18.   OnDestroy = FormDestroy
  19.   OnShow = FormShow
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object wToDo: TListView
  23.     Left = 9
  24.     Top = 9
  25.     Width = 431
  26.     Height = 166
  27.     BiDiMode = bdLeftToRight
  28.     Checkboxes = True
  29.     Columns = <
  30.       item
  31.         Caption = 'Text'
  32.         MinWidth = 50
  33.         Width = 185
  34.       end
  35.       item
  36.         Alignment = taCenter
  37.         Caption = '!'
  38.         MinWidth = 20
  39.         Width = 20
  40.       end
  41.       item
  42.         Caption = 'Owner'
  43.         MinWidth = 50
  44.         Width = 100
  45.       end
  46.       item
  47.         Caption = 'Category'
  48.         MinWidth = 50
  49.         Width = 100
  50.       end
  51.       item
  52.         MaxWidth = 1
  53.         Width = 0
  54.       end
  55.       item
  56.         MaxWidth = 1
  57.         Width = 0
  58.       end
  59.       item
  60.         MaxWidth = 1
  61.         Width = 0
  62.       end>
  63.     ColumnClick = False
  64.     Constraints.MinWidth = 50
  65.     HideSelection = False
  66.     ReadOnly = True
  67.     RowSelect = True
  68.     ParentBiDiMode = False
  69.     ParentShowHint = False
  70.     ShowHint = True
  71.     TabOrder = 0
  72.     ViewStyle = vsReport
  73.     OnDblClick = bGoClick
  74.     OnInfoTip = wToDoInfoTip
  75.     OnKeyPress = wToDoKeyPress
  76.     OnMouseDown = wToDoMouseDown
  77.   end
  78.   object bEdit: TButton
  79.     Left = 93
  80.     Top = 181
  81.     Width = 83
  82.     Height = 24
  83.     Caption = 'Edit'
  84.     TabOrder = 1
  85.     OnClick = bEditClick
  86.   end
  87.   object bDelete: TButton
  88.     Left = 181
  89.     Top = 181
  90.     Width = 83
  91.     Height = 24
  92.     Caption = 'Delete'
  93.     TabOrder = 2
  94.     OnClick = bDeleteClick
  95.   end
  96.   object bClose: TButton
  97.     Left = 357
  98.     Top = 181
  99.     Width = 83
  100.     Height = 24
  101.     Cancel = True
  102.     Caption = 'Close'
  103.     Default = True
  104.     ModalResult = 2
  105.     TabOrder = 4
  106.   end
  107.   object bGo: TButton
  108.     Left = 269
  109.     Top = 181
  110.     Width = 83
  111.     Height = 24
  112.     Caption = 'Go'
  113.     TabOrder = 3
  114.     OnClick = bGoClick
  115.   end
  116. end
  117.