📄 cbmain.h
字号:
/*****************************************************************************
* GSM SMS Routines
*
* Writen by Menghongwen@<menghongwen@smmail.cn>
*
* Dec., 2004 copyright YINHUA Technology, all right reserved
\****************************************************************************/
#ifndef cbMainH
#define cbMainH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include "cbGSMService.h"
#include "CSPIN.h"
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-managed Components
TTimer *TimerQ;
TScrollBox *ScrollBox1;
TListBox *lbMessage;
TPanel *Panel1;
TButton *btStart;
TButton *btStop;
TLabel *Label1;
TMemo *meMessage;
TSplitter *Splitter1;
TGroupBox *GroupBox1;
TEdit *edSendText;
TCSpinEdit *csCount;
TLabel *Label2;
TButton *btSend;
TLabel *Label3;
TLabel *Label4;
TEdit *edTo;
void __fastcall btStartClick(TObject *Sender);
void __fastcall btStopClick(TObject *Sender);
void __fastcall btSendClick(TObject *Sender);
void __fastcall TimerQTimer(TObject *Sender);
void __fastcall lbMessageClick(TObject *Sender);
private: // User declarations
TGSMService *pGSMService;
TSMSConfig __config;
public: // User declarations
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -