patch.dpr
Package: netbus.zip [view]
Upload User: sbswcs
Upload Date: 2007-01-07
Package Size: 4k
Code Size: 0k
Category:
Remote Control
Development Platform:
Delphi
- program patch;
- uses
- Forms,
- Img in 'Img.pas' {ImageForm},
- Msg in 'Msg.pas' {MsgForm},
- Main2 in 'Main2.pas' {MainForm2};
- {$R *.RES}
- begin
- Application.Initialize;
- Application.CreateForm(TImageForm, ImageForm);
- Application.CreateForm(TMsgForm, MsgForm);
- Application.CreateForm(TMainForm2, MainForm2);
- Application.Run;
- end.