⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testsms.~cpp

📁 GSM 模块软件开发包 开发包说明 开发包基于GSM模块开发
💻 ~CPP
字号:
{
 * TestSMS.bpr
 * C++Builder Example constructed upon AscendSMS.dll
 * Hangzhou Ascend Wireless Team
 * Copyright (c) 2001-2003 Ascend Software Technology, Co.,Ltd.
 * The Initial Developer of the Original Code is Ascend Software Technology, Co.,Ltd.
 * Version 1.0
 * ZhuJun
 * 11/23/2001
 }

//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop
USERES("TestSMS.res");
USEFORM("Main.cpp", FrmMain);
USELIB("AscendSMS.lib");
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
	try
	{
		Application->Initialize();
		Application->CreateForm(__classid(TFrmMain), &FrmMain);
		Application->Run();
	}
	catch (Exception &exception)
	{
		Application->ShowException(&exception);
	}
	return 0;
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -