home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / PICEDIT.DFM / PICEDIT.txt
Text File  |  1997-02-28  |  2KB  |  107 lines

  1. object PictureEditorDlg: TPictureEditorDlg
  2.   Left = 263
  3.   Top = 144
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Picture Editor'
  7.   ClientHeight = 223
  8.   ClientWidth = 281
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   OnPaint = FormPaint
  16.   TextHeight = 13
  17.   object Bevel1: TBevel
  18.     Left = 8
  19.     Top = 8
  20.     Width = 265
  21.     Height = 177
  22.     Shape = bsFrame
  23.   end
  24.   object Shape1: TShape
  25.     Left = 12
  26.     Top = 12
  27.     Width = 169
  28.     Height = 169
  29.     Brush.Style = bsClear
  30.   end
  31.   object Shape2: TShape
  32.     Left = 13
  33.     Top = 13
  34.     Width = 167
  35.     Height = 167
  36.     Brush.Style = bsClear
  37.     Pen.Color = clWhite
  38.   end
  39.   object Load: TButton
  40.     Left = 192
  41.     Top = 16
  42.     Width = 75
  43.     Height = 25
  44.     Caption = '&Load...'
  45.     TabOrder = 0
  46.     OnClick = LoadClick
  47.   end
  48.   object Save: TButton
  49.     Left = 192
  50.     Top = 48
  51.     Width = 75
  52.     Height = 25
  53.     Caption = '&Save...'
  54.     TabOrder = 1
  55.     OnClick = SaveClick
  56.   end
  57.   object Clear: TButton
  58.     Left = 192
  59.     Top = 80
  60.     Width = 75
  61.     Height = 25
  62.     Caption = '&Clear'
  63.     TabOrder = 2
  64.     OnClick = ClearClick
  65.   end
  66.   object OKButton: TButton
  67.     Left = 23
  68.     Top = 192
  69.     Width = 75
  70.     Height = 25
  71.     Caption = 'OK'
  72.     Default = True
  73.     ModalResult = 1
  74.     TabOrder = 3
  75.   end
  76.   object CancelButton: TButton
  77.     Left = 103
  78.     Top = 192
  79.     Width = 75
  80.     Height = 25
  81.     Cancel = True
  82.     Caption = 'Cancel'
  83.     ModalResult = 2
  84.     TabOrder = 4
  85.   end
  86.   object HelpButton: TButton
  87.     Left = 183
  88.     Top = 192
  89.     Width = 75
  90.     Height = 25
  91.     Caption = '&Help'
  92.     TabOrder = 5
  93.     OnClick = HelpButtonClick
  94.   end
  95.   object FileDialog: TOpenDialog
  96.     Title = 'Load picture'
  97.     Left = 140
  98.     Top = 20
  99.   end
  100.   object SaveDialog: TSaveDialog
  101.     Options = [ofOverwritePrompt]
  102.     Title = 'Save picture as'
  103.     Left = 140
  104.     Top = 52
  105.   end
  106. end
  107.