码迷,mamicode.com
首页 >  
搜索关键字:openfiledialog    ( 192个结果
将Excel数据读入DataGridView
OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.Filter = "Microsoft Excel files(*.xls)|*.xls;*.xlsx";//过滤一下,只要表格格式的 openFileDialo... ...
分类:Windows程序   时间:2017-08-22 15:57:14    阅读次数:203
二进制数据将图片保存到数据库,并读取数据库二进制数据显示图片
一. 浏览图片 OpenFileDialog ofd = new OpenFileDialog(); ofd.InitialDirectory = @"E:\"; ofd.Filter = "Image Files(*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|All f ...
分类:数据库   时间:2017-08-11 21:14:08    阅读次数:169
C# 打开 txt文件内容 与保存内容到 txt文件
OpenFileDialog ofd = new OpenFileDialog(); ofd.Title = "请选择要打开的文本文件"; ofd.InitialDirectory = @"C:\Users\SpringRain\Desktop"; ofd.Multiselect = true; o ...
分类:Windows程序   时间:2017-08-07 12:02:17    阅读次数:284
C# 自动生成数据库
1.窗体下的代码 private void button1_Click(object sender, EventArgs e) { OpenFileDialog of = new OpenFileDialog(); of.Filter = "*.sql|*.*"; of.InitialDirecto ...
分类:数据库   时间:2017-06-24 13:54:39    阅读次数:251
WinCE的C#中使用StreamReader 来读取TXT文档,读取文本文档。
using System.IO; private void button1_Click(object sender, EventArgs e) { string strFilePath = ""; OpenFileDialog fd = new OpenFileDialog(); fd.Filter ...
分类:Windows程序   时间:2017-06-19 19:40:34    阅读次数:293
c#文件流
private void btnOpenFile_Click(object sender, EventArgs e) { //OpenFileDialog 打开要使用的资源 using (OpenFileDialog ofd=new OpenFileDialog()) { ... ...
分类:Windows程序   时间:2017-06-16 23:15:23    阅读次数:263
C# Excel文件导入操作
Excel文件导出的操作我们经经常使用到,可是讲一个Excel文档导入并显示到界面还是第一次用到。 以下简介下在C#下怎样进行Excel文件的导入操作。 首先加入两个引用 using System.IO; using System.Data.OleDb; 加入控件openFileDialog 然后我 ...
分类:Windows程序   时间:2017-06-06 15:54:08    阅读次数:258
获取文件数据流+叠加byte数组(给byte数组加包头包尾)
1 OpenFileDialog ofd = new OpenFileDialog(); 2 ofd.Filter = "(*.mp4)|*.mp4|(*.*)|*.*"; 3 ofd.RestoreDirectory = true; 4 if (ofd.ShowDialog() == Dialog... ...
分类:编程语言   时间:2017-06-01 15:15:21    阅读次数:317
C#用openfiledialog文件和savefileDialog打开和保存文件
一、打开文件 Stream myStream = null; OpenFileDialog openFileDialog1 = new OpenFileDialog(); openFileDialog1.InitialDirectory = "d:\\"; openFileDialog1.Filte ...
分类:Windows程序   时间:2017-05-27 13:30:50    阅读次数:299
【2017-5-2】Winform 对话框控件
对话框控件:ColorDialog - 颜色选择ShowDialog()DialogResult 类型对象.Color FontDialog - 字体选择ShowDialog()DialogResult对象.Font对象.Color OpenFileDialog - 文件打开对话框 ShowDial ...
分类:Windows程序   时间:2017-05-03 17:11:52    阅读次数:216
192条   上一页 1 ... 4 5 6 7 8 ... 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!