-
这是一本关于window编程的书籍,希望能够帮助更多的人得到进步与提升。...
这是一本关于window编程的书籍,希望能够帮助更多的人得到进步与提升。-This is a book on the programming window, hoping to help more people to be progress and upgrade.
- 2023-02-21 17:50:04下载
- 积分:1
-
进程调度模拟程序
进程调度模拟程序-优先权只是调度算法考虑的一个方面进程调度依据调度程序运行时,要在所有可运行状态 的进程中选择最值得运行的进程投入运行。-Process schedule simulation program-Priority is only one aspect of schedule algorithm,the goal is selecting the most valuable process to run among all of the ready process.
- 2022-11-18 06:20:02下载
- 积分:1
-
样本类实现读/写registrity。
Sample class to implement read/write registrity.
Represents values as array:
MyIntVar := MyReg.IntVal[ Value 1 ]
MyStrVar := MyReg.StrVal[ Value 2 ]
-Sample class to implement read/write registrity.
Represents values as array:
MyIntVar := MyReg.IntVal[ Value 1 ]
MyStrVar := MyReg.StrVal[ Value 2 ]
- 2022-03-05 02:58:14下载
- 积分:1
-
Have you noticed the cool ghost image that Windows Explorer produces when you st...
Have you noticed the cool ghost image that Windows Explorer produces when you start dragging files/folders from it? Well, I wanted to implement this in a C# project when dragging files between it and Windows Explorer. After a lot of Googling, I found out that there are three directions to start working on, as follows:
Using a "custom" cursor created from a MemoryStream initialized from an Image, as shown in this article.
Using the ImageList_BeginDrag and related APIs, as shown in this article: Dragging tree nodes in C#.
Using the IDragSourceHelper and IDropTargetHelper interfaces.
- 2022-03-05 15:47:46下载
- 积分: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
-
I wrote an integrator, when the competition could have been written to the schoo...
我写一个积分器,比赛时候用的,本来是给学校写的,结果他们没用,郁闷吧-I wrote an integrator, when the competition could have been written to the school, their useless, it depressed
- 2023-06-23 13:35:04下载
- 积分:1
-
pictocode,pic转换到code的小工具 相信有用的着的朋友,
pictocode,pic转换到code的小工具 相信有用的着的朋友,-pictocode, pic of the code conversion of small tools useful to think of a friend,
- 2022-02-21 10:43:00下载
- 积分:1
-
S3C2410的IIC测试程序有一定的参考价值!
s3c2410 IIC测试程序,有一定参考价值!-s3c2410 IIC testing procedures have a certain reference value!
- 2023-04-14 18:25:03下载
- 积分:1
-
delphi 动态设置ip地址
IP地址动态设置,可将IP地址保存至EXCEL中,打开程序后载入EXCEL文件,用户可选择对应的IP地址点击确认按钮后,便可应用。
- 2022-01-31 18:38:51下载
- 积分:1
-
子窗口编程的例子
子窗口编程的例子-Programming examples of sub-window
- 2022-12-30 09:55:03下载
- 积分:1