FirstAid.dfm
上传用户:hbtcygglw
上传日期:2007-01-07
资源大小:281k
文件大小:3k
源码类别:

其他

开发平台:

Delphi

  1. object FirstAidDlg: TFirstAidDlg
  2.   Left = 208
  3.   Top = 107
  4.   BorderStyle = bsDialog
  5.   Caption = 'OICQ急救'
  6.   ClientHeight = 416
  7.   ClientWidth = 306
  8.   Color = clBtnFace
  9.   Font.Charset = ANSI_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -12
  12.   Font.Name = '宋体'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poDesktopCenter
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 12
  19.   object Label1: TLabel
  20.     Left = 8
  21.     Top = 8
  22.     Width = 60
  23.     Height = 12
  24.     Caption = 'OpenICQ ID'
  25.   end
  26.   object Label2: TLabel
  27.     Left = 44
  28.     Top = 36
  29.     Width = 24
  30.     Height = 12
  31.     Caption = '密码'
  32.   end
  33.   object lbStatus: TLabel
  34.     Left = 208
  35.     Top = 396
  36.     Width = 24
  37.     Height = 12
  38.     Caption = '离线'
  39.   end
  40.   object edUserId: TEdit
  41.     Left = 76
  42.     Top = 4
  43.     Width = 121
  44.     Height = 20
  45.     TabOrder = 0
  46.   end
  47.   object edPasskey: TEdit
  48.     Left = 76
  49.     Top = 32
  50.     Width = 121
  51.     Height = 20
  52.     PasswordChar = '*'
  53.     TabOrder = 1
  54.   end
  55.   object UserList: TListBox
  56.     Left = 4
  57.     Top = 60
  58.     Width = 193
  59.     Height = 352
  60.     ItemHeight = 12
  61.     PopupMenu = PopupMenu1
  62.     TabOrder = 2
  63.   end
  64.   object btnLogon: TButton
  65.     Left = 212
  66.     Top = 4
  67.     Width = 75
  68.     Height = 25
  69.     Caption = '上线'
  70.     TabOrder = 3
  71.     OnClick = btnLogonClick
  72.   end
  73.   object btnLogoff: TButton
  74.     Left = 212
  75.     Top = 32
  76.     Width = 75
  77.     Height = 25
  78.     Caption = '下线'
  79.     Enabled = False
  80.     TabOrder = 4
  81.     OnClick = btnLogoffClick
  82.   end
  83.   object btnReadFriend: TButton
  84.     Left = 212
  85.     Top = 60
  86.     Width = 75
  87.     Height = 25
  88.     Caption = '读朋友'
  89.     Enabled = False
  90.     TabOrder = 5
  91.     OnClick = btnReadFriendClick
  92.   end
  93.   object btnDeleteFriend: TButton
  94.     Left = 212
  95.     Top = 116
  96.     Width = 75
  97.     Height = 25
  98.     Caption = '删除'
  99.     Enabled = False
  100.     TabOrder = 6
  101.     OnClick = btnDeleteFriendClick
  102.   end
  103.   object btnName: TButton
  104.     Left = 212
  105.     Top = 88
  106.     Width = 75
  107.     Height = 25
  108.     Caption = '姓名'
  109.     Enabled = False
  110.     TabOrder = 7
  111.     OnClick = btnNameClick
  112.   end
  113.   object UDPSock: TNMUDP
  114.     RemoteHost = '202.103.190.46'
  115.     RemotePort = 8000
  116.     LocalPort = 0
  117.     ReportLevel = 1
  118.     OnDataReceived = UDPSockDataReceived
  119.     Left = 144
  120.     Top = 116
  121.   end
  122.   object SaveDlg: TSaveDialog
  123.     DefaultExt = '.txt'
  124.     Filter = '文本文件(*.TXT)|.txt'
  125.     Left = 88
  126.     Top = 116
  127.   end
  128.   object PopupMenu1: TPopupMenu
  129.     Left = 116
  130.     Top = 116
  131.     object mClear: TMenuItem
  132.       Caption = '清除'
  133.       OnClick = mClearClick
  134.     end
  135.     object mSave: TMenuItem
  136.       Caption = '保存'
  137.       OnClick = mSaveClick
  138.     end
  139.   end
  140. end