-
串口小工具代码
VC编写的上位机串口通讯小工具,通过API CreateFile打开串口并通讯,对初学者有很大的帮助。
- 2023-03-23 23:20:04下载
- 积分:1
-
DEV C++实例源代码
dev c++n example source code
- 2022-03-18 00:05:29下载
- 积分: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
-
an .net Source code for send Email With Attachment
an .net Source code for send Email With Attachment
- 2022-09-06 02:10:03下载
- 积分:1
-
GDAL做影像校正 源码程序,提供给大家参考,
GDAL做影像校正 源码程序,提供给大家参考,-GDAL source code to do image correction procedures, provides us with reference
- 2022-03-22 22:31:48下载
- 积分:1
-
This function invokes the interrupt service routine whose address is pisr and...
This function invokes the interrupt service routine whose address is pisr and returns the results in the most general fashion.
- 2022-03-16 20:11:24下载
- 积分:1
-
使用MFC如何在Windows光标变化。
Use MFC to show how to change the cursor in windows.
- 2022-02-01 08:04:50下载
- 积分:1
-
实例(几个c的小游戏)
实例(几个c的小游戏)-Example (c several small game)
- 2022-02-20 03:26:28下载
- 积分:1
-
代码grenerate
code grenerate
- 2022-03-18 21:18:11下载
- 积分:1
-
获取windows的版本号及运行模式,VC++实现,测试通过
获取windows的版本号及运行模式,VC++实现,测试通过-Windows to obtain the version number and operating mode, VC++ to achieve, the test
- 2023-04-30 19:35:03下载
- 积分:1