-
dot NET Compact Framework Programming with Visual Basic dot NET Jun 2004 e
用visualbasic进行dot-NET紧凑框架编程2004年6月电子图书
- 2022-01-20 22:49:12下载
- 积分:1
-
vb模拟小球的弹跳运动,模仿的自由落体运动,可以将shape的形状做为小球,更逼真。...
vb模拟小球的弹跳运动,模仿的自由落体运动,可以将shape的形状做为小球,更逼真。-vb simulation of the bouncing ball movement, movement to imitate the free-fall, you can shape as the shape of the ball, more realistic.
- 2022-01-26 05:53:03下载
- 积分:1
-
以VB为Visual Studio 2005 rotatedtext源代码
用VB编写的Visual Studio 2005的RotatedText源代码
- 2023-06-28 04:20:03下载
- 积分:1
-
一个用C语言实现的八皇后问题演示程序
一个用C语言实现的八皇后问题演示程序-a C language of the Queen"s eight issues Demonstration Program
- 2022-01-26 05:59:31下载
- 积分:1
-
C++ based on the P2P real
基于c++的P2P的实时对话系统,欢迎大家下载-C++ based on the P2P real-time dialogue system, welcomed everyone to download! ! Thanks! !
- 2022-08-04 10:50:07下载
- 积分:1
-
Use of the dichotomy of the model grid, in the fringe Department to conduct vari...
利用二分法对模型进行网格划分,在边沿处进行变尺度划分。适用于电磁兼容领域。-Use of the dichotomy of the model grid, in the fringe Department to conduct variable metric division. Applicable to the field of electromagnetic compatibility.
- 2022-02-03 22:14:39下载
- 积分:1
-
世界程序获奖大赛,很好看,还不错,可以自己欣赏欣赏
世界程序获奖大赛,很好看,还不错,可以自己欣赏欣赏-Award-winning World Series program, good looking, quite good, you can enjoy the appreciation of their own
- 2023-07-17 12:30:04下载
- 积分: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
-
如何在程序里使用MS Office的源代码
如何在程序里使用MS Office的源代码-how to use the program MS Office source code
- 2022-04-14 18:31:01下载
- 积分:1
-
ACARS报文解析(串口调试助手)
程序使用C#开发,主要使用了串口通信,数据的存储使用了DataSet进行保存。程序的算法部分是用来解算民航客机上的ACARS报文,程序采用模块化编程,报文解析算法,CRC16校验算法,串口通信设置都设置成了相关的类,所以源代码适合做C#串口通信的进行编辑。
- 2022-08-21 09:53:57下载
- 积分:1