1 Star 0 Fork 0

chenyiliang/TimeProcess

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Project1.cpp 839 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenyiliang 提交于 2017-06-14 13:52 +08:00 . first commit
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include <tchar.h>
//---------------------------------------------------------------------------
USEFORM("Unit1.cpp", Form1);
//---------------------------------------------------------------------------
int WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int)
{
try
{
Application->Initialize();
Application->MainFormOnTaskBar = true;
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;
}
//---------------------------------------------------------------------------
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/OpenSourceWorkSpace/TimeProcess.git
git@gitee.com:OpenSourceWorkSpace/TimeProcess.git
OpenSourceWorkSpace
TimeProcess
TimeProcess
master

搜索帮助