-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion_port_COM.h
27 lines (26 loc) · 993 Bytes
/
question_port_COM.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//---------------------------------------------------------------------------
#ifndef question_port_COMH
#define question_port_COMH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
//---------------------------------------------------------------------------
class Tport_COM : public TForm
{
__published: // Composants gérés par l'EDI
TEdit *Edit_COM;
TButton *ButtonOK;
TMemo *MemoListe;
void __fastcall ButtonOKClick(TObject *Sender);
void __fastcall Edit_COMKeyPress(TObject *Sender, char &Key);
private: // Déclarations de l'utilisateur
public: // Déclarations de l'utilisateur
__fastcall Tport_COM(TComponent* Owner);
TStringList* availableComPorts;
};
//---------------------------------------------------------------------------
extern PACKAGE Tport_COM *port_COM;
//---------------------------------------------------------------------------
#endif