当前注册人数423093人 邮箱: 密码: 注册新用户 忘记密码
首页 C/C++/MFC C# ASP.NET VB.NET MATLAB Android   站内搜索 下载代码说明/积分规则
为什么要注册?

1. 可以直接免费从本站下载代码,防止邮件发送不到您的邮箱,或登录不了国外网站

2. 可以设定关键字,当有您关心的代码收录时,邮件通知您

3. 对这里的代码进行评分和评论

4. 可以和大家一起分享你的源代码,得到更多的建议

Explorer ComboBox and ListView in VB.NET

VB.NET实现资源浏览器的文件浏览(缩略图、平铺、图标和列表)源代码

2008年03月05日
VB, Windows, .NET, .NET 2.0, VS, VS2005, Dev
这个程序相当于用VB.NET实现了一个windows的资源浏览器,它用一个下拉框显示文件系统中的所有文件夹及各级路径。并可以选择和资源浏览器一样的各种浏览文件及文件夹的方式,有缩略图、平铺、图标和列表等等。
相关知识
Public Shared Function DecodeURL(ByVal url As String) As String 
    'Return if there are no special characters 

    If url.LastIndexOf("%"c) = -1 Then Return url 
    'Integer to hold character index 

    Dim index As Integer 
    'String to hold Hexidecimal character code 

    Dim hexCharacter As String 
    Do 
      index = url.IndexOf("%"c) 
      'Return if there are no more special characters 

      If index = -1 Then Return url 
      'The two characters after the '%' in a URL is the hexidecimal 

      'ISO 8859 character code 

      hexCharacter = "&" & url.Substring(index + 1, 2) 
      hexCharacter = Encoding.GetEncoding("ISO-8859-1").GetString(New _
                                           Byte() {CByte(hexCharacter)}) 
      url = url.Replace("%" & url.Substring(index + 1, 2), hexCharacter)
    Loop 
  End Function
源代码原文下载:
Explorer ComboBox and ListView in VB.NET A ComboBox (and ListView) displaying the file system, using the system image list.

源码图片

点击链接查看大图
从本站下载附件及源代码(1个附件,已经成功下载1120次)

最值得关注的外文源代码

Calculator
An All VB.NET Explorer Tree Control with ImageList Management
Owner-draw icon buttons in plain C (no MFC)
IconLib - Icons Unfolded (MultiIcon and Windows Vista supported)
评论(评论是增加积分的一个有效途径)
字数在300字内
请如实评论
本源代码共评论76次,此处显示最近20次评论! 查看所有评论

shaoge  2021年03月22日
学习下,谢谢分享
firstwing  2018年07月04日
太厉害了,你是最棒的。
江海  2017年06月05日
AddHandler english.CheckedChanged, AddressOf Me.Language_CheckedChanged
kiva  2015年09月02日
学习下,谢谢分享
dslion  2014年10月31日
控件不错,但显现不了超大图标
hxkcyjs  2014年09月28日
谢谢分享
ygxcxy  2014年08月10日
非常需要
wcxfairy  2014年06月28日
学习学习!
yaojin300  2014年06月02日
好好
tayir  2014年03月24日
学习学习,非常感谢!
超人阿基米德  2013年08月27日
不错嘛~~~(*^__^*) 嘻嘻收下了~~
枫柏寒冰  2012年11月08日
枫柏寒冰  2012年11月08日
挺好的
yongyuandeyihao  2012年10月07日
很好,赞个
jshaier  2012年09月10日
呵呵。学习一下!
donqiang  2012年02月16日
学习下,谢谢。
saaf  2012年01月25日
谢谢
thceo  2012年01月16日
好网站
vivian  2011年12月13日
学习学习,非常感谢!
mhjcumt  2011年11月15日
不错,很有帮助
字数在300字内
请如实评论
200万国内源码搜索
CopyRight (C) codesoso.com 2007-2009 All Rights Reserved zhihuishi   免责声明