程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> Visual Basic語言 >> VB綜合教程 >> 開啟文件屬性窗口

開啟文件屬性窗口

編輯:VB綜合教程
聲明:
  TypeSHELLEXECUTEINFO
  cbSizeAsLong
  fMaskAsLong
  hwndAsLong
  lpVerbAsString
  lpFileAsString
  lpParametersAsString
  lpDirectoryAsString
  nShowAsLong
  hInstAppAsLong
  lpIDListAsLong
  lpClassAsString
  hkeyClassAsLong
  dwHotKeyAsLong
  hIconAsLong
  hProcessAsLong
  EndType
  
  PublicConstSEE_MASK_INVOKEIDLIST=&HC
  PublicConstSEE_MASK_NOCLOSEPROCESS=&H40
  PublicConstSEE_MASK_FLAG_NO_UI=&H400
  
  DeclareFunctionShellExecuteEXLib"shell32.dll"Alias"ShellExecuteEx"(SEIAsSHELLEXECUTEINFO)AsLong
  
  代碼:
  '使用:ShowProps("c:command.com",Me.hWnd)
  PublicSubShowProps(FileNameAsString,OwnerhWndAsLong)
  DimSEIAsSHELLEXECUTEINFO
  DimrAsLong
  WithSEI
  .cbSize=Len(SEI)
  .fMask=SEE_MASK_NOCLOSEPROCESSOrSEE_MASK_INVOKEIDLISTOrSEE_MASK_FLAG_NO_UI
  .hwnd=OwnerhWnd
  .lpVerb="properties"
  .lpFile=FileName
  .lpParameters=vbNullChar
  .lpDirectory=vbNullChar
  .nShow=0
  .hInstApp=0
  .lpIDList=0
  EndWith
  r=ShellExecuteEX(SEI)
  EndSub->

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved