gprs_server.cpp
来自「GPRS上位机C++BUILDER源码 厂家内部资料」· C++ 代码 · 共 41 行
CPP
41 行
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "about.h"
//---------------------------------------------------------------------------
USEFORM("main.cpp", Form1);
USEFORM("ABOUT.CPP", AboutForm);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
AboutForm=new TAboutForm(Application);
AboutForm->ShowModal();
delete AboutForm;
Application->Initialize();
Application->Title = "LT8000系列上位机测试程序 Ver1.05";
Application->CreateForm(__classid(TForm1), &Form1);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
catch (...)
{
try
{
throw Exception("");
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
}
return 0;
}
//---------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?