⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 showpropertiesdialog.bas

📁 这个不错
💻 BAS
字号:
Attribute VB_Name = "ShowPropertiesDialog"
Option Explicit

Type SHELLEXECUTEINFO
    cbSize        As Long
    fMask         As Long
    hwnd          As Long
    lpVerb        As String
    lpFile        As String
    lpParameters  As String
    lpDirectory   As String
    nShow         As Long
    hInstApp      As Long
    
    lpIDList      As Long     ' Optional parameter
    lpClass       As String   ' Optional parameter
    hkeyClass     As Long     ' Optional parameter
    dwHotKey      As Long     ' Optional parameter
    hIcon         As Long     ' Optional parameter
    hProcess      As Long     ' Optional parameter
End Type

Public Const SEE_MASK_INVOKEIDLIST = &HC
Public Const SEE_MASK_NOCLOSEPROCESS = &H40
Public Const SEE_MASK_FLAG_NO_UI = &H400

Declare Function ShellExecuteEX Lib "shell32.dll" Alias "ShellExecuteEx" _
(SEI As SHELLEXECUTEINFO) As Long
Public Function ShowProperties(FileName As String, OwnerhWnd As Long) As Long
  
    ' Open a file properties dialog for specified file if return value
    ' <=32 an error occurred

    Dim SEI As SHELLEXECUTEINFO
    Dim r As Long
     
    ' Fill in the SHELLEXECUTEINFO structure
    With SEI
        .cbSize = Len(SEI)
        .fMask = SEE_MASK_NOCLOSEPROCESS Or SEE_MASK_INVOKEIDLIST Or SEE_MASK_FLAG_NO_UI
        .hwnd = OwnerhWnd
        .lpVerb = "properties"
        .lpFile = FileName
        .lpParameters = vbNullChar
        .lpDirectory = vbNullChar
        .nShow = 0
        .hInstApp = 0
        .lpIDList = 0
    End With
     
    ' Call the API
    r = ShellExecuteEX(SEI)
     
    ' Return the instance handle as a sign of success
    ShowProperties = SEI.hInstApp
  
End Function

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -