home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
QRMD.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
812b
|
21 lines
//---------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "QRMD.h"
//---------------------------------------------------------------------
#pragma resource "*.dfm"
TQRMDForm *QRMDForm;
//---------------------------------------------------------------------
// QuickReport Master/detail
// - Connect a datasource to the QuickReport component
// - Connect a datasource to the DetailLink component
// - Make sure a master/detail relationship is set up between the two tables
// - Put QRDBText components on the bands
//---------------------------------------------------------------------
__fastcall TQRMDForm::TQRMDForm(TComponent* AOwner)
: TForm(AOwner)
{
}
//---------------------------------------------------------------------