cbmain.h
来自「关于GPRS的c网络编程软件」· C头文件 代码 · 共 57 行
H
57 行
/*****************************************************************************
* 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 + =
减小字号Ctrl + -
显示快捷键?