C#Winfrom 验证当前网络是否通常
1. 要加入命名空间 using System.Net.NetworkInformation2.下面给出测试网络是否正常的方法代码private void checkNetConnect() { string url = "www.baidu.com"; //设置网址为百度测试网址 stri …… 阅读全文
1. 要加入命名空间 using System.Net.NetworkInformation2.下面给出测试网络是否正常的方法代码private void checkNetConnect() { string url = "www.baidu.com"; //设置网址为百度测试网址 stri …… 阅读全文
下面给出对于向数据库中插入数据时,有不规则自增列通常的处理方法,这里得自增列为requestid其自增规则如下:R000001、R000002、R000003······ protected string GetRequestid() { string sql = @"select MAX(SUBSTRING(requestid,2,LEN(reque …… 阅读全文
1.获取日期之间天数的方法代码 string starttime=dtpStart1.Value.ToShortDateString(); DateTime start1 = Convert.ToDateTime(dtpStart1.Value); string endtime = dtpEnd1.Value.ToShortDateString( …… 阅读全文
在C#中经常要调用存储过程来实现某些功能,这里给出登录方法的存储过程和调用方法(proc_login)存储过程proc_logincreate procedure proc_Login_list@userid varchar(50),@password varchar(50),@re int outputasbegin declare @flag int set @flag=(s …… 阅读全文
ContextMenusStrip 和MenusStrip的区别 ContextMenusStrip 是常用语托盘的上下文菜单,MenusStrip是菜单栏 ContextMenuStripcms=newSystem.Windows.Forms.ContextMenuStrip(); …… 阅读全文
private void 窗口1ToolStripMenuItem_Click(object sender, EventArgs e) { //方式1:子窗体会重复打开 //FrmChild1 child1 = new FrmChild1(); //child1.MdiParent = this; …… 阅读全文
App.Config文件如下: private void Init() { string node = "Version"; this.labVersion.Text = ConfigurationManager.AppSettings[node].ToString(); } …… 阅读全文
下载方法: private void DownloadFile(string gl_fileid) { string sql = "select * from files where fileid='" + gl_fileid + "'"; DataTable dt = DBUtil.GetData(sql); …… 阅读全文