上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: 1)Trim方法string tt=" aaa ";tt=tt.Trim() 去字符串首尾空格的函数tt=tt.TrimEnd() 去掉字符串尾空格tt=tt.TrimStart() 去掉字符串首空格(2)通过ASCII码值去掉字符中的空格由于空格的ASCII码值是32,因此,在去掉字符串中所有的空... 阅读全文
posted @ 2015-06-13 19:29 九省巡按 阅读(629) 评论(0) 推荐(0) 编辑
摘要: ACCESS数据库1:CodeSmith选中链接类型是:ADOXSchema2:无密码的Access链接为:Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\hh\db.mdb;3:有密码的Access链接:Provider=Microsoft.Jet.... 阅读全文
posted @ 2015-06-13 13:09 九省巡按 阅读(279) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window... 阅读全文
posted @ 2015-06-10 15:52 九省巡按 阅读(381) 评论(0) 推荐(0) 编辑
摘要: private void button1_Click(object sender, EventArgs e) { string treetxt = treeView1.SelectedNode.Text;//获取到树节点信息 Message... 阅读全文
posted @ 2015-06-10 15:15 九省巡按 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 第一个显示在listview中using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;usin... 阅读全文
posted @ 2015-06-10 14:58 九省巡按 阅读(297) 评论(0) 推荐(0) 编辑
摘要: DataTable 类表示一个内存中数据表。一、DataTable简介 (1)构造函数 DataTable() 不带参数初始化DataTable 类的新实例。 DataTable(string tableName) 用指定的表名... 阅读全文
posted @ 2015-06-10 14:51 九省巡按 阅读(216) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window... 阅读全文
posted @ 2015-06-09 11:30 九省巡按 阅读(161) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window... 阅读全文
posted @ 2015-06-09 11:08 九省巡按 阅读(398) 评论(0) 推荐(0) 编辑
摘要: textbox:属性:text:文本selectedtext:获取或设置选中文本canundo:是否能够撤销方法:undo:撤销clearundo:清空撤销缓冲区cut:剪切copy:复制Paste:粘贴SelectAll:全选对话框:showdialog();显示对话框,返回一个dialogres... 阅读全文
posted @ 2015-06-05 09:27 九省巡按 阅读(283) 评论(0) 推荐(0) 编辑
摘要: StreamReader实现了抽象基类TextReader类,而StreamWriter实现了抽象基类TextWriter。分别用于对流的读取与写入。先从StreamReader说起一、构造方法StreamReader(Stream) 为指定的流初始化 StreamReader 类的新实例。 St... 阅读全文
posted @ 2015-06-05 09:19 九省巡按 阅读(173) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页