-
可以飘在ppc屏幕上的透明时钟,源码实现基本功能,只是没有美化。...
可以飘在ppc屏幕上的透明时钟,源码实现基本功能,只是没有美化。-Ppc can float in the transparent on-screen clock, source realize the basic functions, but no landscaping.
- 2022-07-12 08:17:21下载
- 积分:1
-
关于windriver驱动USB的教程,英文版,其中有stream传输模式
关于windriver驱动USB的教程,英文版,其中有stream传输模式-About windriver Drive USB, tutorials, in English, which stream transmission mode
- 2023-04-24 06:50:03下载
- 积分:1
-
开源的压缩软件,效率高速度快,非常值得学习
开源的压缩软件,效率高速度快,非常值得学习-Open source compression software, the efficiency of high-speed fast, very worthy of study
- 2022-01-28 18:57:03下载
- 积分:1
-
A written using visual basic to change the color of the text of the procedures
一个用visual basic写的能够改变文字的颜色的程序-A written using visual basic to change the color of the text of the procedures
- 2023-01-09 10:50:03下载
- 积分:1
-
用C++实现的贪吃蛇游戏程序,对游戏的设计思路有比较详细的讲解。...
用C++实现的贪吃蛇游戏程序,对游戏的设计思路有比较详细的讲解。-no
- 2022-08-13 05:14:07下载
- 积分:1
-
智能小车
st,32f407作为控制器来驱动小车,采用pwm方式控制
- 2022-02-02 00:19:25下载
- 积分:1
-
坐标反算
Dim pb As Double Dim ds As Double Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim x1 As Double Dim y1 As Double Dim x2 As Double Dim y2 As Double "定义起点和终点坐标为双精度浮点型 Dim s As Double "定义距离为双精度浮点型 Dim d As Integer "定义度为整形 Dim
- 2022-02-13 07:00:43下载
- 积分:1
-
基于c语言开发的40KHz超声波产生与发射程序,适用于51系列单片机...
基于c语言开发的40KHz超声波产生与发射程序,适用于51系列单片机-C-based languages have developed and launched 40KHz ultrasonic procedures, applicable to 51 Series Single Chip
- 2022-03-12 23:02:54下载
- 积分:1
-
用MFC编的一个小型文档编辑器,有字体、颜色公用框和每日一帖。...
用MFC编的一个小型文档编辑器,有字体、颜色公用框和每日一帖。-MFC series with a small document editor, has fonts, colors, utility boxes and one with daily.
- 2022-01-23 11:06:41下载
- 积分: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