上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 56 下一页

2018年6月15日

VC++ 使用MSSOAP访问WebService天气服务(客户端开发)

摘要: 绪论 本文介绍使用VC++编程实现访问天气Web服务的简单实例(例子来源于网络)。 Web天气服务 http://www.webxml.com.cn/WebServices/WeatherWebService.asmx 天气预报 Web 服务,数据每2.5小时左右自动更新一次,准确可靠。包括 340 阅读全文

posted @ 2018-06-15 13:36 我来乔23 阅读(1631) 评论(0) 推荐(0) 编辑

2018年6月14日

[转]各种编码ANSI、GB2312、GBK、GB18030、UNICODE以及UTF-8傻傻分不清!

摘要: 计算机编程中的编码一直是让新手非常头疼的问题,特别是 GBK、GB2312、UTF-8 这三个比较常见的网页编码的区别,更是让许多新手晕头转向,怎么解释也解释不清楚,看一遍貌似懂了,但实际使用的时候又是一脸懵逼,使用老是出错,乱码哎! 但是编码又是那么重要,特别在网页这一块。如果你打出来的不是乱码, 阅读全文

posted @ 2018-06-14 10:19 我来乔23 阅读(1968) 评论(0) 推荐(0) 编辑

Windows网络编程Internet Gopher了解下

摘要: Gopher:中文译“地鼠”,是迪士尼卡通人物之一(谷佛)。 英文原义:The Internet Gopher Protocol 中文释义:(RFC-1436)网际Gopher协议 该系统是在明尼苏达大学设计,并以该校的运动队“金色地鼠”(俚语:“去找”)来命名。在时间上,比Internet还要早几 阅读全文

posted @ 2018-06-14 10:00 我来乔23 阅读(445) 评论(0) 推荐(0) 编辑

2018年6月13日

Http post请求数据带中文参数问题

摘要: Http请求参数带中文参数时,如{"userName":"用户名123","password":"123456"} 请求返回:01-用户名密码错误 明明用户名以及密码都正确,为啥会不对呢?原来有可能是服务器编码问题,服务器一般是用UTF-8编码,需要对post的json字符串进行utf-8转码后才能 阅读全文

posted @ 2018-06-13 17:54 我来乔23 阅读(3209) 评论(0) 推荐(0) 编辑

2018年6月4日

编辑框添加灰色提示字(html+VC)

摘要: Html中添加灰色提示字,使用属性placeholder即可! <input type="text" placeholder="要显示的文字"> 但是,VC++实现这样的效果比较困难,但是可以借助ToolTipCtrl实现类似的效果: 1、对话框头文件中声明成员变量:CToolTipCtrl m_T 阅读全文

posted @ 2018-06-04 17:29 我来乔23 阅读(443) 评论(0) 推荐(0) 编辑

2018年6月1日

Error 2 error C2784: 'bool std::operator <(const std::_Tree<_Traits> &,const std::_Tree<_Traits> &)'

摘要: Error 2 error C2784: 'bool std::operator <(const std::_Tree<_Traits> &,const std::_Tree<_Traits> &)' : could not deduce template argument for 'const s 阅读全文

posted @ 2018-06-01 15:28 我来乔23 阅读(452) 评论(0) 推荐(0) 编辑

2018年5月30日

【转】图说设计模式

摘要: 图说设计模式:http://design-patterns.readthedocs.io/zh_CN/latest/index.html 阅读全文

posted @ 2018-05-30 17:05 我来乔23 阅读(229) 评论(0) 推荐(0) 编辑

2018年5月29日

fatal error C1010: unexpected end of file while looking for precompiled header. Did you forget to add '#include "stdafx.h"' to your source?

摘要: 解决方法:设置cpp文件的Precompiled Header属性设置为Not Using Precompiled Headers 阅读全文

posted @ 2018-05-29 15:46 我来乔23 阅读(408) 评论(0) 推荐(0) 编辑

2018年5月24日

CWorkBooks、CWorkBook、CWorkSheets、CWorkSheet、CRange

摘要: 我们使用VC++操作Excel,对于Excel编程来说肯定少不了要遇到六个最基本的类: CApplication、CWorkBook、CWorkBooks、CWorkSheet、CWorkSheets、CRange 下面我们来一一介绍一下这五个类,相信你掌握了这五个类后你对于Excel编程也会熟练很 阅读全文

posted @ 2018-05-24 16:17 我来乔23 阅读(1118) 评论(0) 推荐(0) 编辑

2018年5月23日

设计模式分类关系

摘要: 阅读全文

posted @ 2018-05-23 15:02 我来乔23 阅读(228) 评论(0) 推荐(0) 编辑

上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 56 下一页

导航