30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef DlgQueImprimirH
|
|
#define DlgQueImprimirH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TDlgImprimir : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TRadioGroup *RadioGroup1;
|
|
TButton *Button1;
|
|
TButton *Button2;
|
|
TCheckBox *CheckBox1;
|
|
void __fastcall Button2Click(TObject *Sender);
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
void __fastcall RadioGroup1Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TDlgImprimir(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TDlgImprimir *DlgImprimir;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|