home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a007 / 1.ddi / RECNUM.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-15  |  600 b   |  29 lines

  1. /* The SETUP.C program must be compiled and run before this example */
  2. /* can be executed. */
  3.  
  4. #include <stdio.h>
  5. #include "pxengine.h"
  6.  
  7. #define TABLENAME  "table"
  8.  
  9. int main(void)
  10. {
  11.   TABLEHANDLE  tblHandle;
  12.   RECORDNUMBER recNumber;
  13.   PXCODE       pxErr;
  14.  
  15.   PXInit();
  16.   PXTblOpen(TABLENAME, &tblHandle, 0, 0);
  17.  
  18.   /* Get the current record number. */
  19.  
  20.   if ((pxErr = PXRecNum(tblHandle, &recNumber)) != PXSUCCESS)
  21.     printf("%s\n", PXErrMsg(pxErr));
  22.   else
  23.     printf("Current record number is %d\n", recNumber);
  24.  
  25.   PXTblClose(tblHandle);
  26.   PXExit();
  27.   return(pxErr);
  28. }
  29.