modStartFile.bas
上传用户:laihaixin
上传日期:2013-01-26
资源大小:1169k
文件大小:1k
源码类别:

医药行业

开发平台:

Visual Basic

  1. Attribute VB_Name = "modStartFile"
  2. Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
  3. Private Declare Function GetDesktopWindow Lib "user32" () As Long
  4. Function StartDoc(DocName As String) As Long
  5.   Dim Scr_hDC As Long
  6.   Scr_hDC = GetDesktopWindow()
  7.   
  8.   'change "Open" to "Explore" to bring up file explorer
  9.   StartDoc = ShellExecute(Scr_hDC, "Open", DocName, "", "C:", 1)
  10. End Function