摘要: 最近我们团队完成了项目开发,要我做一个安装程序.以前从来没有进行过,哈哈^先花了半天学习,最后做了一个安装程序.但是出现在了一个问题,希望能得到高手的指教:在我安装在最后的关头出现了这样的错误:未将对象设置引用到对象的实例!安装程序又无法进行调试,找了好多次还是找不到哪里出现了问题.后面附上了安装类库的代码:我的解决方案:UI设计(1):UI设计(2):类库的代码有点长:usingSystem;usingSystem.IO;usingSystem.Data;usingSystem.Configuration.Install;usingSystem.DirectoryServices;usin.
阅读全文
摘要: [微软认证]MCP问题解答1.MCP认证的基本目标?由微软公司创建的MCP认证。自然与微软的产品有关。MCP认证的基本目标是:利用以科学方法确立的考题,一方面测试应考者对某一微软产品知识的了解深度以及操作掌握微软产品的技术熟练程度,另一方面也使应考者通过考试确实对解决实际问题有所帮助。随着IT产业专家队伍的扩大和对人才需求的增加,MCP认证也在逐渐升温。应试者个人可以通过认证确认自己的计算机软件知识掌握水平,微软公司也可以通过认证情况了解自己产品在世界各地的使用情况,同时,使用微软产品的企业在招聘相关产品的技术人才时,也有了一个统一的考察标准。2.MCP证书有几项?微软认证专家(MCP)证书有
阅读全文
摘要: When using SQL Server Management Studio Express I get the error "SQLServer does not allow remote connections". How to resolve this error?Question:InSQL Server 2005 when trying to connect to a remote database with SQLServer Manager Studio Express, I get this error: "An error has occure
阅读全文
摘要: 当我们在开发Web应用程序的时候,时常碰到textbox和button相关联的时候(如登录、搜索)但是要么用鼠大哥要么tab多次才能到button。以下的方法可以直接Enter.……using System.Web.UI.WebControls;using System.Web.UI.HtmlControls;…………public static void TieButton(Page page, Control TextBoxToTie, Control ButtonToTie) { // string strJS= ""; //检查button的类型并确定js字符串。 i
阅读全文
摘要: MailMessage mailMessage = new MailMessage(); mailMessage.From = new MailAddress(from); mailMessage.To.Add(new MailAddress(to)); mailMessage.Subject = subject; mailMessage.Body = body; mailMessage.Priority = MailPriority.High; SmtpClient mailClient = new SmtpClient(MailServer); mailClient.Credential.
阅读全文