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
about.pas
Package: oicqspysrc.zip [view]
Upload User: hbtcygglw
Upload Date: 2007-01-07
Package Size: 281k
Code Size: 1k
Category:
Other systems
Development Platform:
Delphi
- unit about;
- //{$define REDUCE_VERSION}
- interface
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, NWURLLabel;
- type
- TAboutBox = class(TForm)
- lbProductName: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- Button1: TButton;
- Label6: TLabel;
- Label7: TLabel;
- Label8: TLabel;
- Label9: TLabel;
- AuthtorList: TListBox;
- NWURLLabel1: TNWURLLabel;
- NWURLLabel2: TNWURLLabel;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- class procedure Execute;
- end;
- implementation
- {$R *.DFM}
- { TAboutBox }
- class procedure TAboutBox.Execute;
- begin
- with TAboutBox.Create(Application) do
- begin
- ShowModal;
- Free;
- end;
- end;
- procedure TAboutBox.FormCreate(Sender: TObject);
- begin
- {$ifdef REDUCE_VERSION}
- lbProductName.Caption:=lbProductName.Caption+' 简版';
- {$endif}
- end;
- end.