摘要: 做了个宝光的项目,在导出excel的时候出了点问题,excel进程不能关闭,之后费了很长时间,找到一段代码,终于算是把excel进程给关闭了 private void button3_Click(object sender, EventArgs e) { String name = "EXCEL";//进程名称,这里是excel的进程,要全大写,不带后缀 int ProceedingCount = 0; System.Diagnostics.Process[] ExcelProcesses; ExcelProcesses = System.Diagnostics.Proce 阅读全文
posted @ 2012-04-26 15:38 小四儿 阅读(262) 评论(0) 推荐(0) 编辑
摘要: Private Sub Text1_Change() Label1.AutoSize = True Label1 = Text1 Text1.Width = Label1.WidthEnd Sub网上的,写的很巧妙,这人真的太有才了http://zhidao.baidu.com/question/374535114.html 阅读全文
posted @ 2012-04-21 13:29 小四儿 阅读(557) 评论(0) 推荐(0) 编辑
摘要: 几个经常用到的字符串的截取string str="123abc456";int i=3;1 取字符串的前i个字符str=str.Substring(0,i); // orstr=str.Remove(i,str.Length-i);2 去掉字符串的前i个字符:str=str.Remove(0,i); // or str=str.Substring(i);3 从右边开始取i个字符:str=str.Substring(str.Length-i); // or str=str.Remove(0,str.Length-i);4 从右边开始去掉i个字符:str=str.Substri 阅读全文
posted @ 2012-04-21 12:54 小四儿 阅读(4904) 评论(0) 推荐(0) 编辑
摘要: 写了个通用的模板,以后直接复制了,希望大家指点一二using System.Drawing;//添加图片生成图片对象 public static void pictureBmpAdd( Form f1, string bmpPathName) { //创建一个图片对象 Bitmap bmp = new Bitmap(bmpPathName);//创建一个图片容器 PictureBox pb1 = new PictureBox(); pb1.Image = bmp; pb1.SetBounds(10, 10, 100, 100); //x,y,wigth,higth pb1.SizeMod... 阅读全文
posted @ 2012-04-21 11:57 小四儿 阅读(1874) 评论(1) 推荐(0) 编辑
摘要: 利用Control类的Controls可取得子控件集合,依据Controls.Count获得的子控件数目,用Control.Controls[n].属性名 访问相关属性 private void ResetTextBox(System.Windows.Forms.Control.ControlCollection cc, Boolean boolean) { // 利用Control类的Controls可取得子控件集合 foreach (Control ctr in cc) { if (ctr is TextBox) { string ctrName = ctr.Name; ctrName = 阅读全文
posted @ 2012-04-21 11:56 小四儿 阅读(1391) 评论(1) 推荐(0) 编辑
摘要: 1.截取已知位置及长度left 简单原始,是我喜欢的风格 A.截取从字符串左边开始N个字符 Declare @S1 varchar(100) Select @S1='http://www.xrss.cn' Select Left(@S1,4) ------------------------------------ 显示结果: http right从右侧开始截取 B.截取从字符串右边开始N个字符(例如取字符www.163.com) Declare @S1 varchar(100) Select @S1='http://www.xrss.cn' Select ri 阅读全文
posted @ 2012-04-20 18:56 小四儿 阅读(365) 评论(0) 推荐(0) 编辑
摘要: 本人懒惰,不想了解那么杂七杂八的东西,写个通用连库文件,以后连库直接粘贴复制就好了View Code 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;namespace sql连接数据库demo{ public partial class Form1 : Form ... 阅读全文
posted @ 2012-04-19 22:56 小四儿 阅读(243) 评论(0) 推荐(0) 编辑
摘要: delete fromTableName where id in (39,40)sql 高级用法 in 关键字 , 包含insert into TableName (Count1,Count2) selectCount1,Count2 fromTableName 复制数据库数据的sql 阅读全文
posted @ 2012-04-19 15:16 小四儿 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Do While (i > 0) i = i -1 Loop先判断 ,当条件为 True 时,运行 For Each ref_row As DataGridViewRow In ExcelProcesses Next 阅读全文
posted @ 2012-04-19 14:31 小四儿 阅读(1746) 评论(0) 推荐(0) 编辑
摘要: Text = DataGridView_View.SelectedRows(0).DataBoundItem(0)DataGridView_View.SelectedRows 选取数据行.DataBoundItem 选取数据单元格 阅读全文
posted @ 2012-04-19 14:00 小四儿 阅读(468) 评论(0) 推荐(0) 编辑