首页上一页 1 下一页尾页 2 条记录 1/1页
VC++开发实战宝典 第19章例子 编译通过 运行出现runtime erro
发表在C语言图书答疑
2010-06-11
是否精华
是
否
版块置顶:
是
否
BOOL CPersonApp::InitInstance()
{
AfxEnableControlContainer();
#ifdef _AFXDLL
Enable3dControls();
#else
Enable3dControlsStatic();
#endif
LoadSkin();
BOOL bCon = GetConnection()->Open(GetConnection()->GetSQLConStr("127.0.0.1","tb_person"));
上述代码中1. LoadSkin();的作用是什么?
2.BOOL bCon = GetConnection()->Open(GetConnection()->GetSQLConStr("127.0.0.1","tb_person"));
这段代码编译没有问题,不能运行,出现如题的报错?是何原因,请教。
{
AfxEnableControlContainer();
#ifdef _AFXDLL
Enable3dControls();
#else
Enable3dControlsStatic();
#endif
LoadSkin();
BOOL bCon = GetConnection()->Open(GetConnection()->GetSQLConStr("127.0.0.1","tb_person"));
上述代码中1. LoadSkin();的作用是什么?
2.BOOL bCon = GetConnection()->Open(GetConnection()->GetSQLConStr("127.0.0.1","tb_person"));
这段代码编译没有问题,不能运行,出现如题的报错?是何原因,请教。