明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1774|回复: 5

这种选择文件夹窗口该如何实现??

[复制链接]
发表于 2003-10-5 23:06:00 | 显示全部楼层 |阅读模式


和CAD支持文件搜索路径窗口是一样的!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
发表于 2003-10-6 06:54:00 | 显示全部楼层
http://www.mjtd.com/function/list.asp?id=368&ordertype=byletter
 楼主| 发表于 2003-10-6 10:14:00 | 显示全部楼层
谢谢!
发表于 前天 22:59 | 显示全部楼层
http://www.mjtd.com/function/lis ... ;ordertype=byletter 无效
请知道实现楼主贴图的老师请指点,谢谢
回复 支持 反对

使用道具 举报

发表于 昨天 20:01 | 显示全部楼层
xzd716 发表于 2025-4-2 22:59
http://www.mjtd.com/function/list.asp?id=368&ordertype=byletter 无效
请知道实现楼主贴图的老师请指点 ...

Option Explicit

#If VBA7 Then
    Private Declare PtrSafe Function SHBrowseForFolder Lib "shell32.dll" (lpbi As BROWSEINFO) As Long
    Private Declare PtrSafe Function SHGetPathFromIDList Lib "shell32.dll" (ByVal Pidl As LongPtr, ByVal pszPath As String) As Long

    Private Type BROWSEINFO
        hwndOwner As LongPtr
        pidlRoot As LongPtr
        pszDisplayName As String
        lpszTitle As String
        ulFlags As Long
        lpfn As LongPtr
        lParam As LongPtr
        iImage As Long
    End Type
#Else
    Private Declare Function SHBrowseForFolder Lib "shell32.dll" (lpbi As BROWSEINFO) As Long
    Private Declare Function SHGetPathFromIDList Lib "shell32.dll" (ByVal Pidl As Long, ByVal pszPath As String) As Long

    Private Type BROWSEINFO
        hwndOwner As Long
        pidlRoot As Long
        pszDisplayName As String
        lpszTitle As String
        ulFlags As Long
        lpfn As Long
        lParam As Long
        iImage As Long
    End Type
#End If


'通过窗口选择文件夹
'返回字符串,如果错误或取消则返回""
Public Function SelectFolder(ByVal dePath As String) As String
    Dim Bi As BROWSEINFO
    Dim Pidl As Long
    Dim DisplayName As String
    Dim Path As String
    Path = VBA.Space(260)
    DisplayName = VBA.Space(260)
    Bi.hwndOwner = 0  ' 可以设置为特定的窗口句柄,0为当前AutoCAD窗口
    Bi.pidlRoot = 0   ' 从桌面开始浏览
    Bi.pszDisplayName = DisplayName
    Bi.lpszTitle = dePath
    Bi.ulFlags = &H8007 ' BIF_RETURNONLYFSDIRS | BIF_NEWDIALOGSTYLE
    Bi.lpfn = 0
    Bi.lParam = 0
    Pidl = SHBrowseForFolder(Bi)
    If Pidl <> 0 Then
        SHGetPathFromIDList Pidl, Path
        SelectFolder = VBA.Left(Path, InStrRev(Path, VBA.Chr(0)) - 1)
    Else
        SelectFolder = ""
    End If
End Function


'使用案例
Sub test1()
    On Error Resume Next
    Dim filepath As String
    filepath = SelectFolder("选择文件夹")
    If filepath <> "" Then
        MsgBox "已选择:" & filepath
    Else
        MsgBox "未选择!"
    End If
End Sub
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2025-4-4 06:35 , Processed in 0.156124 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表