-
视图分割窗口
Views, Tabs and Splitters
- 2023-02-22 00:55:04下载
- 积分:1
-
file driver for xps356666
file driver for xps35-file driver for xps356666
- 2022-04-29 00:27:36下载
- 积分:1
-
(source code) automatic text processing branch, application ASCII high eight pro...
(源代码)文本自动分行处理,应用ASCII 码的高8位特性.避免汉字半个字分开的现象.可以用到自定义控件中去.需望能给大家帮助.-(source code) automatic text processing branch, application ASCII high eight properties. Avoid Chinese nonsense separate phenomenon. OCX can be used in China. We need to give hope to help.
- 2022-05-07 02:05:24下载
- 积分:1
-
open PCX格式文件.rar
open PCX格式文件.rar-open PCX format. Rar
- 2022-10-19 15:00:04下载
- 积分:1
-
测试键盘上每个健所对应的vb key 的ascii码
测试键盘上每个健所对应的vb key 的ascii码-Test the keyboard for each health vb key corresponding to the ascii code
- 2023-07-19 13:00:03下载
- 积分:1
-
Hebei Tai substantially a second semester, the curriculum design source, led dis...
河北工业大大一至大二学期,课程设计源码,led显示器,希望对大家有所帮助,特别是河北工业大学的同学。-Hebei Tai substantially a second semester, the curriculum design source, led display, I hope to help all of you, especially students of Hebei Industrial University.
- 2022-02-13 12:44:19下载
- 积分:1
-
这一实现Kruskal算法。这个项目发现了美国的最低成本。
This an implementation of Kruskal s algorithm. This program finds minimum cost using Kruskal algorithm.-This is an implementation of Kruskal s algorithm. This program finds minimum cost using Kruskal algorithm.
- 2022-05-10 12:14:13下载
- 积分:1
-
Fireworks wonderful collection of practical plug
Fireworks精彩实用插件集 站长看看啊-Fireworks wonderful collection of practical plug-head look ah
- 2022-01-25 16:50:13下载
- 积分:1
-
印刷电路板仿真操作系统
模拟操作系统的PCB操作-PCB simulation operating system operation
- 2022-08-19 02:21:58下载
- 积分: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