当我创建一个项目 Visual Studio 2015 时,我可以使用这个 libxl 库,但是我无法在 Visual Studio qt gui 应用程序项目上使用该库。
我尝试一切我所知道的。
#include "stdafx.h"
#include "QtGuiApplication5.h"
#include <QtWidgets/QApplication>
#include <qapplication.h>
#include <qpushbutton.h>
#include <iostream>
#include <conio.h>
#include "libxl.h"
using namespacenclude <Qt libxl;
using namespace std;
int main(int argc, char *argv[])
{
Book* book = xlCreateBook();
if (book)
{
if (book->load(L"..\\Lab_Bus Datebase.xlsx"))
{
Sheet* sheet = book->getSheet(0);
if (sheet)
{
const wchar_t* s = sheet->readStr(2, 1);
if (s) std::wcout << s << std::endl << std::endl;
}
}
else
{
std::cout << "At first run generate !" << std::endl;
}
book->release();
}
std::cout << "\nPress any key to exit...";
_getch();
QApplication a(argc, argv);
QtGuiApplication5 w;
w.show();
return a.exec();
}
Link2019 错误:严重代码描述项目文件行抑制状态错误 LNK2019 未解析的外部符号 __imp_xlCreateBookW 在函数主 QtGuiApplication5 中引用
link1120 错误:严重性代码描述项目文件行抑制状态错误 LNK1120 1 未解决的外部 QtGuiApplication5 C