摘要:
批量改名烦恼全无! 全面支持正则表达式! 需要安装.NET Framework 2.0 预览: (点击查看完整) 已知问题: 1. 无中文版 2. MP3信息非英文不支持,可能为乱码 下载: http://www.zdxy.cn/tuff/tr.rar 阅读全文
摘要:
网上有好几种方法,其中最主流的就是DELL用户手册和1024 -4的那种,准确说都不是很准确。 其中有一种说法是这样的: 硬盘一般有255磁头,63扇区,故每柱面大小为: 512byte x 255 x 63=8225280bytes =7.84423828125 M 如果要分4G,那么要4x1024M=4096M 需要柱面数为4096÷7.84423828125=522.166 取整数... 阅读全文
摘要:
在sql2005中附加数据库时出现无法打开物理文件。操作系统错误 5:"5(拒绝访问。)" 出现该问题是由于用混合验证方式登录数据库造成的,只要将登录方式换为windows验证方式即可解决该问题。 阅读全文
摘要:
Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->protected void RepeaterPosts_ItemDataBound(object sender, RepeaterItemEventArgs e) { string... 阅读全文
摘要:
Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> public class Win32API { [DllImport("user32.dll")] public static extern ... 阅读全文
摘要:
获取 CursorPosition = comboBox1.SelectionStart; 设置 comboBox1.SelectionStart = 3; 设置光标位置在窗口打开时应放在OnShow(),因为要在Lode()之后,否则没有效果 注意: 光标的位置变化在MouseDown之前发生,MouseDown可以捕捉; 光标的位置变化在KeyDown之后发生,KeyDown捕捉不到; 阅读全文
摘要:
Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->System.Diagnostics.Process.Start("mailto:keyrratuff@163.com");//系统运行 阅读全文
摘要:
Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->//1 简易截图方法,不能截取透明窗体 Bitmap screenBitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Widt... 阅读全文
摘要:
搜索了一下,发现对于这种基本都使用girdview中的RowDataBound事件完成,下面看看网上提供的简单方法: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->protected void GridView1_RowDataBound(... 阅读全文
摘要:
在父级控件中先Add的优先级低,后被Add进来的优先高。 举例: this.tabPageBrowser.Controls.Add(this.listView1); this.tabPageBrowser.Controls.Add(this.panel4); 在tabPageBrowser中,panel4比listview4在Dock时优先级高。 阅读全文