TPVwin/TpvProductosPrint1.h
2021-09-12 22:19:30 +02:00

40 lines
1.3 KiB
C++

//----------------------------------------------------------------------------
#ifndef TpvProductosPrint1H
#define TpvProductosPrint1H
//----------------------------------------------------------------------------
#include <vcl\ExtCtrls.hpp>
#include <vcl\Buttons.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Controls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\Graphics.hpp>
#include <vcl\Classes.hpp>
#include <vcl\SysUtils.hpp>
#include <vcl\Windows.hpp>
#include <vcl\System.hpp>
//----------------------------------------------------------------------------
class TInformesProducto : public TForm
{
__published:
TBevel *Bevel1;
TImage *Image1;
TRadioButton *RadioButton1;
TRadioButton *RadioButton2;
TRadioButton *RadioButton3;
TBitBtn *CancelBtn;
TBitBtn *OKBtn;
void __fastcall RadioButton1Click(TObject *Sender);
void __fastcall RadioButton2Click(TObject *Sender);
void __fastcall RadioButton3Click(TObject *Sender);
void __fastcall OKBtnClick(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
void __fastcall CancelBtnClick(TObject *Sender);
private:
public:
virtual __fastcall TInformesProducto(TComponent* AOwner);
};
//----------------------------------------------------------------------------
extern TInformesProducto *InformesProducto;
//----------------------------------------------------------------------------
#endif