茄子在线看片免费人成视频,午夜福利精品a在线观看,国产高清自产拍在线观看,久久综合久久狠狠综合

    <s id="ddbnn"></s>
  • <sub id="ddbnn"><ol id="ddbnn"></ol></sub>

  • <legend id="ddbnn"></legend><s id="ddbnn"></s>

    vbs,hta中選擇文件夾對話框?qū)崿F(xiàn)代碼
    來源:易賢網(wǎng) 閱讀:2000 次 日期:2016-07-18 15:16:43
    溫馨提示:易賢網(wǎng)小編為您整理了“vbs,hta中選擇文件夾對話框?qū)崿F(xiàn)代碼”,方便廣大網(wǎng)友查閱!

    在vbs中選擇文件夾可以直接調(diào)用系統(tǒng)的文件夾對話框

    代碼如下:

    on error resume next

    SelectFolder

    function SelectFolder()

    Const MY_COMPUTER = &H11&

    Const WINDOW_HANDLE = 0

    Const OPTIONS = 0

    Set objShell = CreateObject("Shell.Application")

    Set objFolder = objShell.Namespace(MY_COMPUTER)

    Set objFolderItem = objFolder.Self

    strPath = objFolderItem.Path

    Set objShell = CreateObject("Shell.Application")

    Set objFolder = objShell.BrowseForFolder(WINDOW_HANDLE, "選擇文加夾:", OPTIONS, strPath)

    If objFolder Is Nothing Then

    msgbox "您沒有選擇任何有效目錄!"

    End If

    Set objFolderItem = objFolder.Self

    objPath = objFolderItem.Path

    msgbox "您選擇的文件夾是:" & objPath

    end function

    但是這個代碼不能在hta里用,原因是權(quán)限不夠,不知道其它機子上能不能。

    于是寫了個用vbs自帶函數(shù)和fso結(jié)合的文件夾選擇代碼,僅供參考

    代碼如下:

    <script language=vbscript>

    dim spath

    spath="Root"

    function SFolder()

    on error resume next

    Dim fso, drv, f, fc, nf, s, i, p, r, d

    i=3

    if spath="Root" then

    Set fso =CreateObject("Scripting.FileSystemObject")

    Set drv =fso.Drives

    s="輸入序號為進入,序號+#為選中(c為取消)"+chr(13)+chr(10)

    s=s+"1.根目錄"+chr(13)+chr(10)

    s=s+"2.上層"+chr(13)+chr(10)

    For Each a In drv

    s=s+cstr(i)+"."+ a.Path+chr(13)+chr(10)

    i=i+1

    Next

    GetD s

    else

    Set fso =CreateObject("Scripting.FileSystemObject")

    if right(spath,1)<>"\" then

    spath=spath+"\"

    end if

    Set fc =fso.GetFolder(spath).SubFolders

    s="輸入序號為進入,序號+#為選中(c為取消)"+chr(13)+chr(10)

    s=s+"1.根目錄"+chr(13)+chr(10)

    s=s+"2.上層"+chr(13)+chr(10)

    for each nf in fc

    s=s+cstr(i)+"."+nf+chr(13)+chr(10)

    i=i+1

    next

    GetF s

    end if

    end function

    function GetD(s)

    on error resume next

    p=inputbox(s,"","")

    if p="c" then

    exit function

    end if

    r=split(s,chr(13)+chr(10))

    if right(p,1)="#" then

    if left(p,len(p)-1)=1 then

    msgbox "這是根目錄,不能選擇根目錄!"

    GetD s

    elseif left(p,len(p)-1)=2 then

    msgbox "這是根目錄,不能選擇根目錄!"

    GetD s

    else

    d=split(r(left(p,len(p)-1)),".")

    msgbox "選擇:" & d(1)

    Document.forms("ValidForm").FPath.Value=d(1)

    spath="Root"

    end if

    else

    if p=1 then

    msgbox "已經(jīng)是根目錄!"

    GetD s

    elseif p=2 then

    msgbox "已經(jīng)是最上層!"

    GetD s

    else

    d=split(r(p),".")

    spath=d(1)

    'msgbox "進入:" & d(1)

    SFolder

    end if

    end if

    end function

    function GetF(s)

    on error resume next

    p=inputbox(s,"","")

    if p="c" then

    exit function

    end if

    r=split(s,chr(13)+chr(10))

    if right(p,1)="#" then

    if left(p,len(p)-1)=1 then

    msgbox "這是根目錄,不能選擇根目錄!"

    GetD s

    elseif left(p,len(p)-1)=2 then

    GetTheParent =CreateObject("Scripting.FileSystemObject").GetParentFolderName(spath)

    msgbox "選擇:" & GetTheParent

    Document.forms("ValidForm").FPath.Value=GetTheParent

    else

    d=split(r(left(p,len(p)-1)),".")

    msgbox "選擇:" & d(1)

    Document.forms("ValidForm").FPath.Value=d(1)

    spath="Root"

    end if

    else

    if p=1 then

    spath="Root"

    SFolder

    elseif p=2 then

    GetTheParent =CreateObject("Scripting.FileSystemObject").GetParentFolderName(spath)

    if GetTheParent="" then

    spath="Root"

    'msgbox "進入:根目錄"

    else

    spath=GetTheParent

    'msgbox "進入:" & GetTheParent

    end if

    SFolder

    else

    d=split(r(p),".")

    spath=d(1)

    'msgbox "進入:" & d(1)

    SFolder

    end if

    end if

    end function

    </script>

    <form id="ValidForm" method="POST" action="--WEBBOT-SELF--">

    <p><input type="text" name="FPath" size="50" onclick="PastePath"><input type="button" value="選擇文件夾" name="SelFolder" onclick="SFolder"></p>

    </form>

    更多信息請查看腳本欄目
    易賢網(wǎng)手機網(wǎng)站地址:vbs,hta中選擇文件夾對話框?qū)崿F(xiàn)代碼
    由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇剩?/div>

    2026國考·省考課程試聽報名

    • 報班類型
    • 姓名
    • 手機號
    • 驗證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
    工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)