-
A windows application that sends messages to achieve functions. Using regular ex...
一个windows应用程序,实现发送邮件的功能。用正则表达式验证用户输入的信息,当输入的信息符合要求时,才允许将邮件发送到邮件服务器。-A windows application that sends messages to achieve functions. Using regular expression validate user input information, the information to meet the requirements when the input only when the Allow messages to be sent to the mail server.
- 2022-07-12 15:09:40下载
- 积分:1
-
Optimization and Coordination of Damping Controls for Improving System Dynamic Performance
本文提出了一种全局优化方法
- 2023-08-16 11:25:03下载
- 积分:1
-
mpeg1的解码程序,希望对大家有用。有人做mp3解码的话可以多多交流...
mpeg1的解码程序,希望对大家有用。有人做mp3解码的话可以多多交流-I hope that The decoding program of mpeg1 is helpful to everbody ,and hope to discuss with someone who works on decoding the mp3.
- 2022-05-24 16:50:47下载
- 积分:1
-
"Microsoft Windows CE program design" book on the source code
《Microsoft Windows CE 程序设计》书上的源代码-"Microsoft Windows CE program design" book on the source code
- 2022-06-16 19:39:38下载
- 积分:1
-
Delphi下的AES,支持ECB、CBC等加密模式,输出base64或者HEX格式,和java端AES保持兼容(全部亲测通过)
- 2023-05-28 20:35:03下载
- 积分:1
-
排序,冒泡算法
一些简单的小程序。就是排序冒泡,算法,是用vc编译的c++程序,全部验证正确,亲身实验!
- 2022-02-21 04:57:58下载
- 积分:1
-
Create a shortcut to the class (source code). WScript.She used
一个创建快捷方式的类(源码).
用的是WScript.She-Create a shortcut to the class (source code). WScript.She used
- 2022-02-25 15:55:08下载
- 积分:1
-
编写能识别给定的程序设计语言的词法规则,输出单词流的识别程序。...
编写能识别给定的程序设计语言的词法规则,输出单词流的识别程序。-Prepared to identify a given programming language, lexical rules, the output word stream identification procedures.
- 2022-11-10 20:45:03下载
- 积分:1
-
sd card driver source code, support 4G, the hardware platform is a S3C2443
sd卡驱动源代码,支持4G,硬件平台是S3C2443
- 2023-01-12 06:15:03下载
- 积分: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