Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
FakeMsg.pas
Package: oicqspysrc.zip [view]
Upload User: hbtcygglw
Upload Date: 2007-01-07
Package Size: 281k
Code Size: 2k
Category:
Other systems
Development Platform:
Delphi
- unit FakeMsg;
- interface
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, Spin, ComCtrls, Buttons;
- type
- TFakeMsgDlg = class(TForm)
- Label1: TLabel;
- edSendId: TEdit;
- Label2: TLabel;
- edRecvId: TEdit;
- Label3: TLabel;
- edFaceNo: TSpinEdit;
- Label4: TLabel;
- NowDate: TDateTimePicker;
- NowTime: TDateTimePicker;
- Label5: TLabel;
- Label6: TLabel;
- edMsg: TEdit;
- BitBtn1: TBitBtn;
- BitBtn2: TBitBtn;
- Label7: TLabel;
- edRecvIP: TEdit;
- Label8: TLabel;
- edSendNum: TSpinEdit;
- Label9: TLabel;
- edDestPort: TSpinEdit;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- class procedure Execute(ip,id:string;port:WORD);
- end;
- implementation
- {$R *.DFM}
- uses data;
- { TFakeMsgDlg }
- class procedure TFakeMsgDlg.Execute(ip, id: string;port:WORD);
- var
- i:Integer;
- begin
- with TFakeMsgDlg.Create(Application) do
- begin
- edRecvId.Text:=id;
- edRecvIp.Text:=ip;
- edDestPort.Value:=port;
- if(ShowModal=mrOk)then
- begin
- for i:=0 to edSendNum.Value do
- begin
- SendFakeMsg(edSendId.Text,IntToStr(edFaceNo.value),edRecvId.Text
- ,edRecvIp.Text,edDestPort.Value,edMsg.Text,NowDate.Date,NowTime.Time);
- end;
- end;
- Free;
- end;
- end;
- procedure TFakeMsgDlg.FormCreate(Sender: TObject);
- begin
- NowDate.Date:=Date;
- NowTime.Time:=Time;
- end;
- end.