08 2013 档案

摘要:下面是实例的cs代码 public partial class frm_Main : Form { //使用Windows Api AnimateWindow [DllImport("user32.dll", EntryPoint = "AnimateWindow")] private static extern bool AnimateWindow(IntPtr handle, int ms, int flags); public const Int32 AW_HOR_POSITIVE = 0x00000001;//从左向右... 阅读全文
posted @ 2013-08-29 19:02 程序有Bug 阅读(3107) 评论(1) 推荐(0)
摘要:IE升级到10.0,VS2010启动调试时报“未能将脚本调试器附加到计算机..” 今天,在调试代码时,调试器弹出提示框,报:未能将脚本调试器附加到计算机XXX上的进程iexplore.exe . 已附加了一个调试器”。启动调试失败。 突然,想起想升级IE 到10,想到有可能是升级IE造成的。因为ie10启动的时候会加载两个iexplorer.exe进程。 解决办法:以管理员身份打开CMD,运行:win7(32位): regsvr32 "%ProgramFiles%\Internet Explorer\msdbg2.dll。win7(64位): regsvr32.exe "% 阅读全文
posted @ 2013-08-10 08:14 程序有Bug 阅读(269) 评论(0) 推荐(0)