博客园  :: 首页  :: 新随笔  :: 订阅 订阅  :: 管理
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 32 下一页

2012年7月10日

摘要: C# 执行bat批处理文件private void RunBat(string batPath){Process pro = new Process();FileInfo file = new FileInfo(batPath);pro.StartInfo.WorkingDirectory = file.Directory.FullName;pro.StartInfo.FileName = batPath;pro.StartInfo.CreateNoWindow = false;pro.Start();pro.WaitForExit();} 阅读全文

posted @ 2012-07-10 20:48 PHP-张工 阅读(14131) 评论(0) 推荐(1) 编辑

2012年6月29日

摘要: win2003 序列号备忘FJ8DH-TQPYG-9KFHQ-88CB2-Y7V3Y来源:http://www.jb51.net/os/windows/Win2003/24190.htmlFlex Builder 4 正式版 序列号 注册码1424-4118-1138-0912-4001-72221424-4012-2754-1802-2619-89281424-4766-4350-7925-0705-3050来源:http://hi.baidu.com/zjfree/blog/item/e7f382cbae3522f153664f40.html 阅读全文

posted @ 2012-06-29 15:28 PHP-张工 阅读(510) 评论(0) 推荐(0) 编辑

2012年6月26日

摘要: Spring.net 获取SQL连接字符串Spring.Context.IApplicationContext ctx = Spring.Context.Support.ContextRegistry.GetContext();IBatisNet.DataMapper.SqlMapper sqlMap = (IBatisNet.DataMapper.SqlMapper)ctx.GetObject("sqlMap");string conString = sqlMap.DataSource.ConnectionString;using (System.Data.SqlClie 阅读全文

posted @ 2012-06-26 16:03 PHP-张工 阅读(822) 评论(0) 推荐(0) 编辑

2012年5月14日

摘要: 使用随机线条拼图源码下载:http://files.cnblogs.com/zjfree/RandomPic.rar开发环境:WIN2003 + VS2005 + .NET2.0 + C# 阅读全文

posted @ 2012-05-14 16:58 PHP-张工 阅读(843) 评论(2) 推荐(0) 编辑

摘要: 彩虹颜色:红橙黄绿青蓝紫他们的RGB值是<div style="background-color:rgb(255,0,0);"></div><div style="background-color:rgb(255,122,0);"></div><div style="background-color:rgb(255,255,0);"></div><div style="background-color:rgb(0,255,0);"> 阅读全文

posted @ 2012-05-14 16:54 PHP-张工 阅读(1387) 评论(0) 推荐(0) 编辑

2012年5月9日

摘要: 绕着圆旋转递增旋转源码下载:http://files.cnblogs.com/zjfree/CirclePi.rar开发环境:WIN2003 + VS2005 + .NET2.0 + C# 阅读全文

posted @ 2012-05-09 13:35 PHP-张工 阅读(2012) 评论(0) 推荐(0) 编辑

摘要: double pi = 1;for (int i = 100; i > 0; i--){ pi = pi * ((double)i / (2 * i + 1)) + 2;} 阅读全文

posted @ 2012-05-09 13:24 PHP-张工 阅读(1547) 评论(0) 推荐(0) 编辑

2012年5月7日

摘要: 源码下载:http://files.cnblogs.com/zjfree/DrawCircle.rar开发环境:WIN2003 + VS2005 + .NET2.0 + C# 阅读全文

posted @ 2012-05-07 17:54 PHP-张工 阅读(451) 评论(0) 推荐(0) 编辑

2012年4月25日

摘要: SQLCE 是什么?它是类似于SQLite的单文件数据库。是微软提供的。参考资料:http://www.cnblogs.com/slmk/archive/2012/02/14/2350503.htmlMicrosoft SQL Server Compact 4.0 下载:http://www.microsoft.com/downloads/zh-cn/details.aspx?familyid=033cfb76-5382-44fb-bc7e-b3c8174832e2实例下载:http://files.cnblogs.com/zjfree/SQLCE_Test.rar开发环境:WIN2003 + 阅读全文

posted @ 2012-04-25 16:57 PHP-张工 阅读(455) 评论(0) 推荐(1) 编辑

2012年4月21日

摘要: 使用WebBrowser做一个撑满的winForm内容是指定的网站。从用户角度看,还以为是winForm本地程序。可以通过HTML和webBrowser通讯,还实现一些以前要借助浏览器插件才可以完成的功能。如:获取本地MAC地址、直接打印、执行本地命令等。实例中还包含了,获取本地硬件信息的方法。实例下载:http://files.cnblogs.com/zjfree/FormWeb.rar 阅读全文

posted @ 2012-04-21 17:34 PHP-张工 阅读(1082) 评论(1) 推荐(0) 编辑

上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 32 下一页