首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

点击Button 打开文件夹路径 的代码如何编写

2012-03-29 
点击Button 打开文件夹路径 的代码怎么编写点击Button 打开文件夹路径 的代码怎么编写[解决办法]打开文件

点击Button 打开文件夹路径 的代码怎么编写
点击Button 打开文件夹路径 的代码怎么编写

[解决办法]
打开文件和文件夹是两种不同的方式。给你一段代码参考下。

C# code
 void button1_Click(object sender, EventArgs e)        {            switch (this.Type)            {                case ePathTextBoxType.File:                    this.ofd = new OpenFileDialog();                    ofd.Filter = Filter;//类似:"文本文档|*.txt";                    this.ofd.Multiselect = true;                    if (this.ofd.ShowDialog() == DialogResult.OK)                    {                        this.label1.Text = this.ofd.FileName;                    }                    break;                    //打开的是文件夹。                case ePathTextBoxType.Floder:                    this.fbd = new FolderBrowserDialog();                    if (this.fbd.ShowDialog() == DialogResult.OK)                    {                        this.label1.Text = this.fbd.SelectedPath;                    }                    break;                default:                    break;            }        } 

热点排行