摘要: 一._tcstok函数 在MFC中,一个CString str=“ab ac dd PM”,怎么把他分开成ab和ac和dd和PM这四个字符串,类似string的split的功能? _tcstok声明头文件:<TCHAR.H> char* _tcstok( char* strToken, const 阅读全文
posted @ 2020-08-24 16:42 HunterK 阅读(744) 评论(0) 推荐(0)
摘要: 控制面板 --> 邮件 --> 添加账户过程中,更改账户设置 最重要的一步,参考如下图片 详细内容,请参考如下网址: http://www.officezhushou.com/outlook/1920.html 阅读全文
posted @ 2020-08-24 10:49 HunterK 阅读(308) 评论(0) 推荐(0)
摘要: 头文件:#include <cmath>fmod() 用来对浮点数进行取模(求余),其原型为: double fmod (double x,double y);注意:y不能为0; 例如:4.2对2取模位0.2 4.3对2.1取模位0.1 下面附上C++代码 #include<iostream> #i 阅读全文
posted @ 2020-06-01 10:07 HunterK 阅读(629) 评论(0) 推荐(0)
摘要: 解决方法: 登陆官网,下载最新无线网卡驱动 网址:https://think.lenovo.com.cn/support/driver/newdriversdownlist.aspx?categoryid=13252&CODEName=&SearchType=1&wherePage=1&Search 阅读全文
posted @ 2020-03-27 17:16 HunterK 阅读(406) 评论(0) 推荐(0)
摘要: 解决方法: 工程属性页 ->Debugging->Debugger Type, 设置为 'Managed Only' 环境: Visual Studio 2008 阅读全文
posted @ 2020-03-03 10:18 HunterK 阅读(260) 评论(0) 推荐(0)
摘要: #include <graphics.h> //引用图形库 #include <conio.h> void main() { initgraph(640, 480); //和TC有区别 circle(200, 200, 100); //画圆, 圆心(200,200),半径 100 getch(); 阅读全文
posted @ 2020-02-21 14:56 HunterK 阅读(2146) 评论(0) 推荐(0)
摘要: 请查看如下官网的回复 https://support.microsoft.com/zh-cn/help/2752583/you-cannot-change-the-location-of-the-offline-outlook-data-file-ost-in 阅读全文
posted @ 2020-01-02 13:45 HunterK 阅读(189) 评论(0) 推荐(0)
摘要: Mapped Drive Connection to Network Share May Be Lost Applies to: Microsoft Windows Server 2003 Standard Edition (32-bit x86)Microsoft Windows Server 2 阅读全文
posted @ 2019-11-14 18:03 HunterK 阅读(791) 评论(0) 推荐(0)
摘要: 重装WINDOWS7 64bit 系统后, 无法安装驱动, 显示 The procedure entry point AddDllDirectory could not be located in the dynamic link library KERNEL32.dll 解决方法: 安装补丁 KB 阅读全文
posted @ 2019-11-12 16:05 HunterK 阅读(3771) 评论(0) 推荐(0)
摘要: 解决方法: 通过PE系统,打开电脑C盘,使用windows\system32\config\regback下的system文件替换掉windows\system32\config下的system文件, 重启电脑即可。 阅读全文
posted @ 2019-11-04 15:38 HunterK 阅读(2102) 评论(0) 推荐(0)