home *** CD-ROM | disk | FTP | other *** search
- program PswAdd;
- 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
- begin
- (* Submit password to system if table protected *)
- PxErr := PXPswAdd(Password);
- if PxErr <> PxSuccess
- then Writeln(PxErrMsg(PxErr));
- end;
-
- PX(PXExit);
- end.
-