home *** CD-ROM | disk | FTP | other *** search
- unit Package1Unit1;
-
- interface
-
- procedure BLRegister;
-
- implementation
-
- uses
- Forms, Windows;
-
- procedure BLRegister;
- begin
- Application.MessageBox('BLTestPackage''s Package1Unit1.BLRegister',
- 'Information', MB_OK or MB_ICONINFORMATION)
- end;
-
- initialization
- Application.MessageBox('BLTestPackage starting', 'Information', MB_OK or MB_ICONINFORMATION)
- finalization
- Application.MessageBox('BLTestPackage stopping', 'Information', MB_OK or MB_ICONINFORMATION);
- end.
-