spypro.dfm

来自「Yahoo Messenger for Mobile」· DFM 代码 · 共 74 行

DFM
74
字号
object Form1: TForm1
  Left = 192
  Top = 107
  Width = 331
  Height = 278
  Caption = 'Watch Process'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Button1: TButton
    Left = 30
    Top = 22
    Width = 75
    Height = 25
    Caption = 'Spy On'
    TabOrder = 0
    OnClick = Button1Click
  end
  object Edit1: TEdit
    Left = 148
    Top = 24
    Width = 121
    Height = 21
    TabOrder = 1
    Text = 'Action'
  end
  object Memo1: TMemo
    Left = 14
    Top = 110
    Width = 293
    Height = 123
    Lines.Strings = (
      'Memo1')
    TabOrder = 2
  end
  object OpenDialog1: TOpenDialog
    DefaultExt = '.exe'
    Filter = 'Executable Files|*.exe'
    Left = 280
    Top = 12
  end
  object ServerSocket1: TServerSocket
    Active = False
    Port = 5050
    ServerType = stNonBlocking
    OnAccept = ServerSocket1Accept
    OnGetSocket = ServerSocket1GetSocket
    OnClientConnect = ServerSocket1ClientConnect
    OnClientDisconnect = ServerSocket1ClientDisconnect
    OnClientRead = ServerSocket1ClientRead
    OnClientError = ServerSocket1ClientError
    Left = 54
    Top = 58
  end
  object ClientSocket1: TClientSocket
    Active = False
    ClientType = ctNonBlocking
    Host = 'cs41.msg.dcn.yahoo.com'
    Port = 5050
    OnConnect = ClientSocket1Connect
    OnDisconnect = ClientSocket1Disconnect
    OnRead = ClientSocket1Read
    Left = 144
    Top = 62
  end
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?