home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 November / Chip_2002-11_cd1.bin / zkuste / delphi / kompon / d3456 / ICQ.ZIP / ICQ / VerySimpleExample / Main.dfm < prev    next >
Text File  |  2002-07-15  |  3KB  |  131 lines

  1. object Form1: TForm1
  2.   Left = 257
  3.   Top = 289
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'TICQClient Example'
  7.   ClientHeight = 330
  8.   ClientWidth = 577
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poDesktopCenter
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object GroupBox1: TGroupBox
  20.     Left = 0
  21.     Top = 0
  22.     Width = 289
  23.     Height = 129
  24.     Caption = 'User'#39's UIN && Password'
  25.     TabOrder = 0
  26.     object Label1: TLabel
  27.       Left = 8
  28.       Top = 24
  29.       Width = 47
  30.       Height = 13
  31.       Caption = 'Your UIN:'
  32.     end
  33.     object Label2: TLabel
  34.       Left = 8
  35.       Top = 48
  36.       Width = 73
  37.       Height = 13
  38.       Caption = 'Your password:'
  39.     end
  40.     object PasswordEdit: TEdit
  41.       Left = 96
  42.       Top = 40
  43.       Width = 177
  44.       Height = 21
  45.       TabOrder = 0
  46.     end
  47.     object UINEdit: TEdit
  48.       Left = 96
  49.       Top = 16
  50.       Width = 177
  51.       Height = 21
  52.       TabOrder = 1
  53.     end
  54.     object LoginBtn: TButton
  55.       Left = 192
  56.       Top = 96
  57.       Width = 81
  58.       Height = 25
  59.       Caption = 'Login!'
  60.       TabOrder = 2
  61.       OnClick = LoginBtnClick
  62.     end
  63.   end
  64.   object GroupBox2: TGroupBox
  65.     Left = 0
  66.     Top = 136
  67.     Width = 289
  68.     Height = 193
  69.     Caption = 'Send a message'
  70.     TabOrder = 1
  71.     object Label3: TLabel
  72.       Left = 8
  73.       Top = 32
  74.       Width = 83
  75.       Height = 13
  76.       Caption = 'Your friend'#39's UIN:'
  77.     end
  78.     object DestUINEdit: TEdit
  79.       Left = 96
  80.       Top = 24
  81.       Width = 177
  82.       Height = 21
  83.       TabOrder = 0
  84.     end
  85.     object MessageMemo: TMemo
  86.       Left = 8
  87.       Top = 48
  88.       Width = 265
  89.       Height = 97
  90.       Lines.Strings = (
  91.         'Yeah, it'#39's a test message :)')
  92.       TabOrder = 1
  93.     end
  94.     object SendMsgBtn: TButton
  95.       Left = 200
  96.       Top = 160
  97.       Width = 75
  98.       Height = 25
  99.       Caption = 'Send message!'
  100.       TabOrder = 2
  101.       OnClick = SendMsgBtnClick
  102.     end
  103.   end
  104.   object GroupBox3: TGroupBox
  105.     Left = 296
  106.     Top = 0
  107.     Width = 281
  108.     Height = 329
  109.     Caption = 'Events && Received Messages'
  110.     TabOrder = 2
  111.     object EventMemo: TMemo
  112.       Left = 2
  113.       Top = 15
  114.       Width = 277
  115.       Height = 312
  116.       Align = alClient
  117.       TabOrder = 0
  118.     end
  119.   end
  120.   object ICQClient1: TICQClient
  121.     UIN = 0
  122.     ICQPort = 0
  123.     ConvertToPlaintext = False
  124.     OnLogin = ICQClient1Login
  125.     OnMessageRecv = ICQClient1MessageRecv
  126.     OnConnectionFailed = ICQClient1ConnectionFailed
  127.     Left = 8
  128.     Top = 296
  129.   end
  130. end
  131.