看板 C_and_CPP 關於我們 聯絡資訊
開發平台(Platform): (Ex: VC++, GCC, Linux, ...) VC++ 6.0 問題(Question): #include "libxl.h" using namespace libxl; int main() { Book* book = xlCreateBook(); // xlCreateXMLBook() for xlsx if(book) { Sheet* sheet = book->addSheet(L"Sheet1"); if(sheet) { sheet->writeStr(2, 1, L"Hello, World !"); sheet->writeNum(3, 1, 1000); } book->save(L"example.xls"); book->release(); } return 0; } 請問在DEBUG時 出現cannot open include file: 'libxl.h' : No Such file or directory 還是有其他的存資料到excel方式?? -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.124.249.111 ※ 編輯: watson1988 來自: 140.124.249.111 (11/22 15:17) ※ 編輯: watson1988 來自: 140.124.249.111 (11/22 15:52)
iloveyouever:<>? 11/22 16:36
iloveyouever:不要理我qaq 11/22 16:37
Feis:你有裝 libxl ? 11/22 17:53
watson1988:沒有qq 11/22 18:11
Zephyr750:沒有.h檔?哪來的code?? 11/29 11:44