47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef SerieCfgH
|
|
#define SerieCfgH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <Buttons.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TSerieConf : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TBitBtn *aceptar;
|
|
TBitBtn *cancelar;
|
|
TComboBox *comPort;
|
|
TLabel *Label1;
|
|
TLabel *Label11;
|
|
TLabel *Label4;
|
|
TLabel *Label12;
|
|
TLabel *Label13;
|
|
TEdit *stopA;
|
|
TEdit *pariA;
|
|
TEdit *bitsA;
|
|
TEdit *baudiosA;
|
|
TEdit *baudiosD;
|
|
TEdit *bitsD;
|
|
TEdit *pariD;
|
|
TEdit *stopD;
|
|
TLabel *Label7;
|
|
TLabel *Label8;
|
|
TLabel *Label2;
|
|
TEdit *delayTime;
|
|
TCheckBox *ConvenioInverso;
|
|
TCheckBox *ATR;
|
|
void __fastcall cancelarClick(TObject *Sender);
|
|
void __fastcall aceptarClick(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TSerieConf(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TSerieConf *SerieConf;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|