松鼠的博客

.NET-Form

数据库连接字符串

posted @ 2008-12-16 09:19 Xproer-松鼠 阅读(21) | 评论 (0)  编辑

c#获取文件md5值

posted @ 2008-10-23 09:16 Xproer-松鼠 阅读(432) | 评论 (1)  编辑

C#中路径相关操作

posted @ 2008-07-07 13:23 Xproer-松鼠 阅读(669) | 评论 (0)  编辑

通过HTTP协议使用断点继续

posted @ 2008-03-19 15:55 Xproer-松鼠 阅读(43) | 评论 (0)  编辑

AxShDocVw, SHDocVw, mshtml References

posted @ 2008-02-02 21:09 Xproer-松鼠 阅读(316) | 评论 (0)  编辑

[CSharp]数字格式化输出

posted @ 2008-01-30 17:57 Xproer-松鼠 阅读(201) | 评论 (0)  编辑

高亮语法编辑器

posted @ 2008-01-09 21:34 Xproer-松鼠 阅读(54) | 评论 (0)  编辑

ListBox坐标

posted @ 2008-01-08 10:30 Xproer-松鼠 阅读(50) | 评论 (0)  编辑

.NET加密解密函数

posted @ 2007-12-12 19:09 Xproer-松鼠 阅读(1386) | 评论 (0)  编辑

HTML文件转CHM文件类

posted @ 2007-11-28 11:14 Xproer-松鼠 阅读(298) | 评论 (0)  编辑

C#中的@符号的使用及注意事项
摘要: 编程中很多细节问题,我们都要十分的注意,要不一个小小的字母错误就能引起程序的无法运行,我自己就经历过这样的事情,对于编程中应该注意的问题,我们要经常的收集整理自己的一本手册,现在我们来讲下C#中的@符号的使用及注意事项。阅读全文

posted @ 2007-10-31 11:10 Xproer-松鼠 阅读(38) | 评论 (0)  编辑

关于RichTextBox 及 RTF格式文件的保存
摘要: C# Visual Studio 2005中RichTextBox保存文件为rtf格式

SaveFileDialog saveFile1 = new SaveFileDialog();
// Initialize the SaveFileDialog to specify the RTF extention for the file.
saveFile1.DefaultExt = "*.rtf";
saveFile1.Filter = "RTF Files|*.rtf";

// Determine whether the user selected a file name from the saveFileDialog.
if (saveFile1.ShowDialog() == System.Windows.Forms.DialogResult.OK &&
saveFile1.FileName.Length > 0)
{
// Save the conte阅读全文

posted @ 2007-10-30 18:21 Xproer-松鼠 阅读(483) | 评论 (0)  编辑

Visual C#创建和使用ActiveX组件

posted @ 2007-10-08 19:34 Xproer-松鼠 阅读(56) | 评论 (0)  编辑