天天@BLOG

脖子越来越疼,脑袋越来越钝
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页

2006年8月31日

摘要: 有水晶报表的程序打包时还需要做的事项: 参考网站:http://community.csdn.net/Expert/topic/3770/3770083.xml?temp=.9249536 安装部署时,把水晶报表的msm打进去,注册到服务器要部署使用 Crystal Reports for Visual Studio .NET 2003 的程序; 首先:找到以下7个文件:Crystal_Dat... 阅读全文

posted @ 2006-08-31 10:50 天天在线 阅读(420) 评论(0) 推荐(0) 编辑

2006年8月23日

摘要: private void WriteLog(string getdata, string logMessage) { string strPath = null; FileStream fs = null; StreamWriter m_streamWriter = null; string logfolder... 阅读全文

posted @ 2006-08-23 21:47 天天在线 阅读(221) 评论(0) 推荐(0) 编辑

2006年8月18日

摘要: 创建Response.Cookies["userName"].Value = "patrick";Response.Cookies["userName"].Expires = DateTime.Now.AddDays(1); HttpCookie aCookie = new HttpCookie("lastVisit");aCookie.Value = DateTime.Now.ToString(... 阅读全文

posted @ 2006-08-18 10:01 天天在线 阅读(357) 评论(0) 推荐(0) 编辑

2006年8月17日

摘要: 如何动态调用DLL中类的方法以及属性 在C#中可以通过Assembly来动态加载DLL,然后由它创建类型,接着通过类型的InvokeMember方法来调用DLL中类的方法以及属性。 为了方便说明一下的方法,先说明一下DLL的代码,大致如下: using System; namespace clsTestDll { /// /// Summary description fo... 阅读全文

posted @ 2006-08-17 09:58 天天在线 阅读(773) 评论(0) 推荐(0) 编辑

2006年8月16日

摘要: C#委托,事件理解入门 (译稿) 目录 l 导论 l 什么是委托 l 事件的理解 l 事件 关键字 l 最后 导论 在学习C#中的委托和事件过程中,我读了许多文章来理解他们二者究竟是怎么一回事,以及如何使用他们,现在我将整个的理解过程陈述以下,我学到的每一方面,恐怕也是你们需要掌握的 :-)。 什... 阅读全文

posted @ 2006-08-16 23:15 天天在线 阅读(358) 评论(0) 推荐(0) 编辑

2006年8月9日

摘要: public static InputLanguage GetDesiredInputLanguage(string layoutName) { InputLanguageCollection ilc = InputLanguage.InstalledInputLanguages; foreach (InputLanguage il in ilc) { if (il.LayoutN... 阅读全文

posted @ 2006-08-09 09:50 天天在线 阅读(1025) 评论(0) 推荐(0) 编辑

2006年8月7日

摘要: public static string RestoreDatabase(string backfile) { ///杀死原来所有的数据库连接进程 /// SqlConnection conn=new SqlConnection (); conn.ConnectionString ="Data Source=.;Initial Catalog=master;User ID=sa... 阅读全文

posted @ 2006-08-07 16:37 天天在线 阅读(2608) 评论(1) 推荐(0) 编辑

2006年8月3日

摘要: using System.Runtime.InteropServices;[DllImport("wininet.dll")] private extern static bool InternetGetConnectedState(out int connectionDescription, int reservedValue); private static bool IsCo... 阅读全文

posted @ 2006-08-03 10:08 天天在线 阅读(493) 评论(0) 推荐(0) 编辑

2006年7月25日

摘要: 1 将系统时间转换成UNIX时间戳DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970,1,1));DateTime dtNow = DateTime.Parse(DateTime.Now.ToString());TimeSpan toNow = dtNow.Subtract(dtStart);strin... 阅读全文

posted @ 2006-07-25 14:42 天天在线 阅读(1203) 评论(1) 推荐(0) 编辑

2006年7月23日

摘要: using System;using System.Xml.Serialization;using System.Xml;using System.IO;using System.Text; namespace ConsoleApplication4{ /// /// Class1 的摘要说明。 /// class Customers { /// /// 应用程序的主入口点。 /// ... 阅读全文

posted @ 2006-07-23 09:22 天天在线 阅读(383) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
@忙碌,不代表有效率;方法,远胜于苦干