cdg123cdg 2016-09-02 11:12 采纳率: 0%
浏览 1043

帮忙看一下,这个如何解决,谢谢了

// ScienceManage.cpp : Defines the class behaviors for the application.
//

#include "stdafx.h"
#include "ScienceManage.h"
#include "ScienceManageDlg.h"
#include "Login.h"

#ifdef DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE
_;
#endif
_ConnectionPtr m_pConnection;
_CommandPtr m_pCommand;
_RecordsetPtr m_pRecordset;

/////////////////////////////////////////////////////////////////////////////
// CScienceManageApp

BEGIN_MESSAGE_MAP(CScienceManageApp, CWinApp)
//{{AFX_MSG_MAP(CScienceManageApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CScienceManageApp construction

CScienceManageApp::CScienceManageApp()
{
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CScienceManageApp object

CScienceManageApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CScienceManageApp initialization

BOOL CScienceManageApp::InitInstance()
{
AfxEnableControlContainer();
::CoInitialize(NULL);
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable, you should remove from the following
// the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CLogin dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
    // TODO: Place code here to handle when the dialog is
    //  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
    // TODO: Place code here to handle when the dialog is
    //  dismissed with Cancel
}
Connection();
// Since the dialog has been closed, return FALSE so that we exit the
//  application, rather than start the application's message pump.
return FALSE;

}

BOOL CScienceManageApp::Connection()
{
AfxOleInit();
try
{
m_pConnection.CreateInstance(__uuidof(Connection));
m_pConnection->ConnectionString="Provider = Microsoft.Jet.OLEDB.4.0;Data Source =Information.mdb";

m_pConnection->Open("","","",0);

}
catch(_com_error e)
{
CString str;
str.Format("连接数据库错误信息:%s",e.ErrorMessage());
::MessageBox(NULL,str,"提示信息",NULL);
return false;

}
    return 1;

}
错误是:ProjectManage\ScienceManage\ScienceManage.cpp(85) : error C2786: 'int (__thiscall CScienceManageApp::*)(void)' : invalid operand for __uuidof

  • 写回答

1条回答 默认 最新

  • threenewbee 2016-09-03 15:52
    关注

    看看你有没有引用msado15.dll

     #import "C:\Program Files\Common Files\System\ado\msado15.dll" no_namespace rename("EOF","adoEOF") rename("BOF","adoBOF")
    
    评论

报告相同问题?

悬赏问题

  • ¥15 slam rangenet++配置
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊