登录
首页 » Windows开发 » misc drivers for graphics, os cla

misc drivers for graphics, os cla

于 2022-03-29 发布 文件大小:453.21 kB
0 194
下载积分: 2 下载次数: 1

代码说明:

misc drivers for graphics, os cla-misc drivers for graphics, os class

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

发表评论

0 个回复

  • This article presents different ways of im plementing factories, each with their...
    This article presents different ways of implementing factories, each with their own advantages and disadvantages -This article presents different ways of im plementing factories, each with their own advantages and disadvantag es
    2022-12-21 21:15:03下载
    积分:1
  • 该程序计算组合的
    this program calculates combination s
    2022-05-28 00:28:40下载
    积分:1
  • 如何使用DocX 库在 .DOCX 文件中替换一列单词
    翻译  maninwest@Codeforge  作者:B. Clay Shannon@Codeproject使用 DocX 库替换 .docx 文件中的字任务我想替换英式英语的拼写为美式口语。例如, 替换 "colour" 为 "color", "centre" 为 "center", "plough" 为"plow", 等。我可以使用查找>替换来一个一个地替换,但是很麻烦。所以,我找到一个库 。为了使用这个 docx库,只需从 这里 下载(docx.dll)。在你的项目中添加到它的引用,然后添加此 using子句:using Novacode; 首先需要加载具有”错误"拼写的文档:string filename = string.Empty; DialogResult result = openFileDialog1.ShowDialog(); if (result == DialogResult.OK) { filename = openFileDialog1.FileName; } else { MessageBox.Show("No file selected - hasta la vista and Ciao, baby!"); return; } using (DocX document = DocX.Load(filename)) { document.ReplaceText("travelled", "traveled"); document.Save(); } 我们当然想以此完成所有词汇替换。首先,我们需要有一列单词,这样编码:  请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-01-25 21:24:19下载
    积分:1
  • 基于支持向量机(SVM)的网页分类器
    九十年代以来,Internet 以惊人的速度发展起来,它容纳了海量的各种类型的原始信息,包括文本信息、声音信息、图像信息等等。如何在浩若烟海而又纷繁芜杂的文本中掌握最有效的信息始终是信息处理的一大目标。基于人工智能技术的文本分类系统能依据文本的语义将大量的文本自动分门别类,从而更好地帮助人们把握文本信息。近年来,文本分类技术已经逐渐与搜索引擎、信息推送、信息过滤等信息处理技术相结合,有效地提高了信息服务的质量。自动文本分类就是对大量的自然语言文本按照一定的主题类别进行自动分类,它是自然语言处理的一个十分重要的问题。文本分类主要应用于信息检索,机器翻译,自动文摘,信息过滤,邮件分类等任务。文本分类的一个关键问题是特征词的选择问题及其权重分配。在本设计中,我们实现了一个基于支持向量机(SVM)的网页分类器,该分类器可自动采集网页,自动提取特征项,并按照训练好的分类模型进行分类,最终将网页信息保存到本地供用户检索。
    2022-07-15 09:17:58下载
    积分:1
  • 串口转TCP/IP 实用程序
    串口转TCP/IP 实用程序 程序的整体结构: 程序功能实现如下: 客户端 (CTcpSocket)转接程序(CSerialPort) 串口设备 对于每个CTcpSocket和CSerialPort对用一个CItem的结构进行管理,可以在配置文件里配置多个连接转发对。 程序中主要的类有:CSerialPort、CTcpSocket、CItem。可以把从串口收到的数据转发向数据套接字和调试套接字,而且可以写入日志文档。 程序配置文件(config.ini)说明: 1. [item1] #连接名称 2. TcpDataPort=9990 #数据端口 3. TcpDebugPort=9991 #调试端口
    2022-06-27 02:04:58下载
    积分:1
  • 宾馆客房管理系统 实现宾馆客房的预订、查询和结算等功能
    宾馆客房管理系统 实现宾馆客房的预订、查询和结算等功能-Hotel Room Management System implementation Hotel room reservations, inquiries and billing functions
    2022-07-02 16:48:53下载
    积分:1
  • VC 内部COM插件的编程实现
    VC 内部COM插件的编程实现--The programing of com plug-in in vc
    2022-07-10 08:42:51下载
    积分:1
  • 讨论Attribute的高级应用,代码演示了一个实际的例子:假设有一个订单处理系统,当一份订单提交的时候,系统检查库存,如果库存存量满足订单的数量,系统记录订单...
    讨论Attribute的高级应用,代码演示了一个实际的例子:假设有一个订单处理系统,当一份订单提交的时候,系统检查库存,如果库存存量满足订单的数量,系统记录订单处理记录,然后更新库存,如果库存存量低于订单的数量,系统做相应的记录,同时向库存管理员发送邮件。 大致介绍了.NET Framework的对象调用拦截的实现机制,目的是让大家对这种机制有一个认识,通过代码的实现,可以看到消息如何被处理的过程。-Attribute to discuss high-level application code to demonstrate a practical example: Suppose there is a order processing system, when an order when submitted, the system checks inventory, if the inventory stock to meet the number of orders, the system record deal with record orders, and then update Stock, if the inventory stock is lower than the number of orders, the system to do the appropriate records, at the same time send a message to the Inventory Manager. Generally introduced. NET Framework object call interception mechanism to realize the aim is to enable everyone to have an understanding of such a mechanism, through the realization of the code, you can see how the news process.
    2022-08-26 14:00:02下载
    积分:1
  • 是一个学习NTFS系统文件不错的资料,里面还有源代码,非常不错,不过资料是英文的,...
    是一个学习NTFS系统文件不错的资料,里面还有源代码,非常不错,不过资料是英文的,-NTFS system files is a learning good information, there is also the source code, very good, but the information is in English, hee hee
    2022-03-11 05:53:38下载
    积分:1
  • 航空摄影测量相对定向源代码
    航空摄影测量相对定向源代码-aerial photography to measure the relative orientation source code
    2022-07-25 04:49:03下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载