-
VC++6.0实现ListCtrl列表控件拖放、整栏选择和显示网格
VC++6.0实现列表控件的扩展风格——拖放、整栏选择和显示网格等功能,通过这个源代码你可以熟悉VC中的ListCtrl列表控件的多种用法,运行效果如示例截图所示,部分代码如下:
DWORD liststyle=m_ctlList.GetExtendedStyle();//获取列表控件的扩展风格m_ctlList.SetExtendedStyle(liststyle|LVS_EX_HEADERDRAGDROP|LVS_EX_FULLROWSELECT|LVS_EX_GRIDLINES);//设置列表控件的新扩展风格
m_pImageList.Create(16, 16, ILC_COLOR, 2, 2);//创建图像列表
CBitmap bm;
bm.LoadBitmap(IDB_BITMAP1);//载入Bitmap资源
m_pImageList.Add(&bm, RGB(0, 0, 0));//添加到图像列表
bm.DeleteObject();
bm.LoadBitmap(IDB_BITMAP2);
m_pImageList.Add(&bm, RGB(0, 0, 0));
//初始化列表视
m_ctlList.SetImageList(&m_pImageList,LVSIL_SMALL);//设置ImageList
CString Field[2]={"性别","姓名"};//列表视的表头
for(int j=0;j
- 2023-02-22 08:35:03下载
- 积分:1
-
Cfoundation
这个是C语言初入门的资料,很有用的,值得一看(
The introduction at the beginning of the C language data, is very useful, it s worth a look)
- 2013-11-05 22:16:00下载
- 积分:1
-
c_language_example_of_the_essence_of_220_cases
<c语言实例精粹220例>的所有实例内容,每个例子均有源代码及执行文件(<C language example of the essence of 220 cases> all instances of the content of the source code for each example and the implementation of the documents are)
- 2010-05-08 17:42:40下载
- 积分:1
-
chapter7
C语言高级编程及实例剖析/王为青, 刘变红编著
ISBN号: 978-7-115-15423-1
出版发行项: 北京-人民邮电出版社 2007
光盘内容
附注项: 本书结合实例,深入浅出地介绍了C语言在主要应用领域的编程技术。全书共9章,分别为内存管理、文本屏幕界面设计、文件高级操作、图形图象、中断、通信技术、基本总线接口编程等。
附注项: C语言程序设计人员。
(C high-level programming language and examples of analysis/Wang Qing, Liu red for the ISBN number: 978-7-115-15423-1 published items: Beijing- People' s Posts & Telecom Press, 2007 CD-ROM of the contents of note: the book with examples, to learn more on the C language applications in the main programming. 9 book chapters, respectively, memory management, text-screen interface design, documentation of the advanced operators, graphic images, interruption, communications technology, such as the basic bus interface programming. Note item: C language programmers.)
- 2009-04-16 14:16:14下载
- 积分:1
-
VC管理系统
VC写的宾馆管理系统,适合毕业设计,
- 2022-05-17 08:20:16下载
- 积分:1
-
RM---C-Traps-and-Pit-falls
说明: c语言中陷阱与缺陷部分。感觉C语言中的一些不足和容易出线的错误。适合初学者(c traps and defects in some of the language. C language in the sense of a number of shortcomings and errors easier to qualify. For beginners)
- 2011-02-28 10:41:37下载
- 积分:1
-
vc在控件上画图
使用vc在控件上,进行绘图,可以对vc的控件机制有很深入的了解,以及学习对画图的方法的掌握,适合初学者学习使用,也可以为开发人员做为参考使用
- 2022-01-25 18:09:16下载
- 积分:1
-
Addison Wesley - Applied C++ Techniques for Buildi
如何快速有效的开发高质量代码,是每个程序员的梦想,看看吧,对你有帮助(how rapid and effective development of high-quality code that is the dream of every programmer, let's see it, and for your help)
- 2005-02-04 10:23:28下载
- 积分:1
-
quicksort
说明: Quick Sort an implementation in c++language. may it help others in their projects
- 2019-12-14 19:12:38下载
- 积分:1
-
VC++ 6.0 启动画面编程实例
VC++ 6.0 启动画面编程实例,现在这种软件启动方式比较常见了,打开软件 后,先显示一个启动画面,同时程序开始载入,显示进度条,本例子我觉得演示的挺好,源代码编译环境:vc++6.0,运行截图:请参见测试截图。
- 2022-03-18 03:56:27下载
- 积分:1