大约有 2,100 项符合查询结果(耗时:0.0100秒) [XML]

https://www.tsingfun.com/it/cpp/1234.html 

Excel RTD(Excel Real-Time Data)实时刷新数据技术 - C/C++ - 清泛网 - 专注C/C++及内核技术

...tData.cs中被使用。为了图简便,我就贴出MarketData.cs的全部代码。 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; using System.Configuration; using System.Timers; using System.Runtime.InteropServices; usi...
https://www.tsingfun.com/it/cpp/1300.html 

Win32 创建控件风格不是Win XP的解决方案 - C/C++ - 清泛网 - 专注C/C++及内核技术

...MANIFEST "TestCtrlStyle.manifest" 注意,有时候,加这样一句代码在资源文件中,链接时会出错: 1>Linking... 1>CVTRES : fatal error CVT1100: duplicate resource. type:MANIFEST, name:1, language:0x0409 1>LINK : fatal error LNK1123: failure during conve...
https://www.tsingfun.com/it/cpp/2034.html 

Linux编程中各种头文件 - C/C++ - 清泛网 - 专注C/C++及内核技术

...建议:在编写网络程序时,可以直接使用下面这段头文件代码 #include <unistd.h> #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <errno.h> #include <malloc.h> #in...
https://www.tsingfun.com/it/cpp/2040.html 

error C2780: \'void __cdecl std::sort(_RI,_RI,_Pr)\' : expects 3 argum...

...be 'class std::reverse_iterator<int *,int,int &,int *,int>' or 'int *' 代码如下: #include <iostream> #include <algorithm> #include <vector> using namespace std; void main() { vector<int> ivec1(10,1); sort(ivec1.begin(), ivec1.rend());//类型不匹配...
https://www.tsingfun.com/it/cpp/2096.html 

error C2664: “std::list::list(const std::allocator &)”: 不能将参数 1...

...的用户定义的转换运算符,或者无法调用该运算符 出错代码: #include <iostream> #include <vector> #include <list> using std::vector; using std::list; using std::cout; //容器初始化举例 int main() { vector<int> ivec;//使用默认构造函数 vector<int>...
https://www.tsingfun.com/it/cp... 

eclipse cdt 运行程序时添加依赖路径 - C/C++ - 清泛网 - 专注C/C++及内核技术

eclipse cdt 运行程序时添加依赖路径eclipse-cdt-ld-library-path我们知道Linux即使依赖和可执行文件在同一目录下,如果不使用 LD_LIBRARY_PATH 指定路径(即当前目录)的话,仍然会报加载不到依赖的错误。那么Eclipse CDT也是类似,...
https://www.tsingfun.com/it/cpp/2268.html 

Duilib非常强大的C++界面 - C/C++ - 清泛网 - 专注C/C++及内核技术

Duilib非常强大的C++界面Duilib 是一款强大的界面开发工具,可以将用户界面和处理逻辑彻底分离,极大地提高用户界面的开发效率。Duilib 是国内首个开源 的direct Duilib 是一款强大的界面开发工具,可以将用户界面和处理逻辑...
https://www.tsingfun.com/it/cpp/2183.html 

[精华]VC++对话框程序打印及打印预览的实现 - C/C++ - 清泛网 - 专注C/C++及内核技术

...RINT)和打印预览(标识符:ID_FILE_PRINT_PREVIEW),展开程序源代码,可以发现,是CVIEW类提供标准打印和打印预览菜单命令的消息处理函数: 设应用程序视图类为CMyView,展开MyView.cpp,其消息映象部分有如下两行: ON_COMMAND(ID_FILE_PRINT...
https://www.tsingfun.com/it/cpp/1286.html 

boost::filesystem指南 - C/C++ - 清泛网 - 专注C/C++及内核技术

boost::filesystem指南今天开始写作boost指南系列文章了,我个人比较熟的就是这个filesystem,当然要从这里先开始。这系列指南只是对初学的一个快速指南,没...今天开始写作boost指南系列文章了,我个人比较熟的就是这个files...
https://www.tsingfun.com/it/cpp/1871.html 

Boost.Asio的简单使用(Timer,Thread,Io_service类) - C/C++ - 清泛网 - 专注C/C++及内核技术

...时了. std::cout << "Hello, world! "; return 0; } 完整的代码: #include <iostream> #include <boost/asio.hpp> #include <boost/date_time/posix_time/posix_time.hpp> int main() { boost::asio::io_service io; boost::asio::deadline_timer t(io, boost::posix_time::seco...