home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 August / chip_08_2000.iso / software / astro / starcalc / STARCALC.EXE / 0 / RCDATA / TSAVEPICTURE / TSAVEPICTURE.txt
Text File  |  2000-05-28  |  3KB  |  167 lines

  1. object SavePicture: TSavePicture
  2.   Left = 243
  3.   Top = 189
  4.   ActiveControl = OkBtn
  5.   BorderStyle = bsDialog
  6.   Caption = 'Save as file'
  7.   ClientHeight = 211
  8.   ClientWidth = 306
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   OnKeyDown = FormKeyDown
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label5: TLabel
  19.     Left = 8
  20.     Top = 136
  21.     Width = 60
  22.     Height = 13
  23.     Caption = 'File name:'
  24.   end
  25.   object LegendCB: TCheckBox
  26.     Left = 216
  27.     Top = 128
  28.     Width = 81
  29.     Height = 17
  30.     Alignment = taLeftJustify
  31.     Caption = 'Add legend'
  32.     State = cbChecked
  33.     TabOrder = 2
  34.   end
  35.   object FileNameEdit: TEdit
  36.     Left = 8
  37.     Top = 152
  38.     Width = 265
  39.     Height = 21
  40.     TabOrder = 3
  41.   end
  42.   object FileNameBtn: TButton
  43.     Left = 280
  44.     Top = 152
  45.     Width = 17
  46.     Height = 21
  47.     Caption = '...'
  48.     TabOrder = 4
  49.     OnClick = FileNameBtnClick
  50.   end
  51.   object OkBtn: TButton
  52.     Left = 40
  53.     Top = 182
  54.     Width = 97
  55.     Height = 22
  56.     Caption = '&Ok'
  57.     Default = True
  58.     ModalResult = 1
  59.     TabOrder = 5
  60.     OnClick = OkBtnClick
  61.     OnKeyDown = FormKeyDown
  62.   end
  63.   object ExitBtn: TButton
  64.     Left = 166
  65.     Top = 182
  66.     Width = 99
  67.     Height = 22
  68.     Caption = '&Cancel'
  69.     ModalResult = 2
  70.     TabOrder = 6
  71.     OnKeyDown = FormKeyDown
  72.   end
  73.   object Panel1: TPanel
  74.     Left = 8
  75.     Top = 8
  76.     Width = 289
  77.     Height = 36
  78.     BevelInner = bvRaised
  79.     BevelOuter = bvLowered
  80.     TabOrder = 0
  81.     object Label1: TLabel
  82.       Left = 24
  83.       Top = 12
  84.       Width = 42
  85.       Height = 13
  86.       Caption = 'Width:'
  87.     end
  88.     object Label2: TLabel
  89.       Left = 160
  90.       Top = 12
  91.       Width = 41
  92.       Height = 13
  93.       Caption = 'Height:'
  94.     end
  95.     object WidthEdit: TEdit
  96.       Left = 80
  97.       Top = 8
  98.       Width = 41
  99.       Height = 21
  100.       MaxLength = 4
  101.       TabOrder = 0
  102.       OnExit = WidthEditExit
  103.     end
  104.     object HeightEdit: TEdit
  105.       Left = 216
  106.       Top = 8
  107.       Width = 41
  108.       Height = 21
  109.       MaxLength = 4
  110.       TabOrder = 1
  111.       OnExit = HeightEditExit
  112.     end
  113.   end
  114.   object Panel2: TPanel
  115.     Left = 8
  116.     Top = 48
  117.     Width = 289
  118.     Height = 73
  119.     BevelInner = bvRaised
  120.     BevelOuter = bvLowered
  121.     TabOrder = 1
  122.     object Label3: TLabel
  123.       Left = 7
  124.       Top = 14
  125.       Width = 52
  126.       Height = 13
  127.       Caption = 'File type:'
  128.     end
  129.     object Label4: TLabel
  130.       Left = 7
  131.       Top = 45
  132.       Width = 76
  133.       Height = 13
  134.       Caption = 'Color scheme:'
  135.     end
  136.     object FileTypeCB: TComboBox
  137.       Left = 66
  138.       Top = 10
  139.       Width = 217
  140.       Height = 21
  141.       Style = csDropDownList
  142.       ItemHeight = 13
  143.       Items.Strings = (
  144.         '(*.bmp) Windows or OS/2 Bitmap'
  145.         '(*.gif) CompuServe Grpahics Interchange'
  146.         '(*.wmf) Windows Meta File'
  147.         '(*.emf) Windows Enhanced MetaFile')
  148.       TabOrder = 0
  149.       OnChange = FileTypeCBChange
  150.     end
  151.     object ColorSchemeCB: TComboBox
  152.       Left = 98
  153.       Top = 42
  154.       Width = 185
  155.       Height = 21
  156.       Style = csDropDownList
  157.       ItemHeight = 13
  158.       TabOrder = 1
  159.     end
  160.   end
  161.   object SaveDialog: TSaveDialog
  162.     FileEditStyle = fsEdit
  163.     Left = 8
  164.     Top = 176
  165.   end
  166. end
  167.