home *** CD-ROM | disk | FTP | other *** search
- program PswDel;
- uses PXEngine, WinCrt, WinTypes;
-
- const TableName = 'Table';
- Password = 'Password';
-
- var PxErr: Integer;
- Protected: Bool;
-
- procedure PX(Code : integer);
- begin
- writeln(PXErrMsg(Code));
- end;
-
- begin
- PX(PXWinInit('MyApp', pxShared));
- PX(PXTblProtected(TableName, Protected));
-
- if Protected then
- PxErr := PXPswAdd(Password);
-
- (* Open encrypted table and when done with table, delete password
- from system, if necessary
- *)
- if Protected then
- begin
- PxErr := PXPswDel(Password);
- if PxErr <> PxSuccess then
- Writeln(PxErrMsg(PxErr));
- end;
-
- PX(PXExit);
- end.
-
-