home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware 1 2 the Maxx
/
sw_1.zip
/
sw_1
/
PROGRAM
/
BFAST.ZIP
/
BROWSE.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1992-03-19
|
1KB
|
39 lines
// -------------------------------------------------------------
// Browse is a another class based on class Btrieve
//
// If you are interesting in Browse, please contact me.
//
// Chaolin Chang
// 34 Bettina Street, Clayton,
// Vic., Australia, 3168
//
// Voice: +61 3 565-2360
// Fax : +61 3 565-5159
//
// Internet: chaolin@fcit-m1.fcit.monash.edu.au
// -------------------------------------------------------------
// Use of Browse is extremely simple, yet powerful.
// Besides, browsing through the whole file, you can also
// 1. show part of the field and decide their display sequence
// 2. set filter on records, so that only part of the records are shown.
// -------------------------------------------------------------
//
// NOTE: run btrieve.exe before browse.exe is run
//
// -------------------------------------------------------------
#include "display.h" // my disply function header file
#include "btrieve.hpp"
#include "browse.hpp"
#include "order.def"
#include "order.hpp"
main()
{
Btrieve f("", "ORDER.DAT", order, FLD_ORDER);
Browse v(&f, 2, 2, 20, 60);
v.Show(); // activate the browser
}