摘要: C# winform 修改app.config配置文件的实现类 [code=C#] class Configuration { public static string fileName=System.IO.Path.GetFileName(Application.ExecutablePath); public static bool addSetting(string key,string va... 阅读全文
posted @ 2009-07-24 18:58 邓维 阅读(4874) 评论(0) 推荐(0) 编辑
摘要: web.config<configuration><appSettings><add key="DBConnectionString" value="server=localhost;database=web;uid=sa; pwd="/></appSettings></configuration>--------------------... 阅读全文
posted @ 2009-07-02 09:33 邓维 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 解决方案:用户 'sa' 登录失败。原因: 未与信任 SQL Server 连接相关联。今天进行身份验证时,又遇到这个问题,所以将我的解决方案整理一下,供有同样遭遇的朋友分享:问题简述:用户 'sa' 登录失败。原因: 未与信任 SQL Server 连接相关联。说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。 异常详细... 阅读全文
posted @ 2009-07-01 22:07 邓维 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 转载于MSDN的task 模式智能客户端体系结构与设计指南David Hill、Brenton Webster、Edward A. Jezierski、Srinath Vasireddy 和 Mohammad Al-Sabt,Microsoft Corporation;Blaine Wastell,Ascentium Corporation;Jonathan Rasmusson 和 Paul Ga... 阅读全文
posted @ 2009-06-26 19:06 邓维 阅读(1313) 评论(0) 推荐(0) 编辑
摘要: http://support.microsoft.com/kb/302084/zh-cnusing Excel = Microsoft.Office.Interop.Excel;using System.Reflection; private void button1_Click(object sender, System.EventArgs e){Excel.Application oXL;Ex... 阅读全文
posted @ 2009-06-23 23:46 邓维 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 首先将excel.exe copy 到 ..\Microsoft Visual Studio .NET 2003\SDK\v1.1\Bin目录下利用.net 中带的工具在命令提示符下执行tlbimp excel.exe.这样就不会因为你的Excel是xp或2000的不同要去找不同的*.olb文件,还有一点就是因为在2000以后的版本中没有了excel9.olb这个文件了。通过执行tlbimp ex... 阅读全文
posted @ 2009-06-23 23:27 邓维 阅读(1535) 评论(0) 推荐(0) 编辑
摘要: http://support.microsoft.com/kb/306572/zh-cnPage_Load 事件中: // Create connection string variable. Modify the "Data Source"// parameter as appropriate for your environment.String sConnectionString = "Pr... 阅读全文
posted @ 2009-06-23 23:00 邓维 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 【分享】解决 找不到可安装的ISAM<!-- Inject Script Filtered --><!-- Inject Script Filtered -->主要还是Connection字符串的问题,请注意Data Source之间是否空格,Extended Properties是否书写正确。正确的格式如下:OleDbConnection cn = new OleDbCo... 阅读全文
posted @ 2009-06-23 22:57 邓维 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 研究了C#中数据类型之间的转换涉及的一些问题,希望大家给予意见!1、数据类型的类名这里讲的数据的类名指的是: Sytem.data.DbType对应的类型,我是这样理解的。类名 System中相对应的类型bool System.Boolean (布尔型,其值为 true 或者 false)char System.Char (字符型,占有两个字节,表示 1 个 Unicode 字符)byte Sys... 阅读全文
posted @ 2009-06-19 09:01 邓维 阅读(6624) 评论(0) 推荐(0) 编辑
摘要: 1、DateTime 数字型 以下是引用片段: System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 in... 阅读全文
posted @ 2009-06-03 17:13 邓维 阅读(161) 评论(0) 推荐(0) 编辑