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

📄 setupdb.cpp

📁 该程序实现了SQL数据库文件(mdf,ldf)的自动安装,备份及还原.
💻 CPP
字号:
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop

extern LPSTR cmdStr;
//---------------------------------------------------------------------------
USEFORM("MainForm.cpp", MainInstallForm);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPreInstance, LPSTR lpszCommandLine, int cmdShow)
{
        try
        {
                 Application->Initialize();
                 cmdStr = lpszCommandLine;
                 Application->Title = "学费管理系统数据库备份/恢复工具";
                 Application->CreateForm(__classid(TMainInstallForm), &MainInstallForm);
                 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -