home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / ArsClip / source.zip / UnitFrmPreview.dfm < prev    next >
Text File  |  2004-01-13  |  2KB  |  74 lines

  1. object FrmPreview: TFrmPreview
  2.   Left = 240
  3.   Top = 187
  4.   HorzScrollBar.Visible = False
  5.   VertScrollBar.Visible = False
  6.   AutoScroll = False
  7.   BorderIcons = [biMaximize]
  8.   Caption = 'ArsClip - Preview'
  9.   ClientHeight = 379
  10.   ClientWidth = 465
  11.   Color = clBtnFace
  12.   Font.Charset = DEFAULT_CHARSET
  13.   Font.Color = clWindowText
  14.   Font.Height = -11
  15.   Font.Name = 'MS Sans Serif'
  16.   Font.Style = []
  17.   OldCreateOrder = False
  18.   OnClick = FormClick
  19.   OnKeyPress = FormKeyPress
  20.   OnMouseDown = FormMouseDown
  21.   OnResize = FormResize
  22.   OnShow = FormShow
  23.   DesignSize = (
  24.     465
  25.     379)
  26.   PixelsPerInch = 96
  27.   TextHeight = 13
  28.   object Label1: TLabel
  29.     Left = 150
  30.     Top = 360
  31.     Width = 161
  32.     Height = 13
  33.     Anchors = [akLeft, akBottom]
  34.     Caption = 'Click on form or press key to close'
  35.     OnClick = Label1Click
  36.   end
  37.   object imgPreview: TImage
  38.     Left = 8
  39.     Top = 8
  40.     Width = 441
  41.     Height = 345
  42.     Anchors = [akLeft, akTop, akRight, akBottom]
  43.     Proportional = True
  44.     Stretch = True
  45.     OnClick = imgPreviewClick
  46.   end
  47.   object txtPreview: TMemo
  48.     Left = 8
  49.     Top = 8
  50.     Width = 449
  51.     Height = 337
  52.     Anchors = [akLeft, akTop, akRight, akBottom]
  53.     Lines.Strings = (
  54.       'txtPreview')
  55.     ReadOnly = True
  56.     ScrollBars = ssBoth
  57.     TabOrder = 0
  58.     OnClick = txtPreviewClick
  59.     OnKeyPress = txtPreviewKeyPress
  60.   end
  61.   object rePreview: TRichEdit
  62.     Left = 8
  63.     Top = 8
  64.     Width = 449
  65.     Height = 337
  66.     Anchors = [akLeft, akTop, akRight, akBottom]
  67.     Lines.Strings = (
  68.       'rePreview')
  69.     ScrollBars = ssBoth
  70.     TabOrder = 1
  71.     Visible = False
  72.   end
  73. end
  74.