Welcome![Sign In][Sign Up]
Location:
Search - ok类类库

Search list

[Windows DevelopCLink

Description: 超级链接效果的类CLink 选把所带的两个文件导入到工程中,关闭工程,删除工程下以CLW为 文件(类文件),打开工程,在打开类视图时会说找不到类库,是否要重建,当然要重建啦,不然做这么干么啊:-),为要实现效果的 STATIC 改名,在类向导中选择 Member Variable 找到 STATIC 的名字,增加一个变量 输入变量名,在Category中选择 Control ,Variable type中应该有一个CLink,选择它,编译工程,鼠标移上去看看是不是OK了。-hyperlinks effect of the election put CLink category brought into the two documents to the project, the closure of the project, delete under CLW works for the paper (like paper), opened works in the open category View will find that the class libraries, whether or not to rebuild, to rebuild -- of course, do not do so :-) Mody ah, in order to achieve results STATIC renamed, in Class Wizard choose Member Variable find STATIC name, an increase in variable input variable, and select the Control Category. Variable type should have a CLink, select it, compile, by moving the mouse up to see if this is OK.
Platform: | Size: 2449 | Author: 天雪 | Hits:

[SourceCode驱动开发

Description: 驱动开发环境搭建vs6.0+ddk 2600+windows xp+Driver Studio 3.2 2010-07-07 09:35 驱动开发环境之Windows XP DDK2600,VC++ 6.0, Driver Studio 3.2 神秘的驱动开发,神秘的WINDOWS内核,是什么把这些搞得这么神秘呢? 搭Windows驱动开发平台. 要安装的东西都有这些:在Windows XP的基础上,先装上VC++6.0,再装DDK2600(也就是DDK的XP版),最后装 Driver Studio 3.2。 1.首先装VC++ 6.0, 要装VC++6.0那是因为这个IDE式的环境你已经很熟悉,编译和连接的时候不要用各种命令行的命令,只要鼠标点点,就可以(当然啦,一些参数还是要填的)。具体怎么装我就不介绍了。 2.安装XP系统的DDK, DDK全称是叫Driver Development Kit,它提供4种驱动程序的编译环境,我们这种初学者一般是选Win XP Checked Build Enviorment。 ftp://202.113.29.4/ISO/M$/WinDDK/winxp_ddk.rar 这个是下载地址,我写这篇文章的时候这个链接还是通的,不知你看的时候通不通了,如果不通你可以联系我,我可以发给你。 安装的时候就没什么特别要注意的地方,唯一要记得的是记住要完整安装,把那些什么Samples全装上,对于我们这些初学者会很有用的。 3.安装Driver Studio, DriverStudio 是一套用来简化微软Windows 平台下设备驱动程序的开发,调试和测试的工具包。 对于学过Windows 编程的人我可以打个形象的比喻: DriverStudio中的DriverWorks,本质是“DDK类库”,使用C++类库封装的方法简化了NT Driver或者WDM驱动程序的开发,使用DriverWorks代替DDK开发,类似于使用MFC代替SDK开发Windows应用程序。 http://download2.77169.com/soft/Source/debug/200801/20071229SoftICExlDS3.2.1.zip 这个是下载地址。这个需要序列号和注册文件: http://www.4x4y.com/10257_CrackDown_Compuware.DriverStudio.v3.2.iNTERNAL.html 这个是序列号生成器和注册文件打包下载的地址。 2.安装和配置   软件的安装顺序:Windows XP --> VC6.0 --> WinXP_DDK -> DriverStudio3.2,如果顺序装错了,那么把DriverStudio3.2删除再重装就OK了。从网上找到库文件ntstrsafe.lib+csq.lib.rar,把解压出来的两个库文件拷贝到WinXP_DDK的安装目录下的库目录中(我的是C:WINDDK2600libwxpi386)。启动vc6,然后进行简单的配置:菜单DriverStudio菜单下的DDK Build Settings,在弹出的对话框中选择已经安装的DDK目录(比如我的是C:WINDDK2600),在Windows DDK compiler Options中选择"Enable only for Driver Studio"。 VC6.0-->Tools-->Options,点击"Directories"选项卡: 1)"“Show directories for:"下选择Include files,然后检查有没有包含ddk的头文件目录(我的是C:WINDDK2600incwxp),如果没有则加上; 2)"“Show directories for:"下选择Library files,然后检查有没有包含ddk的库文件目录(我的是C:WINDDK2600libwxpi386),如果没有则加上;    注意:安装DDK时一定要把例子安装(建议你安装全部的模块),否则编译vdwlibs.dsw时会报如下的错: vdw_wdm.lib - 1 error(s), 0 warning(s) 然后打开引起错误的文件,发现: #error The file is from the DDK at srcwdmhidinc. Install DDK HID samples to install hidport.h. Or update INCLUDE path for hidport.h in the DDK! 这表明安装WinXP_DDK的时候没有安装实例。 3.编译适合本机使用的库文件   (1).启动VC6.0。开始-->所有程序-->Compuware DriveStudio-->Develop-->DDK Building Settings,确保“DDK Root Directory”下方的内容是ddk的安装目录(比如我的是C:WINDDK2600),然后点击下方的"Luanch Program"正式启动vc6的开发环境。   (2).进入菜单File-->Open Workspace(打开位于DriverStudio3.2安装目录的DriverWorksSourcevdwlibs.dsw)-->进入菜单Build-->batch Build,点击“Select x86"按钮只选中全部的32位库(我的电脑是32位的。注意:对于32位的电脑一定不要选中64位的库,否则后面编译会出错)-->点击按钮"Rebuild AlL”开始编译。   注:如果出现无法打开文件这类的错误,一般都是DDK Build Settings指向不对,或安装顺序有误,或者你在32位机器上选中了64位库。 4.编译一个DriverStudio自带的实例   (1)"启动vc6,点击菜单File-->Open Workspace,打开项目文件C:Program FilesCompuwareDriverStudioDriverWorksExampleswdmhellowdmHelloWdm.dsw,然后编译,如果没有报错,那说明安装和配置成功。但请你别高兴的太早,开发环境安装配置成功只是万里长城的第一步,剩下的你就是要理解驱动模块的架构和具体的代码编写了。 5.使用Driver wizard生成驱动程序框架   (1).在VC6.0的界面下,点击菜单DriverStudio-->Driver wizard,此后系统会一步一步引导你完成设置,最后自动生产的驱动程序框架。   (2).设置好后将生成驱动文件,然后用VC6.0进行编译:进行Build菜单,Rebuild AlL将生成.sys文件,说明驱动模块编译成功!   注:如果出现无法打开ntstrsafe.lib的错误,说明系统缺少这个库文件,参照上面的方法补上这个库文件,或者进入菜单Project-->Settings,鼠标点击左边方框里的最上面一行,然后右边"Project Option"下的ntstrsafe.lib并删除它。 本文是转来的,经过我的验证可以搭建成功。有些软件下载可能需要到其他地方下载。希望各位开发的兄弟姐妹Enjoy yourself.
Platform: | Size: 64512 | Author: cdliqu@163.com | Hits:

[SMS手机短信收发程序成

Description: 用vc编写的发送手机短信系统。经典的手机短信收发程序,可直接将需要的类加人自己的工程中,调用其中的函数就OK了-with vc prepared to send SMS to the system. Classic SMS transceiver procedures, which will require the direct category and increase their project, which called on the function OK
Platform: | Size: 2224128 | Author: 徐文莲 | Hits:

[Windows DevelopCLink

Description: 超级链接效果的类CLink 选把所带的两个文件导入到工程中,关闭工程,删除工程下以CLW为 文件(类文件),打开工程,在打开类视图时会说找不到类库,是否要重建,当然要重建啦,不然做这么干么啊:-),为要实现效果的 STATIC 改名,在类向导中选择 Member Variable 找到 STATIC 的名字,增加一个变量 输入变量名,在Category中选择 Control ,Variable type中应该有一个CLink,选择它,编译工程,鼠标移上去看看是不是OK了。-hyperlinks effect of the election put CLink category brought into the two documents to the project, the closure of the project, delete under CLW works for the paper (like paper), opened works in the open category View will find that the class libraries, whether or not to rebuild, to rebuild-- of course, do not do so :-) Mody ah, in order to achieve results STATIC renamed, in Class Wizard choose Member Variable find STATIC name, an increase in variable input variable, and select the Control Category. Variable type should have a CLink, select it, compile, by moving the mouse up to see if this is OK.
Platform: | Size: 3072 | Author: 天雪 | Hits:

[VC/MFCxielou

Description: Q: 我应该怎样处理内存泄漏? A: 很简单,只要写“不漏”的代码就完事了啊。显然,如果你的代码到处是new、delete、指针运算,那你想让它“不漏”都难。不管你有多么小心谨慎,君为人,非神也,错误在所难免。最终你会被自己越来越复杂的代码逼疯的——你将投身于与内存泄漏的奋斗之中,对bug们不离不弃,直至山峰没有棱角,地球不再转动。而能让你避免这样困境的技巧也不复杂:你只要倚重隐含在幕后的分配机制——构造和析构,让C++的强大的类系统来助你一臂之力就OK了。标准库中的那些容器就是很好的实例。它们让你不必化费大量的时间精力也能轻松惬意地管理内存。我们来看看下面的示例代码——设想一下,如果没有了string和vector,世界将会怎样?如果不用它们,你能第一次就写出毫无内存错误的同样功能代码吗?-err
Platform: | Size: 2048 | Author: 方副 | Hits:

[JSP/Javajxl

Description: 通过java操作excel表格的工具类库   支持Excel 95-2000的所有版本   生成Excel 2000标准格式   支持字体、数字、日期操作   能够修饰单元格属性   支持图像和图表   应该说以上功能已经能够大致满足我们的需要。最关键的是这套API是纯Java的,并不依赖Windows系统,即使运行在Linux下,它同样能够正确的处理Excel文件。另外需要说明的是,这套API对图形和图表的支持很有限,而且仅仅识别PNG格式。   搭建环境   将下载后的文件解包,得到jxl.jar,放入classpath,安装就完成了。   (很大总是不能很好的加载,我想补充一下:把你下载好的JXL.JAR包放入D:\JAVA\jre\lib\ext中(我的是JDK1.6)就OK了。我相信在配置TOMCAT时也需要把相关的三个包放到这里面。)-Tools to operate the excel table through java class library supports all versions of Excel 95-2000 generate Excel 2000 format support fonts, numbers, dates, the operation can be modified cell properties support images and charts should be said that the above functions have been able to substantially meet our needs. The key is set API is a pure Java, does not rely on a Windows system, even if running under Linux, it is also able to correct handling Excel files. Also need to note is that this set of API support for graphics and charts very limited, and only understands the PNG format. Unpack the file after the build environment to download be jxl.jar, add the classpath, the installation is complete. (Much is not always a good load, I would like to add: you download good JXL.JAR package into the D: \ Java \ jre \ lib \ ext (I JDK1.6) the OK. I believe that to configure TOMCAT three packages need to be put in there.)
Platform: | Size: 3141632 | Author: 陈明 | Hits:

[SymbianMusicPlayer

Description: 用S60 Touch UI API创建自定义音乐播放器 Contents 1 概述 2 用到哪些API和为什么要用 3 创建音乐播放器核心工具类 3.1 AudioPlayer.h 3.2 AudioPlayer.cpp 4 按钮资源 5 工具条资源 6 触笔弹出菜单资源 7 用S60 Touch UI API实现音乐播放器 7.1 MusicPlayerAppView.h 7.2 MusicPlayerAppView.cpp 8 处理Long Tap Detection 8.1 从HandlePointerEventL函数传递事件到LongTap Detection 8.2 处理Long Tap Detection事件 9 处理触笔弹出菜(Stylus Popup Menu)单命令 10 销毁 11 有用的函数 11.1 Generic Button API 11.2 LongTapDetector API 11.3 Stylus Popup List API 11.4 MAknToolbarObserver 11.5 MAknLongTapDetectorCallBack 11.6 MCoeControlObserver 12 关键点 12.1 头文件 12.2 类 12.3 库文件 13 样例应用源代码下载 概述 我们将学习不同的S60 Touch UI API来创建自定义音乐播放器。你可以扩展它添加更多的功能。这里,本文使用了Generic Button API, Toolbar API, Stylus Popup List API 和 LongTapDetector API,使你能了解到如何利用这些丰富API集来创建广阔的应用程序。 -is ok
Platform: | Size: 50176 | Author: yang | Hits:

[OtherEX

Description: 可以在游戏中直接使用的栈,C++.将文件直接放在类库中,使用的时候调用就Ok了-Can be used directly in the game stack, C++. The files directly on the library, the use of the time a call to Ok
Platform: | Size: 111616 | Author: 永生猫 | Hits:

[JSP/Javaok

Description: 演示程序为计算机和用户的对话形式执行,即在计算机的终端显示图形界面的文档编辑器,然后用户就可以实现编辑,保存等像记事本一样的功能。 (1)打开以有文件,保存编辑文件,退出编辑器并提醒保存; (2)查找编辑区中的字符串,用已知字符串替换查找的字符串; (3)显示文件的存取路径; (4)剪切,复制,粘贴,删除等; (5)改变文本区字体的颜色,字体大小和形状的功能; (6)关键字显示蓝色、类库类名显示红色。 -Demonstration program for the computer and the user' s dialogue in the form executed at the computer terminal that displays graphical document editor, and then users can edit, save, etc. the same function as Notepad. (1) opens to a file, save the edited file and exit the editor and to remind preservation (2) Find the string in the editing area, replace the string with a known search string (3) displays the file' s access path (4) cut, copy, paste, delete, etc. (5) Change the font color of the text area, font size and shape of the function (6) keyword displayed in blue, class library class name shown in red.
Platform: | Size: 7168 | Author: chavman | Hits:

[GUI DevelopVCPSQL

Description: VC+SQL 连接创建一个基于对话框的应用程序。 2.创建一个用来连接的ADO类库。系统菜单中Insert->New Class项,class type选择Generic Class 在Name后输入类名“AdoConn”,点OK。这样,在工程上自动生成AdoConn.h和AdoConn.cpp两个文件。 -VC+ SQL connection to create a dialog-based applications. 2 Create a class library used to connect the ADO. System menu Insert-> New Class entry, class type choose Generic Class enter the class name in the Name " AdoConn" , click OK. Thus, in engineering and AdoConn.cpp automatically generated AdoConn.h two files.
Platform: | Size: 8192 | Author: 林小婉 | Hits:

[MacOS developXMPPFrameworkkuangjia

Description: xmpp框架,大家可以直接使用,加入类库就OK啦-xmpp framework, we can directly use, adding libraries to OK
Platform: | Size: 1104896 | Author: leyi | Hits:

[Windows Developlog4cplus-1.2.1-rc2

Description: 比较好的日志类库,测试过,是OK的,计划以后都用这个库(Better log classes, tested, OK)
Platform: | Size: 1011712 | Author: shuixin0412 | Hits:

[Otherok金山播放器

Description: ok金山播放器类库,OK Jinshan player library(OK Jinshan player library)
Platform: | Size: 23552 | Author: 山水一方 | Hits:

[Compiled易安卓类库

Description: 易安卓 比较全的类库 安装上了都能用 DLNA投屏类库 MD_进度圈类库 ok2号工具类类库 ok360Camera类库 ok2018播放器类库 okTab特效类库 ok百度播放可视类库 Ok百度视频类库 ok表格类库 ok菜单特效类库 ok沉浸工具类库 ok抽屉菜单类库 ok打不死的小强类库 ok弹出提示类库 ok登录按钮类库 ok工具类类库 ok滚动选择类库 ok加血特效类库 ok涟漪特效类库 ok流式选择框类库 ok企鹅底部导航类库
Platform: | Size: 76620610 | Author: smardisk | Hits:

CodeBus www.codebus.net