运行时出错 -2147217900(80040e14)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了运行时出错 -2147217900(80040e14)相关的知识,希望对你有一定的参考价值。
SQL server 阻止了对组件 ’Ad Hoc Dictributed Queries ‘ 的STATEMENT' open Rowset/open Datasource’的访问,因为此组件以作为服务器安全配置的一部分而被关闭。系统管理员可以通过使用sp-configure启用’’Ad Hoc Dictributed Queries 有关启用“Ad Hoc Dictributed Queries的详细信息,请参阅SQL server 联机丛书中的“外围应用配置器”
参考技术A 启用Ad Hoc Distributed Queries: exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'Ad Hoc Distributed Queries',1 reconfigure 使用完成后,关闭Ad Hoc Distributed Queries: exec sp_configure 'Ad Hoc Distributed Queries',0 reconfigure exec sp_configure 'show advanced options',0 reconfigure采纳哦本回答被提问者采纳
QT运行出错
我编写了一个 QT 应用程序界面 编译时没有出错 运行时出错了 我这里面也没有空指针啊
下面是 main.cpp
main.cpp
#include <QApplication>
#include <QSplashScreen>
#include "mainwindow.h"
int main(int argc,char **argv)
QApplication app(argc,argv);
QSplashScreen *splash = new QSplashScreen;
// ³ÌÐòÆô¶¯»Ãæ
splash -> setPixmap(QPixmap(":/images/splash.png"));
splash -> show();
Qt::Alignment topRignt = Qt::AlignRight |Qt::AlignTop;
splash -> showMessage(QObject::tr("The author : XuMaoWen"),
topRignt,Qt::white);
splash -> showMessage(QObject::tr("Setting up the main window..."),
topRignt,Qt::white);
MainWindow mainWin ;
splash -> showMessage(QObject::tr("Loading modules..."),
topRignt,Qt::white);
// loadModules();
splash -> showMessage(QObject::tr("Establishing connections..."),
topRignt,Qt::white);
// establishConnections();
mainWin.show();
splash -> finish(&mainWin);
delete splash;
return app.exec();
以上是关于运行时出错 -2147217900(80040e14)的主要内容,如果未能解决你的问题,请参考以下文章