home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Utilitare / xvi / XVI32.exe / 0 / RCDATA / TFORMPRINT / TFORMPRINT.txt
Text File  |  2003-08-02  |  6KB  |  309 lines

  1. object FormPrint: TFormPrint
  2.   Left = 295
  3.   Top = 152
  4.   BorderIcons = [biSystemMenu, biHelp]
  5.   BorderStyle = bsDialog
  6.   Caption = 'FormPrint'
  7.   ClientHeight = 343
  8.   ClientWidth = 367
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 10
  19.     Top = 164
  20.     Width = 33
  21.     Height = 13
  22.     Caption = '&Printer:'
  23.     FocusControl = ComboBoxPrinters
  24.   end
  25.   object Label7: TLabel
  26.     Left = 10
  27.     Top = 193
  28.     Width = 45
  29.     Height = 13
  30.     Caption = '&Font size:'
  31.     FocusControl = ComboBoxFontSize
  32.   end
  33.   object Label8: TLabel
  34.     Left = 210
  35.     Top = 193
  36.     Width = 67
  37.     Height = 13
  38.     Caption = 'B&ytes per row:'
  39.     FocusControl = ComboBoxBytesPerRow
  40.   end
  41.   object Panel1: TPanel
  42.     Left = 0
  43.     Top = 308
  44.     Width = 367
  45.     Height = 35
  46.     Align = alBottom
  47.     BevelOuter = bvNone
  48.     TabOrder = 7
  49.     object ButtonPreviewPrint: TButton
  50.       Left = 10
  51.       Top = 5
  52.       Width = 85
  53.       Height = 25
  54.       Caption = 'Preview/Print'
  55.       Default = True
  56.       ModalResult = 1
  57.       TabOrder = 0
  58.       OnClick = ButtonPreviewPrintClick
  59.     end
  60.     object ButtonCancel: TButton
  61.       Left = 103
  62.       Top = 5
  63.       Width = 85
  64.       Height = 25
  65.       Cancel = True
  66.       Caption = 'Cancel'
  67.       ModalResult = 2
  68.       TabOrder = 1
  69.     end
  70.     object ButtonHelp: TButton
  71.       Left = 195
  72.       Top = 5
  73.       Width = 85
  74.       Height = 25
  75.       Caption = '&Help'
  76.       TabOrder = 2
  77.       OnClick = ButtonHelpClick
  78.     end
  79.   end
  80.   object GroupBoxPrint: TGroupBox
  81.     Left = 10
  82.     Top = 5
  83.     Width = 346
  84.     Height = 51
  85.     Caption = 'Printing range'
  86.     TabOrder = 0
  87.     object RadioButtonCurPage: TRadioButton
  88.       Left = 10
  89.       Top = 20
  90.       Width = 101
  91.       Height = 17
  92.       Caption = '&Current page'
  93.       Checked = True
  94.       TabOrder = 0
  95.       TabStop = True
  96.     end
  97.     object RadioButtonCurSelection: TRadioButton
  98.       Left = 121
  99.       Top = 20
  100.       Width = 113
  101.       Height = 17
  102.       Caption = 'Current &selection'
  103.       TabOrder = 1
  104.     end
  105.     object RadioButtonAllPages: TRadioButton
  106.       Left = 251
  107.       Top = 20
  108.       Width = 80
  109.       Height = 17
  110.       Caption = '&All pages'
  111.       TabOrder = 2
  112.     end
  113.   end
  114.   object ComboBoxPrinters: TComboBox
  115.     Left = 70
  116.     Top = 155
  117.     Width = 286
  118.     Height = 21
  119.     HelpContext = 69
  120.     Style = csDropDownList
  121.     ItemHeight = 13
  122.     TabOrder = 2
  123.     OnChange = ComboBoxPrintersChange
  124.   end
  125.   object GroupBoxMargins: TGroupBox
  126.     Left = 10
  127.     Top = 60
  128.     Width = 346
  129.     Height = 87
  130.     HelpContext = 66
  131.     Caption = 'Margins'
  132.     TabOrder = 1
  133.     object Label3: TLabel
  134.       Left = 137
  135.       Top = 20
  136.       Width = 21
  137.       Height = 13
  138.       Caption = '&Left:'
  139.       FocusControl = CMNumEditMarginLeft
  140.     end
  141.     object Label2: TLabel
  142.       Left = 238
  143.       Top = 20
  144.       Width = 28
  145.       Height = 13
  146.       Caption = '&Right:'
  147.       FocusControl = CMNumEditMarginRight
  148.     end
  149.     object Label4: TLabel
  150.       Left = 137
  151.       Top = 56
  152.       Width = 22
  153.       Height = 13
  154.       Caption = '&Top:'
  155.       FocusControl = CMNumEditMarginTop
  156.     end
  157.     object Label5: TLabel
  158.       Left = 236
  159.       Top = 56
  160.       Width = 36
  161.       Height = 13
  162.       Caption = '&Bottom:'
  163.       FocusControl = CMNumEditMarginBottom
  164.     end
  165.     object Label6: TLabel
  166.       Left = 10
  167.       Top = 20
  168.       Width = 22
  169.       Height = 13
  170.       Caption = '&Unit:'
  171.       FocusControl = ComboBoxUnit
  172.     end
  173.     object CMNumEditMarginLeft: TCMNumEdit
  174.       Left = 172
  175.       Top = 15
  176.       Width = 51
  177.       Height = 21
  178.       TabOrder = 1
  179.       Text = '15,00'
  180.       OnExit = CMNumEditMarginLeftExit
  181.       DigitsFrac = 2
  182.       DigitsInt = 2
  183.       Value = 15.000000000000000000
  184.       Min = 0.200000000000000000
  185.       Max = 50.000000000000000000
  186.     end
  187.     object CMNumEditMarginRight: TCMNumEdit
  188.       Left = 283
  189.       Top = 15
  190.       Width = 51
  191.       Height = 21
  192.       TabOrder = 2
  193.       Text = '15,00'
  194.       OnExit = CMNumEditMarginLeftExit
  195.       DigitsFrac = 2
  196.       DigitsInt = 2
  197.       Value = 15.000000000000000000
  198.       Min = 0.200000000000000000
  199.       Max = 50.000000000000000000
  200.     end
  201.     object CMNumEditMarginTop: TCMNumEdit
  202.       Left = 172
  203.       Top = 51
  204.       Width = 51
  205.       Height = 21
  206.       TabOrder = 3
  207.       Text = '15,00'
  208.       OnExit = CMNumEditMarginLeftExit
  209.       DigitsFrac = 2
  210.       DigitsInt = 2
  211.       Value = 15.000000000000000000
  212.       Min = 0.200000000000000000
  213.       Max = 50.000000000000000000
  214.     end
  215.     object CMNumEditMarginBottom: TCMNumEdit
  216.       Left = 283
  217.       Top = 51
  218.       Width = 51
  219.       Height = 21
  220.       TabOrder = 4
  221.       Text = '15,00'
  222.       OnExit = CMNumEditMarginLeftExit
  223.       DigitsFrac = 2
  224.       DigitsInt = 2
  225.       Value = 15.000000000000000000
  226.       Min = 0.200000000000000000
  227.       Max = 50.000000000000000000
  228.     end
  229.     object ComboBoxUnit: TComboBox
  230.       Left = 52
  231.       Top = 13
  232.       Width = 66
  233.       Height = 21
  234.       Style = csDropDownList
  235.       ItemHeight = 13
  236.       Items.Strings = (
  237.         'mm'
  238.         'Inch')
  239.       TabOrder = 0
  240.       OnChange = ComboBoxUnitChange
  241.     end
  242.   end
  243.   object ComboBoxFontSize: TComboBox
  244.     Left = 70
  245.     Top = 185
  246.     Width = 66
  247.     Height = 21
  248.     Style = csDropDownList
  249.     ItemHeight = 13
  250.     Items.Strings = (
  251.       '8'
  252.       '10'
  253.       '12')
  254.     TabOrder = 3
  255.   end
  256.   object CheckBoxOrientationLandscape: TCheckBox
  257.     Left = 10
  258.     Top = 215
  259.     Width = 251
  260.     Height = 17
  261.     Caption = 'Landscape &orientation (instead of portrait)'
  262.     TabOrder = 5
  263.   end
  264.   object CheckBoxOffsetDecimal: TCheckBox
  265.     Left = 10
  266.     Top = 240
  267.     Width = 251
  268.     Height = 17
  269.     Caption = 'Print offsets in &decimal (instead of hexadecimal)'
  270.     TabOrder = 6
  271.   end
  272.   object ComboBoxBytesPerRow: TComboBox
  273.     Left = 290
  274.     Top = 185
  275.     Width = 66
  276.     Height = 21
  277.     ItemHeight = 13
  278.     Items.Strings = (
  279.       '10'
  280.       '16'
  281.       '24'
  282.       '25'
  283.       '32'
  284.       '40'
  285.       '48')
  286.     MaxLength = 2
  287.     TabOrder = 4
  288.     OnKeyPress = ComboBoxBytesPerRowKeyPress
  289.   end
  290.   object CheckBoxTextBelow: TCheckBox
  291.     Left = 10
  292.     Top = 265
  293.     Width = 251
  294.     Height = 17
  295.     HelpContext = 67
  296.     Caption = 'Print text belo&w hex (i.e. in 2nd line)'
  297.     TabOrder = 8
  298.   end
  299.   object CheckBoxOutputToFile: TCheckBox
  300.     Left = 10
  301.     Top = 290
  302.     Width = 256
  303.     Height = 17
  304.     HelpContext = 68
  305.     Caption = 'R&edirect output to file'
  306.     TabOrder = 9
  307.   end
  308. end
  309.