USB接口ID卡读卡器oem软件/读写卡测试程序及源代码/c++builder源代码

 

 

详细代码如下:(如有疑问可13826029618进行咨询,荣士电子)

 

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

//广州荣士电子,定制13826029618 网址http://www.icmcu.com


#include
#pragma hdrstop
//---------------------------------------------------------------------------
USEFORM("Unit1.cpp", Form1);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
        try
        {
                 Application->Initialize();
                 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;
}
//---------------------------------------------------------------------------

 

 

你可能感兴趣的:(读卡器IT,源代码)