摘要:
string str1 =Process.GetCurrentProcess().MainModule.FileName;//可获得当前执行的exe的文件名。 string str2=Environment.CurrentDirectory;//获取和设置当前目录(即该进程从中启动的目录)的完全限定路径。 //备注 按照定义,如果该进程在本地或网络驱动器的根目录中启动,则此属性的值为驱动器... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; using ... 阅读全文
摘要:
在建立与服务器的连接时出错。在连接到 SQL Server 2005 时,在默认的设置下 SQL Server 不允许进行远程连接可能会导致此失败。 (provider: SQL 网络接口, error: 26 - 定位指定的服务器/实例时出错 可以试试下面的方法,我们这样设置的话也对成立自己的数据有更好的解决方案 文章来自本人163博客:http://blog.163.com/it_huo/b... 阅读全文
摘要:
using System; using System.Text; using System.Runtime.InteropServices; namespace Common.Text { public class INIFile { public string path; public INIFile(string INIPath) { path = INIPath; ... 阅读全文