码迷,mamicode.com
首页 >  
搜索关键字:openfiledialog    ( 192个结果
C# 图片存入SQL Server数据库
OpenFileDialog openfiledialog1 = new OpenFileDialog(); if (openfiledialog1.ShowDialog() == DialogResult.OK) { ...
分类:数据库   时间:2015-05-19 10:12:29    阅读次数:110
c# 读取和写入excel数据
1. 读取DataTable GetDataFromExcelByConn(bool hasTitle = false){ OpenFileDialog openFile = new OpenFileDialog(); openFile.Filter = "Excel(*.xlsx)|*.xlsx|...
分类:Windows程序   时间:2015-05-18 18:52:06    阅读次数:197
C#自学之路35
35.通用对话框不同的windows应用软件常常使用功能相同的对话框,比如,打开,保存,打印等对话框,这些称为通用对话框。我们来学习一下6中通用对话框,分别为:消息框(Messagebox),打开文件对话框(OpenFileDialog),保存文件对话框(SaveFiledialog),颜色对话框(ColorDialog..
分类:Windows程序   时间:2015-04-14 23:29:30    阅读次数:230
C#OpenFileDialog使用(转)
string resultFile = ""; OpenFileDialog openFileDialog1 = new OpenFileDialog(); openFileDialog1.InitialDirectory = "D:\\Patch"; openFileDialog1.Filte.....
分类:Windows程序   时间:2015-04-08 14:54:52    阅读次数:148
c#winform选择文件,文件夹,打开指定目录方法
private void btnFile_Click(object sender, EventArgs e){OpenFileDialog fileDialog = new OpenFileDialog();fileDialog.Multiselect = true;fileDialog.Title...
分类:Windows程序   时间:2015-03-20 21:40:13    阅读次数:139
c#打开txt文件并导入到textbox中
OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.Title = " 请选择您要导入的模板文件:"; openFileDialog.Filter...
分类:Windows程序   时间:2015-03-18 23:03:21    阅读次数:202
在文件列表中选择文件,并把一个文件的内容显示在TextArea中
private FileDialog openFileDialog = new FileDialog(this,"Open File",FileDialog.LOAD);else if(eventSource == openFile) { openFileDial...
分类:其他好文   时间:2015-03-09 10:36:52    阅读次数:142
读取保存文件、图片在数据库中的上传读取
一、输入输出流1、概念:输入输出流主要用于保存、读取文件,其内容保存在内存中。2、使用方法:using System.IO;//System.IO 命名空间包含允许读写文件和数据流的类型以及提供基本文件和目录支持的类型。3、代码段实现读取和保存功能:读取文字:OpenFileDialog op = ...
分类:数据库   时间:2015-02-26 22:52:13    阅读次数:200
9、面向对象以及winform的简单运用(输入输出流、图像的上传和读取)
一、输入输出流1、概念:输入输出流主要用于保存、读取文件,其内容保存在内存中。2、使用方法:using System.IO;//System.IO 命名空间包含允许读写文件和数据流的类型以及提供基本文件和目录支持的类型。3、代码段实现读取和保存功能:读取文字:OpenFileDialog op = ...
分类:Windows程序   时间:2015-02-25 17:00:04    阅读次数:192
PictureBox从本地上传图片和保存在磁盘目录
private void mypicbox_Click(object sender, EventArgs e) { try { OpenFileDialog ofdPic = new OpenFileDialo...
分类:Web程序   时间:2015-02-04 18:27:01    阅读次数:116
192条   上一页 1 ... 12 13 14 15 16 ... 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!