文件浏览器隐藏 Vb6 中的扩展名
我正在制作一个 VB6 软件,它将从 App.Path & 加载一些 Flash 文件。 “/”&文件夹,由于我有很多文件要加载,我认为 Windows FileListBox 是最好的,因为我只需要添加鼠标单击事件。 我的问题在于文件浏览器显示我不喜欢的 .swf 扩展名。有没有办法隐藏扩展程序?
I am making a VB6 software that will load some Flash files from the App.Path & "/" & folder and since I have a lot of Files to load , I figured that the windows FileListBox would be best since I just have to add a mouse click event.
My Problem comes in that the File Browser shows the .swf extension which I dont like. Is there a way I can hide the extension?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FileListBox
没有什么特别之处,所以为什么不直接使用常规的ListBox
并自行填充而不使用扩展名呢?您甚至可以使用
FileListBox
(使用Visible = False
)在指定位置生成文件列表,并将此列表复制到您的ListBox
There is nothing too special about the
FileListBox
so why not just use a regularListBox
and populate it yourself without the extensions?You could even use the
FileListBox
(withVisible = False
) to generate the list of files for you in the location specified and copy this list to yourListBox