home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 5
/
05.iso
/
a
/
a006
/
1.ddi
/
PASEXAM.ZIP
/
TBLREN.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1991-03-11
|
292 b
|
19 lines
program TblRen;
uses PXEngine;
const OldName = 'OldTbl';
NewName = 'NewTbl';
var PxErr: Integer;
begin
PX(PXInit);
(* Rename a table *)
PxErr := PXTblRename(OldName, NewName);
if PxErr <> PxSuccess then
Writeln(PxErrMsg(PxErr));
PX(PXExit);
end.