上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 56 下一页

2018年3月28日

Shell应用之遍历回收站RecycleBin

摘要: C++ Code 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 /******************************** 阅读全文

posted @ 2018-03-28 15:14 我来乔23 阅读(691) 评论(0) 推荐(1) 编辑

SHGetSpecialFolderPath用法

摘要: The SHGetSpecialFolderPath function retrieves the path of a special folder that is identified by its CSIDL. Syntax Parameters Return Values For Window 阅读全文

posted @ 2018-03-28 14:55 我来乔23 阅读(1803) 评论(0) 推荐(0) 编辑

Windows网络接口API函数

摘要: Windows提供了一套非常轻量级的网络函数,方便进行网络应用开发,整理出来供参考使用。 The following functions are used in Windows networking: Obsolete Functions The following function is prov 阅读全文

posted @ 2018-03-28 11:51 我来乔23 阅读(3893) 评论(0) 推荐(0) 编辑

CDialog与CDialogEx的区别联系

摘要: CDialogEx类 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 ///////////// 阅读全文

posted @ 2018-03-28 10:30 我来乔23 阅读(6632) 评论(0) 推荐(4) 编辑

2018年3月15日

C++ STL迭代器与索引相互转换

摘要: 0 前言 C++ STL提供了vector、list等模板容器,极大地方便了编程使用。 “遍历”是对容器使用的最常用的操作。 使用迭代器来遍历是最好最高效的遍历方法。 当然,对于有些容器的遍历除了使用迭代器,还可以使用传统的索引来遍历。 在实际编程中,需要迭代器和索引同时使用,混合编程,就难免会涉及 阅读全文

posted @ 2018-03-15 18:00 我来乔23 阅读(2321) 评论(0) 推荐(1) 编辑

2018年3月14日

VC++中CEdit控件实现回车换行

摘要: 1、通过回车Enter换行: 这里要有两个设置 <1>.将控件的属性设置为Mutilines->true; <2>.将控件的另一个属性设置为Want return->true. 水平和垂直滚动条设置: <1>水平滚动条,控件属性设置为:Horizontal Scroll->true <2>垂直滚动条 阅读全文

posted @ 2018-03-14 16:13 我来乔23 阅读(576) 评论(0) 推荐(0) 编辑

VS2008链接错误fatal error LNK1104: cannot open file '*.obj'

摘要: This particular issue is caused by specifying a dependency to a lib file that had spaces in its path. The path needs to be surrounded by quotes for th 阅读全文

posted @ 2018-03-14 11:04 我来乔23 阅读(755) 评论(0) 推荐(0) 编辑

2018年3月13日

VS2008设置快捷键Ctrl+W关闭当前打开的文本编辑器窗口

摘要: 好多友好的软件关闭多标签页的当前页时都有Ctrl+W的快捷键,如Chrome浏览器,使用起来还是很方便的。 但是作为程序员,使用VS2008时有时会打开好多C++或C#源文件,需要关闭某个源文件时你需要这样:右键->Close 这样的鼠标操作起来真的很费劲! 研究了下设置快捷键Ctrl+W的方式: 阅读全文

posted @ 2018-03-13 09:25 我来乔23 阅读(435) 评论(0) 推荐(0) 编辑

2018年3月9日

VC++分页打印实现

摘要: VC++分页打印实现: C++ Code 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 //打印对话框 DWORD dwFlags = PD_ALLPAGES | PD_ 阅读全文

posted @ 2018-03-09 15:16 我来乔23 阅读(727) 评论(0) 推荐(0) 编辑

2018年3月8日

CStringArray序列化处理

摘要: 开发中需要对CStringArray进行保存操作,涉及到序列化,特总结一下: 阅读全文

posted @ 2018-03-08 17:16 我来乔23 阅读(359) 评论(0) 推荐(0) 编辑

上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 56 下一页

导航