C#Winform
文章平均质量分 72
yirunat
世界并没有自己熟悉的路,走得多了,也就熟了路!
展开
-
读写Ini文件
<br />using System;<br />using System.Runtime.InteropServices;<br />using System.IO;<br />using System.Text;<br />namespace WriteAndReadIni<br />{<br /> class Program<br /> {<br /> [DllImport("kernel32")]<br /> private static extern lon原创 2011-01-02 15:36:00 · 253 阅读 · 0 评论 -
c# SQLHelper(for winForm)实现代码
using System; using System.Collections.Generic; using System.Text; using System.Collections; using System.Data; using System.Data.SqlClient; using System.Configuration; namespace HelloWinForm.DBUtility { class SQLHelper { #region 通用方法 // 数据连接池 private SqlC转载 2011-01-11 19:02:00 · 306 阅读 · 0 评论 -
设置C#窗体程序只能启动一次
<br />在程序的main函数中加入以下代码 <br />bool createdNew; <br />System.Threading.Mutex instance = new System.Threading.Mutex(true, "MutexName", out createdNew); <br />if (createdNew) <br />{ <br />Application.Run(new LoginForm()); <br />instance.ReleaseMutex(); <br /转载 2011-01-11 18:57:00 · 289 阅读 · 0 评论