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

📄 jxc.cpp

📁 《进销存管理系统》是由C++ Builder和SQL2000开发的数据库系统
💻 CPP
字号:
//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop
USEFORM("Main.cpp", fmMain);
USEFORM("db.cpp", DataModule1); /* TDataModule: File Type */
USEFORM("GoodManage.cpp", fmGoodManage);
USEFORM("SupplyManage.cpp", fmSupplyManage);
USEFORM("CustomManage.cpp", fmCustomManage);
USEFORM("PurchaseManage.cpp", fmPurchaseManage);
USEFORM("login.cpp", fmLogin);
USEFORM("print.cpp", fmPrint);
USEFORM("SaleManage.cpp", fmSaleManage);
USEFORM("selectstore.cpp", fmSelectStore);
USEFORM("StoreQuery.cpp", fmStoreQuery);
USEFORM("Right.cpp", fmRightManage);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
    try
    {
         Application->Initialize();
         Application->Title = "进销存管理系统";
         Application->CreateForm(__classid(TDataModule1), &DataModule1);
         Application->CreateForm(__classid(TfmMain), &fmMain);
         Application->CreateForm(__classid(TfmPrint), &fmPrint);
         Application->Run();
    }
    catch (Exception &exception)
    {
         Application->ShowException(&exception);
    }
    return 0;
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

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