-
Notifications
You must be signed in to change notification settings - Fork 0
/
EthernetAdapterSelectionFrm.h
33 lines (32 loc) · 1.23 KB
/
EthernetAdapterSelectionFrm.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
28
29
30
31
32
33
//---------------------------------------------------------------------------
#ifndef EthernetAdapterSelectionFrmH
#define EthernetAdapterSelectionFrmH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "cspin.h"
//---------------------------------------------------------------------------
class TEthernetAdapterSelectionForm : public TForm
{
__published: // IDE-managed Components
TGroupBox *EthernetGroupBox;
TComboBox *AdapterComboBox;
TButton *AboutButton;
TButton *OpenButton;
TGroupBox *TCPIPGroupBox;
TEdit *URLEdit;
TRadioButton *EthernetRadioButton;
TRadioButton *TCPIPRadioButton;
TCSpinEdit *CSpinEdit1;
void __fastcall TCPIPRadioButtonClick(TObject *Sender);
void __fastcall EthernetRadioButtonClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TEthernetAdapterSelectionForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TEthernetAdapterSelectionForm *EthernetAdapterSelectionForm;
//---------------------------------------------------------------------------
#endif