摘要:
1 private BindingList listXSxxInfoList = new BindingList(); 2 openFileDialog1.Multiselect = true;//允许选择多个文件 3 ListXSxxInfoList.Clear(); 4 string filePath = ""; 5 openFileDialog1.Filter = "文本文件*.... 阅读全文
摘要:
1、增加字段名 ALTER TABLE [表名] ADD [列名] VARCHAR(20) NULL VARCHAR(20)是新加字段的类型和长度NUll:表示允许NULL值 3、修改字段类型 Alter table [表名] Alter column [列名] [列类型] 3、清除表数据 trun 阅读全文
摘要:
1 using System.IO;//引用 System.IO 2 namespace filestream 3 { 4 public partial class Form1 : Form 5 { 6 public Form1() 7 { 8 InitializeComponent(); 9 ... 阅读全文