登录
首页 » Windows开发 » wince EVC 简单的图片浏览功能,自已随意扩展 支持 *.bmp *.jpg *.gif *.png 等等 // TODO: Add yo...

wince EVC 简单的图片浏览功能,自已随意扩展 支持 *.bmp *.jpg *.gif *.png 等等 // TODO: Add yo...

于 2023-04-14 发布 文件大小:20.14 kB
0 61
下载积分: 2 下载次数: 1

代码说明:

wince EVC 简单的图片浏览功能,自已随意扩展 支持 *.bmp *.jpg *.gif *.png 等等 // TODO: Add your control notification handler code here CString defFilter("选中其中一个文件|*.bmp *.jpg *.gif *.png") CFileDialog dlg(TRUE,NULL,NULL,OFN_ALLOWMULTISELECT,defFilter) if(dlg.DoModal()==IDOK){ PathName=dlg.GetPathName() }-wince EVC simple picture browsing, support the expansion of their own free*. bmp*. jpg*. gif*. png, etc.// TODO: Add your control notification handler code hereCString defFilter (

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • VB.NET student information system. Can search, add, delete function
    VB.NET学生信息系统。可以查找,增添,删除功能-VB.NET student information system. Can search, add, delete function
    2022-10-23 16:35:03下载
    积分:1
  • 物流ERP
    安装说明:1、上传到网站根目录. 2、用phpMyadmin导入数据库文件0766city.sql3、修改数据库链接文件 /application/config/database.php(记得不要用记事本修改,否则可能会出现验证码显示不了问题,建议用Notepad++)4、安装好了以后,登陆后台 帐号 admin 密码 jxc888888
    2022-06-26 08:52:54下载
    积分:1
  • 本程序可以通过简单的操作实现对串口的控制,想了解祥细内容可以从代码中得到帮助。...
    本程序可以通过简单的操作实现对串口的控制,想了解祥细内容可以从代码中得到帮助。-this procedure can be realized by a simple pair of Serial control, would like to know the contents from the wound code be helped.
    2022-07-17 23:16:46下载
    积分:1
  • 阿拉伯数字转化成大写: 如:123转化壹佰贰什叁
    阿拉伯数字转化成大写: 如:123转化壹佰贰什叁-Arabic numerals written into the university : If : 123 selected job even into San
    2023-03-24 02:00:03下载
    积分:1
  • solution of linear equations Ax = b SOR method of common procedures
    解线性方程组Ax=b的SOR方法的通用程序-solution of linear equations Ax = b SOR method of common procedures
    2022-03-21 05:41:20下载
    积分:1
  • C++必知必会 职业C++编程必备常识 初学者登堂入室的阶梯 c++界 20年的结晶...
    C++必知必会 职业C++编程必备常识 初学者登堂入室的阶梯 c++界 20年的结晶-C++ must be bound to know professional C++ programming for beginners a foothold in the ladder must have knowledge of c++ sector, the crystallization of 20 years
    2023-07-16 04:25:07下载
    积分:1
  • 在 DBMS 中,可以使用锁来控制多个程序对数据项的访问:当程序要访问数据项时,要给数据项上锁。如果它仅仅是读取数据项,则通常上共享锁,这样其它的事务也可以同时...
    在 DBMS 中,可以使用锁来控制多个程序对数据项的访问:当程序要访问数据项时,要给数据项上锁。如果它仅仅是读取数据项,则通常上共享锁,这样其它的事务也可以同时读取该数据项。而若此程序是要修改数据项,则会给它数据项上独占锁,此时其它程序也就不能再访问这个数据项了。 对于同一个数据项,若有不同的程序同时给一个数据项上锁,且其中至少有一个是独占锁时,就表示它们发生了冲突。当发生冲突时,加锁的请求就会被拒绝。 每个加锁请求包含三个元素:锁模式、事务标识符和数据项标识符。两个程序可以同时给数据项上锁,前提是它们没有冲突。 在早期开发阶段,你需要编写一个简单的锁管理程序来处理加锁请求。它使用以下的规则来处理各种请求: 若一个加锁请求与先前的加锁请求没有发生冲突,则 DBMS 许可这个加锁请求; 一旦允许了一个加锁请求,则它将永远锁定数据项,不会改变,也不会释放; 如果一个程序的加锁请求与已有的锁发生了冲突,则 DBMS 拒绝这个加锁请求; 如果一个程序的加锁请求被拒绝,则 DBMS 忽略由这个程序发出的后续所有加锁请求。-the DBMS can be used to control the number of locks on the data, of the visit : When the procedures to access data items, data items to give locked. If it is read-only data, usually sharing locks, such other matters can also read the data item. And if this procedure is to amend the data, it will give information on items exclusive lock, other programs at this time, it will not re-visit this item of data. For the same data, if a different procedure for a data item unlocked but at least there is an
    2022-07-12 16:39:28下载
    积分:1
  • 本文详细阐述了基于DirectShow核心框架的非线性编辑的基本原理,并提供了一个编辑的源代码,演示如何拼接两个音视频文件,实现视频过渡效果,并预览。...
    本文详细阐述了基于DirectShow核心框架的非线性编辑的基本原理,并提供了一个编辑的源代码,演示如何拼接两个音视频文件,实现视频过渡效果,并预览。-The principle of non-linear edit based on DirectShow core frame is explained detailedly in the paper, and the source code for edit is provided, to show that how to joint two audio/video documents, implement the video transition effect, and preview.
    2022-08-25 23:11:39下载
    积分:1
  • search procedures address, and modify, easy
    查找程序地址,并加以修改,使用方便,功能强大得软件!-search procedures address, and modify, easy-to-use, powerful in the software!
    2022-08-26 14:22:13下载
    积分:1
  • 用VC6扩展CButton类制作风格独特的按钮
    用VC6扩展CButton类制作风格独特的按钮-with VC6 expansion CButton category produced a unique style button
    2022-03-24 03:02:23下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 31今日下载