home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 December / Chip_2002-12_cd1.bin / ctenari / Campulka / CDObal.exe / 0 / RCDATA / TFRMCDDB / TFRMCDDB.txt < prev   
Encoding:
Text File  |  2002-10-14  |  3.5 KB  |  191 lines

  1. object frmCDDB: TfrmCDDB
  2.   Left = 311
  3.   Top = 111
  4.   BorderStyle = bsDialog
  5.   Caption = 'FreeDB'
  6.   ClientHeight = 294
  7.   ClientWidth = 259
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poOwnerFormCenter
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   DesignSize = (
  19.     259
  20.     294)
  21.   PixelsPerInch = 96
  22.   TextHeight = 13
  23.   object Label1: TLabel
  24.     Left = 6
  25.     Top = 48
  26.     Width = 59
  27.     Height = 13
  28.     Caption = 'CD-R/ROM:'
  29.   end
  30.   object Label2: TLabel
  31.     Left = 6
  32.     Top = 90
  33.     Width = 71
  34.     Height = 13
  35.     Caption = 'FreeDB server:'
  36.   end
  37.   object Label3: TLabel
  38.     Left = 6
  39.     Top = 130
  40.     Width = 21
  41.     Height = 13
  42.     Caption = 'Info:'
  43.   end
  44.   object Label4: TLabel
  45.     Left = 100
  46.     Top = 106
  47.     Width = 5
  48.     Height = 13
  49.     Caption = ':'
  50.     Font.Charset = DEFAULT_CHARSET
  51.     Font.Color = clWindowText
  52.     Font.Height = -11
  53.     Font.Name = 'MS Sans Serif'
  54.     Font.Style = [fsBold]
  55.     ParentFont = False
  56.   end
  57.   object Image1: TImage
  58.     Left = 6
  59.     Top = 14
  60.     Width = 60
  61.     Height = 16
  62.     AutoSize = True
  63.     Picture.Data = {<image000.bmp>}
  64.     OnClick = Image1Click
  65.   end
  66.   object ME: TMemo
  67.     Left = 6
  68.     Top = 144
  69.     Width = 247
  70.     Height = 142
  71.     Anchors = [akLeft, akTop, akRight, akBottom]
  72.     Font.Charset = EASTEUROPE_CHARSET
  73.     Font.Color = clMaroon
  74.     Font.Height = -12
  75.     Font.Name = 'Courier New'
  76.     Font.Style = []
  77.     Lines.Strings = (
  78.       'Pokud chcete vyu'#382#237't funkci'
  79.       'serveru FreeDB mus'#237'te:'
  80.       ''
  81.       '1. B'#253't p'#345'ipojeni k Internetu'
  82.       ''
  83.       '2. M'#237't v CD mechanice disk,'
  84.       '   ke kter'#233'mu chcete cddb'
  85.       '   informace st'#225'hnout.')
  86.     ParentFont = False
  87.     ReadOnly = True
  88.     ScrollBars = ssVertical
  89.     TabOrder = 0
  90.     WantTabs = True
  91.     WordWrap = False
  92.   end
  93.   object cbDrive: TComboBox
  94.     Left = 6
  95.     Top = 62
  96.     Width = 59
  97.     Height = 21
  98.     Style = csDropDownList
  99.     ItemHeight = 13
  100.     ItemIndex = 3
  101.     TabOrder = 1
  102.     Text = 'D'
  103.     Items.Strings = (
  104.       'A'
  105.       'B'
  106.       'C'
  107.       'D'
  108.       'E'
  109.       'F'
  110.       'G'
  111.       'H'
  112.       'I'
  113.       'J'
  114.       'K'
  115.       'L'
  116.       'M'
  117.       'N'
  118.       'O'
  119.       'P'
  120.       'Q'
  121.       'R'
  122.       'S'
  123.       'T'
  124.       'U'
  125.       'V'
  126.       'W'
  127.       'X'
  128.       'Y'
  129.       'Z')
  130.   end
  131.   object btStart: TButton
  132.     Left = 178
  133.     Top = 8
  134.     Width = 75
  135.     Height = 25
  136.     Caption = 'Start'
  137.     Default = True
  138.     TabOrder = 2
  139.     OnClick = btStartClick
  140.   end
  141.   object edServer: TEdit
  142.     Left = 6
  143.     Top = 104
  144.     Width = 93
  145.     Height = 21
  146.     TabOrder = 3
  147.     Text = 'freedb.freedb.org'
  148.   end
  149.   object edPort: TEdit
  150.     Left = 106
  151.     Top = 104
  152.     Width = 35
  153.     Height = 21
  154.     TabOrder = 4
  155.     Text = '8880'
  156.   end
  157.   object TCP: TWSocket
  158.     LineMode = False
  159.     LineLimit = 65536
  160.     LineEnd = #13#10
  161.     LineEcho = False
  162.     LineEdit = False
  163.     Addr = 'freedb.freedb.org'
  164.     Port = '888'
  165.     Proto = 'tcp'
  166.     LocalAddr = '0.0.0.0'
  167.     LocalPort = '0'
  168.     MultiThreaded = False
  169.     MultiCast = False
  170.     MultiCastIpTTL = 1
  171.     ReuseAddr = False
  172.     ComponentOptions = []
  173.     OnDataAvailable = TCPDataAvailable
  174.     OnSessionClosed = TCPSessionClosed
  175.     OnSessionConnected = TCPSessionConnected
  176.     OnError = TCPError
  177.     FlushTimeout = 60
  178.     SendFlags = wsSendNormal
  179.     LingerOnOff = wsLingerOn
  180.     LingerTimeout = 0
  181.     SocksLevel = '5'
  182.     SocksAuthentication = socksNoAuthentication
  183.     Left = 78
  184.     Top = 166
  185.   end
  186.   object VI: TVerInfo
  187.     Left = 108
  188.     Top = 168
  189.   end
  190. end
  191.