大约有 47,000 项符合查询结果(耗时:0.0377秒) [XML]

https://www.tsingfun.com/it/cp... 

C++应用程序添加VBScript和JavaScript支持 - C/C++ - 泛网 - 专注IT技能提升

C++应用程序添加VBScript和JavaScript支持Adding-VBScript-and-JavaScript-support-in-Cpp-applC++ VBScript JavaScript 支持采用MSSCRIPT.OCX在C++程序中调用JavaScript及VBScript。效果截图: 源码点此下载。 Introduction I am always amazed to see how the script control (m...
https://www.tsingfun.com/it/cp... 

C++应用程序添加VBScript和JavaScript支持 - C/C++ - 泛网 - 专注IT技能提升

C++应用程序添加VBScript和JavaScript支持Adding-VBScript-and-JavaScript-support-in-Cpp-applC++ VBScript JavaScript 支持采用MSSCRIPT.OCX在C++程序中调用JavaScript及VBScript。效果截图: 源码点此下载。 Introduction I am always amazed to see how the script control (m...
https://www.tsingfun.com/ilife/life/837.html 

上班狗来算算 你离财务自由还差多少钱? - 杂谈 - 泛网 - 专注C/C++及内核技术

上班狗来算算 你离财务自由还差多少钱?现在已经不流行说我的梦想是赚大钱了,因为这种带着淡淡铜臭味的乡村梦想似乎不符合小伙伴们的装B需求,取而代之的是,我的梦想是实现财务...现在已经不流行说“我的梦想是赚大...
https://www.tsingfun.com/it/cpp/1342.html 

libcurl网络连接使用tcp/ip - C/C++ - 泛网 - 专注C/C++及内核技术

libcurl网络连接使用tcp/iplibcurl网络连接使用tcp ip,部分代码如下:CURL *curl;CURLcode res;const char *request = "GETas.xxxxE测试发送"; curl_socket_t sockfd; * socket * ...部分代码如下: CURL *curl; CURLcode res; const char *request = "GETas.xxxxE测试发送"; ...
https://www.tsingfun.com/it/cpp/1511.html 

std::string的截取字符串的方法 - C/C++ - 泛网 - 专注C/C++及内核技术

std::string的截取字符串的方法例如截取ip:port,代码如下:std::string ip("127.0.0.1:8888");int index = ip.find_last_of(':'); ipip.substr(0, index)....例如截取ip:port,代码如下: std::string ip("127.0.0.1:8888"); int index = ip.find_last_of(':'); //ip ip.substr(0, in...
https://www.tsingfun.com/it/cpp/2090.html 

error C2664: “find_char”: 不能将参数 1 从“const char [14]”转换为“...

error C2664: “find_char”: 不能将参数 1 从“const char [14]”转换为“std::string &出错代码:#include <iostream>#include <string>using std::cout;using std::endl;using std::string; const引用形参举例 非const...出错代码: #include <iostream> #include <string> using...
https://www.tsingfun.com/it/cpp/2172.html 

VC CTreeCtrl复选框checkbox的使用方法 - C/C++ - 泛网 - 专注C/C++及内核技术

VC CTreeCtrl复选框checkbox的使用方法1. 消息事件 (1)鼠标点击当前ITEM的CHECKBOX:引发NM_CLICK事件并传递TVHT_ONITEMSTATEICON。 (2)鼠标点击当前ITEM的TEXT:引发NM_CLICK...1. 消息事件 (1)鼠标点击当前ITEM的CHECKBOX:引发NM_CLICK事件并传递TVHT_ONITEM...
https://www.tsingfun.com/it/cpp/2263.html 

去掉std::string或std::wstring最后一个字符的几种简单方法 - C/C++ - 清泛...

去掉std::string或std::wstring最后一个字符的几种简单方法去掉std::string或std::wstring的最后一个字符:1、s pop_back(); 2、s erase(s end() - 1); 3、s = s substr(0, s length() - 1);去掉std::string或std::wstring的最后一个字符: // 方法1 s.pop_back(); // 从...
https://www.tsingfun.com/ilife/tech/1112.html 

当当网第三季度净亏损2810万元 同比由盈转亏 - 资讯 - 泛网 - 专注C/C++及内核技术

当当网第三季度净亏损2810万元 同比由盈转亏11月25日消息,当当网发布了截至2015年9月30日的2015财年第三季度未审计财报。财报显示,当当网第三季度总净营收为23.719亿元人民币(约合3.732亿美元),同比增长22.6%;净亏损为2810万元...
https://www.tsingfun.com/it/da... 

常用Sql - 数据库(内核) - 泛网 - 专注C/C++及内核技术

常用Sqlmysql:drop table if exists tablename;不能写成drop table tablename if exists tablename;mysql:建立索引SqlCREATE TABLE t...mysql:drop table if exists tablename; 不能写成 drop table tablename if exists tablename; mysql:建立索引Sql CREATE TABLE tablename ( `ID...