Dec 052017
Windows viewer for Paradox tables, C++ source code only. | |||
---|---|---|---|
File Name | File Size | Zip Size | Zip Type |
BROWSE.CPP | 9721 | 2870 | deflated |
BROWSE.HPP | 3949 | 1428 | deflated |
BROWSEFM.CPP | 12743 | 2873 | deflated |
BROWSEFM.HPP | 4426 | 1425 | deflated |
BROWSER.CPP | 27452 | 6655 | deflated |
BROWSER.HPP | 9673 | 2900 | deflated |
DBDISPLY.CPP | 16851 | 4456 | deflated |
DBDISPLY.HPP | 7043 | 2318 | deflated |
PXDEF.HPP | 5210 | 1667 | deflated |
PXDIS.CPP | 6216 | 1636 | deflated |
PXDIS.HPP | 2683 | 902 | deflated |
PXDISPLY.HPP | 3609 | 1121 | deflated |
PXEFAM.CPP | 2499 | 616 | deflated |
PXEFAM.HPP | 1673 | 599 | deflated |
PXEOBJ.CPP | 3372 | 929 | deflated |
PXEOBJ.HPP | 5828 | 1992 | deflated |
PXEWIN.CPP | 1288 | 500 | deflated |
PXEWIN.DOC | 2517 | 1146 | deflated |
PXEWIN.DSK | 672 | 306 | deflated |
PXEWIN.PRJ | 9597 | 2198 | deflated |
PXFIELD.CPP | 22793 | 2922 | deflated |
PXFIELD.HPP | 15746 | 2674 | deflated |
PXI.CPP | 2064 | 697 | deflated |
PXI.HPP | 1503 | 515 | deflated |
PXLISTBX.CPP | 7071 | 2081 | deflated |
PXLISTBX.HPP | 3223 | 1170 | deflated |
PXREC.CPP | 6715 | 1419 | deflated |
PXREC.HPP | 2483 | 865 | deflated |
PXSCROLL.CPP | 4655 | 1416 | deflated |
PXSCROLL.HPP | 2666 | 908 | deflated |
PXTBL.CPP | 9252 | 2060 | deflated |
PXTBL.HPP | 3296 | 1138 | deflated |
STEPS.RC | 732 | 311 | deflated |
STEPS.RES | 703 | 345 | deflated |
Download File PXEWIN.ZIP Here
Contents of the PXEWIN.DOC file
// PXEWIN - (C) Copyright 1992 by Beam Engineering, INC.
Description
This library contains a set of routines that will allow you to
browse any Paradox table in Windows that is Paradox 3.5 compatible
or less. You cannot change the structure of a table or edit a
record using this library. However, this libary could provide a
good start toward writing your own routines to do table edits and
structure changes.
The library is unique in that it uses list boxes to display field
data for a table. You can scroll vertically or horizontally in
the database. Up to twenty records can be shown simultaneously on
the screen. Several tables can be displayed in seperate windows
using an MDI interface. You can save or restore the desktop to it's
current or last state. The library is TStreamable and Object
compatible.
The library is organized into two basic parts:
The first part contains a set of routines that allow class/member
access and control to the PDOX Engine library. It contains an
object layer as a base class for engine function access. All
engine classes descend from this object layer. The descendance are:
PXI. Initialization class for initializing the engine.
PXTbl. For table functions.
PXFamily. For family related functions (copy,delete).
PXRec. For record functions.
PXField. For field functions. Subclasses include classes
for each type of field.
PXDIS. For setting up the database for display.
The above object class and it's descendance can be used as a bases
for any engine developement and is not limited to Windows
applications only.
The second part uses class descendance from the OWL and you must use
Windows to work with it. The descendance for the OWL are:
DBDISPLAY. Sets up the database for display in Windows.
PXScroll. Redefines the scroller for the browser.
PXListBox. Redefines list boxes for the browser.
Browse. Creates and manages the browser window.
BrowserFrame. Allows browser interface to be MDI complient.
Disclosure
You are free to copy and use this program for you own benifit.
Comments
You may need to change some of you directory defaults around to
include all the libraries you need to link in. Also, put the
PXENGWIN.DLL in the same directory you will be running the program
from.
I would appreciate any comments or criticisms (constructive please).
You can get in touch with me at:
CIS# 72230,2213
Description
This library contains a set of routines that will allow you to
browse any Paradox table in Windows that is Paradox 3.5 compatible
or less. You cannot change the structure of a table or edit a
record using this library. However, this libary could provide a
good start toward writing your own routines to do table edits and
structure changes.
The library is unique in that it uses list boxes to display field
data for a table. You can scroll vertically or horizontally in
the database. Up to twenty records can be shown simultaneously on
the screen. Several tables can be displayed in seperate windows
using an MDI interface. You can save or restore the desktop to it's
current or last state. The library is TStreamable and Object
compatible.
The library is organized into two basic parts:
The first part contains a set of routines that allow class/member
access and control to the PDOX Engine library. It contains an
object layer as a base class for engine function access. All
engine classes descend from this object layer. The descendance are:
PXI. Initialization class for initializing the engine.
PXTbl. For table functions.
PXFamily. For family related functions (copy,delete).
PXRec. For record functions.
PXField. For field functions. Subclasses include classes
for each type of field.
PXDIS. For setting up the database for display.
The above object class and it's descendance can be used as a bases
for any engine developement and is not limited to Windows
applications only.
The second part uses class descendance from the OWL and you must use
Windows to work with it. The descendance for the OWL are:
DBDISPLAY. Sets up the database for display in Windows.
PXScroll. Redefines the scroller for the browser.
PXListBox. Redefines list boxes for the browser.
Browse. Creates and manages the browser window.
BrowserFrame. Allows browser interface to be MDI complient.
Disclosure
You are free to copy and use this program for you own benifit.
Comments
You may need to change some of you directory defaults around to
include all the libraries you need to link in. Also, put the
PXENGWIN.DLL in the same directory you will be running the program
from.
I would appreciate any comments or criticisms (constructive please).
You can get in touch with me at:
CIS# 72230,2213
December 5, 2017
Add comments