zoukankan
html css js c++ java
openFileDialog 选择文件
用OpenFileDialog选择文件:
/***选择文件***/
#region
/***选择文件***/
private
void
button1_Click(
object
sender, System.EventArgs e)
{
string
folderName
=
string
.Empty;
try
{
openFileDialog.InitialDirectory
=
@"
c:\
"
;
openFileDialog.RestoreDirectory
=
true
;
openFileDialog.Filter
=
"
(*.mdb)|*.*
"
;
openFileDialog.FilterIndex
=
1
;
DialogResult fileresult
=
openFileDialog.ShowDialog();
if
(fileresult
==
DialogResult.OK)
{
string
oldFilePath
=
openFileDialog.FileName;
//
System.IO.FileInfo fi = new System.IO.FileInfo(oldFilePath);
//
if(fileinfo!=null)
//
{
if
(oldFilePath.IndexOf(
"
.mdb
"
)
>
0
)
{
this
.txtOldfile.Text
=
oldFilePath;
string
strFilePath
=
System.IO.Path.GetDirectoryName(oldFilePath);
this
.p_mdbFullName
=
oldFilePath;
……
p_savePath
=
Directory.GetParent(oldFilePath).ToString();
}
else
{
MessageBox.Show(
this
,
"
请选择将要操作的Access数据库文件
"
,
"
提示信息
"
,MessageBoxButtons.OK,MessageBoxIcon.Error);
}
//
}
}
else
{
return
;
}
}
catch
(Exception err)
{
MessageBox.Show(
this
,err.Message,
"
选择文件
"
,MessageBoxButtons.OK,MessageBoxIcon.Error);
}
}
#endregion
查看全文
相关阅读:
PostgerSQL 回收表空间,查看占用磁盘大小
为 Docker 添加阿里云的镜像地址
Docker 常用命令
CentOS 7 安装 Docker
kafka-常用脚本2
Nginx 端口被占用(0.0.0.0:443 failed (98: Address already in use))
nginx: [error] open() "/var/run/nginx.pid" failed (2: No such file or directory)
检查Nginx 配置文件出否有问题
Python2 安装虚拟环境
记录 | 程序员技术博客平台推荐和选取
原文地址:https://www.cnblogs.com/flashicp/p/774009.html
最新文章
linux下安装docker 个人虚拟机
经纬度计算亮点之间的距离
spring boot @IgnoreSecurity
工作中的各种小技巧
docker镜像加速
spring boot 中驼峰命名查询便利
改变可识别redis序列化方式
python学习DAY10(继承中的相关问题)
python学习DAY10(静态方法)
python学习DAY10(实例变量和类变量)
热门文章
python学习DAY9(装饰器)
python学习DAY8(递归与高阶函数)
python学习DAY8(函数与函数式编程)
python学习DAY8(局部变量与全局变量)
python学习DAY7(文件修改)
python学习DAY7(编码转码)
C++-------多态virtual的简单示例、虚析构函数的体现
2019年11日9日
2019年11月6日
centOS7安装nginx及nginx配置
Copyright © 2011-2022 走看看