`
guoyiqi
  • 浏览: 1001953 次
社区版块
存档分类
最新评论

C# 选择文件对话框(转自:http://blog.csdn.net/longest9/article/details/1567929)

 
阅读更多
OpenFileDialog fileDialog1 = new OpenFileDialog();
fileDialog1.InitialDirectory = "d://";
fileDialog1.Filter = "xls files (*.xls)|*.xls|All files (*.*)|*.*";
fileDialog1.FilterIndex = 1;
fileDialog1.RestoreDirectory = true;
if (fileDialog1.ShowDialog() == DialogResult.OK)
{
textBox1.Text = fileDialog1.FileName;
}
else
{
textBox1.Text = "";

}

注意,xls files (*.xls)|*.xls是成对出现的,前者用于描述,后者用于筛选。

分享到:
评论

相关推荐

    siege-3.1.2.tar.gz

    Siege下载:http://soft.vpser.net/test/siege/siege-3.1.2.tar.gz 解压: # tar -zxf siege-3.1.2.tar.gz 进入解压目录: # cd siege-3.1.2/ 安装: #./configure #make #make install 使用 siege -c 200 -r 10 -f...

    xml实现技能组呼叫管理.doc

    参数详解部分提供了更深入的配置选项,包括振铃策略(如 ring-all、longest-idle-agent 等),队列语音(moh-sound),定期播放音乐的频率(announce-frequency)以及录音文件路径(record-template)。此外,还有 ...

    ROUGE-1.5.5

    包内应包含可执行文件和必要的配置文件,按照官方文档的指示,你可以将待评估的摘要与参考摘要放入指定格式的文件中,然后运行ROUGE工具,获取评估结果。这些结果通常会以CSV或TXT格式输出,便于后续分析。 需要...

    LeetCode最全代码

    ...The number of questions is increasing recently. Here is the classification of all `468` questions. ...I'll keep updating for full summary and better solutions....|-----|---------------- | --------------- |...

    leetcode296-Algorithm:来自https://github.com/xidui/algorithm-training的算法演

    [无重复字符的最长子串](#Longest-Substring-Without Repeating-Characters) [ZigZag 转换](#ZigZag 转换) [反向整数](#反向整数) [回文数](#回文数) 二和 给定一个整数数组,找到两个数字,使它们相加为特定的目标...

    LeetCodeTrain:这是来自LeetCode的已解决任务的存储库

    ProductOfArrayExceptSelf.java - //leetcode.com/problems/product-of-array-except-self/ LongestRepeatingCharacterReplacement.java - //leetcode.com/problems/longest-repeating-character-replacement...

    longestword:读取包含单词排序列表的文件(每行一个单词,没有空格,全部小写)的程序,然后识别文件中最长的单词,该单词可以通过连接文件中的较短单词的副本来构造

    读取包含单词排序列表(每行一个单词,没有空格,全部小写)的文件的程序,然后识别文件中最长的单词,该单词可以通过连接在文件中找到的较短单词的副本来构造。 用法 - 建立一个程序: git clone ...

    KMP.rar_https.//kmp80.com

    对于模式串P,部分匹配表LPS(Longest Proper Prefix which is also a Suffix)的第i个元素LPS[i]表示以P[i]结尾的子串的最长公共前后缀的长度。例如,模式串"ABAB"的部分匹配表为[0, 0, 1, 2],因为"AB"是"ABAB"的...

    leetcodepython001-leetcode:https://leetcode.com/的解决方案

    Longest Substring Without Repeating Characters.cpp │  │  ├── 004 - Median of Two Sorted Arrays.cpp │  │  └── 005 - Longest Palindromic Substring.cpp │  └── python │  ├── 001 - ...

    omnicppcomplete

    " ctags 索引文件 (根据已经生成的索引文件添加即可, 这里我额外添加了 hge 和 curl 的索引文件) set tags+=【目录】/cpp let OmniCpp_NamespaceSearch = 1 let OmniCpp_GlobalScopeSearch = 1 let OmniCpp_...

    LeetCode3 Longest Substring Without Repeating Characters

    Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the length is 3. Given "bbbbb", the answer is "b", with...

    机试高频考点.docx

    【字符串知识】 在编程面试中,字符串是常考的知识点,尤其在机试中更是高频出现。字符串的处理包括但不限于字符串的基本操作、字符串的匹配算法等。字符串常考的匹配算法有KMP算法、Rabin-Karp算法以及Boyer-Moore...

    网格最短leetcodePython-LeetCode:力码

    7/9 公里数 39. 组合和 解决方案 日期 差错 7/10 16. 3Sum 最近 解决方案 日期 两个指针 7/11 48. 旋转图像 解决方案 日期 符号->上下 7/12 17. 电话号码的字母组合 解决方案 日期 差错 7/12 Bfs 38. 数数并说 解决...

    siege————网络压力测试工具

    很好用的网络压力测试工具 Linux版 siege的安装 unzip filename.zip cd siege-*.*.* ./configure --prefix=... Longest transaction: 0.04 :最长的事务处理时间 Shortest transaction: 0.02 :最短的事务处理时间

    广东省惠州市惠东县2017_2018学年九年级英语全册Unit8ItmustbelongtoCarla背诵卷新版人教新目标版20

    【知识点详解】 1. 属于某人,是某人的:可以表示为"belong to sb." 或者 "be one's"。例如:"This book belongs to Mary." 或者 "This is Mary's ...68. 在一年中最长的一天:是 "on the longest day of the year".

    2020sp-csci-utils-khalid

    longest () 发展 要运行所有测试,请运行: tox 注意,要合并来自所有有毒环境运行的覆盖率数据,请执行以下操作: 视窗 set PYTEST_ADDOPTS=--cov-append tox 其他 PYTEST_ADDOPTS=--cov-append tox

    字符串进阶前导知识1

    此外,后缀数组与LCP(Longest Common Prefix,最长公共前后缀数组)结合使用,可以解决更复杂的字符串问题。通过了解后缀数组,我们可以解决如poj3261这样的模板题。 对于后缀数组的入门,推荐阅读的两篇文章是: ...

    美赛各题型常见参考代码:基于动态规划离散优化问题代码.zip

    这个压缩包文件"美赛各题型常见参考代码:基于动态规划离散优化问题代码.zip"显然是为了提供一系列解决此类问题的代码示例。 动态规划是一种强大的算法设计方法,用于解决多阶段决策过程中的最优化问题。它的核心...

    leetcode-回文数,回文串(非dp,排序问题哈,dp太难,以后再总结)

    409:https://leetcode-cn.com/problems/longest-palindrome/ 题目: 思路:那遇到偶数个重复的字符可以直接加入,遇到奇数个可以直接-1加入(减一之后就是偶数了),最后还要判断下,如果当前长度小于原字符串长度...

    Skiena-The_Algorithm_Design_Manual.pdf

    8.3 Longest Increasing Sequence . . . . . . . . . . . . . . . . . . . . . 289 8.4 War Story: Evolution of the Lobster . . . . . . . . . . . . . . . . 291 8.5 The Partition Problem . . . . . . . . . . ...

Global site tag (gtag.js) - Google Analytics