home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 25: Programming / pc_actual_25.iso / Delphi / TeeChartPro / TeeChart5Delphi5Eval.exe / %MAINDIR% / Delphi5 / Lib / TeeSeriesTextEd.dfm / TeeSeriesTextEd.txt
Encoding:
Text File  |  2001-09-10  |  3.9 KB  |  194 lines

  1. object SeriesTextEditor: TSeriesTextEditor
  2.   Left = 280
  3.   Top = 245
  4.   BorderStyle = bsDialog
  5.   Caption = 'Series DataSource Text Editor'
  6.   ClientHeight = 191
  7.   ClientWidth = 369
  8.   Color = clBtnFace
  9.   ParentFont = True
  10.   Position = poScreenCenter
  11.   OnShow = FormShow
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object Button1: TButton
  15.     Left = 196
  16.     Top = 160
  17.     Width = 75
  18.     Height = 25
  19.     Caption = 'OK'
  20.     Default = True
  21.     ModalResult = 1
  22.     TabOrder = 0
  23.     OnClick = Button1Click
  24.   end
  25.   object Button2: TButton
  26.     Left = 284
  27.     Top = 160
  28.     Width = 75
  29.     Height = 25
  30.     Cancel = True
  31.     Caption = 'Cancel'
  32.     ModalResult = 2
  33.     TabOrder = 1
  34.   end
  35.   object PageControl1: TPageControl
  36.     Left = 0
  37.     Top = 0
  38.     Width = 369
  39.     Height = 153
  40.     ActivePage = TabSheet1
  41.     Align = alTop
  42.     HotTrack = True
  43.     TabOrder = 2
  44.     object TabSheet1: TTabSheet
  45.       Caption = 'Fields'
  46.       object Label1: TLabel
  47.         Left = 8
  48.         Top = 83
  49.         Width = 114
  50.         Height = 13
  51.         Caption = 'Number of &Header lines:'
  52.         FocusControl = Edit1
  53.       end
  54.       object Label2: TLabel
  55.         Left = 48
  56.         Top = 50
  57.         Width = 49
  58.         Height = 13
  59.         Caption = '&Separator:'
  60.         FocusControl = CBSep
  61.       end
  62.       object Label3: TLabel
  63.         Left = 8
  64.         Top = 10
  65.         Width = 32
  66.         Height = 13
  67.         Caption = 'S&eries:'
  68.       end
  69.       object Edit1: TEdit
  70.         Left = 128
  71.         Top = 80
  72.         Width = 41
  73.         Height = 21
  74.         TabOrder = 0
  75.         Text = '0'
  76.       end
  77.       object UpDown1: TUpDown
  78.         Left = 169
  79.         Top = 80
  80.         Width = 15
  81.         Height = 21
  82.         Associate = Edit1
  83.         Min = 0
  84.         Position = 0
  85.         TabOrder = 1
  86.         Wrap = False
  87.       end
  88.       object StringGrid1: TStringGrid
  89.         Left = 200
  90.         Top = 8
  91.         Width = 161
  92.         Height = 113
  93.         ColCount = 2
  94.         DefaultRowHeight = 18
  95.         Options = [goVertLine, goHorzLine, goEditing]
  96.         TabOrder = 2
  97.         RowHeights = (
  98.           18
  99.           18
  100.           18
  101.           18
  102.           18)
  103.       end
  104.       object CBSeries: TComboBox
  105.         Left = 48
  106.         Top = 7
  107.         Width = 138
  108.         Height = 21
  109.         Style = csDropDownList
  110.         ItemHeight = 13
  111.         TabOrder = 3
  112.         OnChange = CBSeriesChange
  113.       end
  114.       object CBSep: TComboBox
  115.         Left = 104
  116.         Top = 48
  117.         Width = 81
  118.         Height = 21
  119.         ItemHeight = 13
  120.         TabOrder = 4
  121.         Text = 'Comma'
  122.         Items.Strings = (
  123.           'Comma'
  124.           'Space'
  125.           'Tab')
  126.       end
  127.     end
  128.     object TabSheet2: TTabSheet
  129.       Caption = 'Source'
  130.       object BBrowse: TSpeedButton
  131.         Left = 330
  132.         Top = 23
  133.         Width = 23
  134.         Height = 22
  135.         Caption = '...'
  136.         OnClick = SpeedButton1Click
  137.       end
  138.       object RBFile: TRadioButton
  139.         Left = 13
  140.         Top = 28
  141.         Width = 82
  142.         Height = 17
  143.         Caption = '&File:'
  144.         Checked = True
  145.         TabOrder = 0
  146.         TabStop = True
  147.         OnClick = RBFileClick
  148.       end
  149.       object EFile: TEdit
  150.         Left = 94
  151.         Top = 24
  152.         Width = 227
  153.         Height = 21
  154.         TabOrder = 1
  155.         Text = 'c:\test.txt'
  156.       end
  157.       object RBWeb: TRadioButton
  158.         Left = 13
  159.         Top = 60
  160.         Width = 82
  161.         Height = 17
  162.         Caption = '&Web URL:'
  163.         TabOrder = 2
  164.         OnClick = RBFileClick
  165.       end
  166.       object EWeb: TEdit
  167.         Left = 94
  168.         Top = 56
  169.         Width = 227
  170.         Height = 21
  171.         Enabled = False
  172.         TabOrder = 3
  173.         Text = 'http://www.steema.com/test.txt'
  174.       end
  175.       object Button4: TButton
  176.         Left = 94
  177.         Top = 92
  178.         Width = 75
  179.         Height = 25
  180.         Caption = '&Load '
  181.         TabOrder = 4
  182.         OnClick = Button4Click
  183.       end
  184.     end
  185.   end
  186.   object OpenDialog1: TOpenDialog
  187.     DefaultExt = 'txt'
  188.     Filter = 'Text files|*.txt'
  189.     Options = [ofReadOnly, ofHideReadOnly, ofEnableSizing]
  190.     Left = 268
  191.     Top = 64
  192.   end
  193. end
  194.