码迷,mamicode.com
首页 >  
搜索关键字:openfiledialog    ( 192个结果
C#(WinForm)上传图片保存到数据库和从数据库读取图片显示到窗体
1 //浏览图片 2 3 private void btnUp_Click(object sender, EventArgs e) 4 5 { 6 7 OpenFileDialog ofd = new OpenFil...
分类:数据库   时间:2015-07-17 17:55:30    阅读次数:302
openFileDialog的Filter属性设置
OpenFileDialog对话框的Filter属性说明:首先说明一个示例,分析一下Filter属性的构成:“Excel文件|*.xls”,前面的“Excel文件”成为标签,是一个可读的字符串,可以自定定义,“|*.xls”是筛选器,表示筛选文件夹中后缀名为.xls的文件,“*”表示匹配Excel文...
分类:其他好文   时间:2015-07-14 09:55:41    阅读次数:97
C# WinForm 对话框
//打开文件对话框private void openFileDialogBtn_Click(object sender, EventArgs e) { OpenFileDialog opd = new OpenFileDialog(); ...
分类:Windows程序   时间:2015-07-14 09:51:04    阅读次数:502
在可以调用 OLE 之前,必须将当前线程设置为单线程单元(STA)模式
public class Invoker { public OpenFileDialog InvokeDialog; private Thread InvokeThread; private DialogResu...
分类:编程语言   时间:2015-07-13 20:11:37    阅读次数:143
c#winform选择文件,文件夹,打开指定目录方法
private void btnFile_Click(object sender, EventArgs e) { OpenFileDialog fileDialog = new OpenFileDialog(); fileDialog.Multiselect = true; fileDialog.T...
分类:Windows程序   时间:2015-07-10 16:33:05    阅读次数:230
.Net学习笔记----2015-07-02(选择文件对话框、保存对话框、字体和颜色对话框)
private void button1_Click(object sender, EventArgs e) { //点击弹出对话框 OpenFileDialog ofd = new OpenFileDialog(); ...
分类:Web程序   时间:2015-07-02 17:22:09    阅读次数:168
C# 文件与二进制互转数据库写入读出
//这个方法是浏览文件对象 private void button1_Click(object sender, EventArgs e) { //用户打开文件浏览 using (OpenFileDialog dialog = ...
分类:数据库   时间:2015-06-25 20:52:21    阅读次数:158
c# 保存和打开文件的方法
复制代码1、打开文件路径: OpenFileDialog a= new OpenFileDialog(); //new一个方法a.Filter = "(*.et;*.xls;*.xlsx)|*.et;*.xls;*.xlsx|all|*.*"; //删选、设定文件显示类型a.ShowDialog(....
分类:Windows程序   时间:2015-06-15 10:56:56    阅读次数:138
C#打开/保存文件,获取路径
1、打开文件路径: OpenFileDialog a= new OpenFileDialog(); //new一个方法a.Filter = "(*.et;*.xls;*.xlsx)|*.et;*.xls;*.xlsx|all|*.*"; //删选、设定文件显示类型a.ShowDialog(); /....
分类:Windows程序   时间:2015-06-13 22:54:44    阅读次数:266
C++ windows图形界面,点击Button按钮通过openFileDialog控件选择文件
C++ windows图形界面,点击Button按钮通过openFileDialog控件选择文件...
分类:编程语言   时间:2015-06-10 09:00:14    阅读次数:347
192条   上一页 1 ... 10 11 12 13 14 ... 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!