2010-07-02 107 views

Trả lời

30

Bạn có thể sử dụng chức năng Windows API ShellExecute để làm như vậy:

Option Explicit 

Private Declare Function ShellExecute _ 
    Lib "shell32.dll" Alias "ShellExecuteA" (_ 
    ByVal hWnd As Long, _ 
    ByVal Operation As String, _ 
    ByVal Filename As String, _ 
    Optional ByVal Parameters As String, _ 
    Optional ByVal Directory As String, _ 
    Optional ByVal WindowStyle As Long = vbMinimizedFocus _ 
) As Long 

Public Sub OpenUrl() 

    Dim lSuccess As Long 
    lSuccess = ShellExecute(0, "Open", "www.google.com") 

End Sub 

Chỉ cần một nhận xét ngắn liên quan đến bảo mật: Nếu URL xuất phát từ người dùng nhập vào chắc chắn để xác nhận đúng đầu vào như ShellExecute sẽ thực hiện bất kỳ lệnh với quyền của người dùng, cũng có thể thực hiện format c: nếu người dùng là quản trị viên.

+6

Chỉ cần lưu ý cho bất kỳ ai có thể sử dụng tính năng này trong tương lai: Bạn phải đặt hàm ShellExecute ở đầu trang, trong phần khai báo. – dmr

+3

Một số có thể cần phải thêm "PtrSafe" trong tuyên bố khai báo: "Private Declare PtrSafe Function ShellExecute ..." để làm cho nó hoạt động trong 64bit. – Jroonk

22

Bạn thậm chí có thể nói:

FollowHyperlink "www.google.com" 

Nếu bạn nhận được Automation Lỗi sau đó sử dụng http://:

ThisWorkbook.FollowHyperlink("http://www.google.com") 
+7

Nếu trong Excel, bạn cần một đối tượng sổ làm việc, như ThisWorkbook.FollowHyperlink "www.google.com" –

+0

Tôi đã nhận được lỗi Tự động hóa. Vì vậy, tôi cần sử dụng 'http: //'. Sau đó, lệnh đầy đủ là: 'ThisWorkbook.FollowHyperlink" http://www.google.com.br "' –

+0

Trong Word nó là ActiveDocument.FollowHyperlink "http://www.google.com" –

5

Nếu bạn muốn có một giải pháp mạnh mẽ hơn với ShellExecute rằng sẽ mở ra bất kỳ tập tin, thư mục hoặc URL bằng cách sử dụng chương trình liên quan đến hệ điều hành mặc định để thực hiện, dưới đây là chức năng được lấy từ http://access.mvps.org/access/api/api0018.htm:

'************ Code Start ********** 
' This code was originally written by Dev Ashish. 
' It is not to be altered or distributed, 
' except as part of an application. 
' You are free to use it in any application, 
' provided the copyright notice is left unchanged. 
' 
' Code Courtesy of 
' Dev Ashish 
' 
Private Declare Function apiShellExecute 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 

'***App Window Constants*** 
Public Const WIN_NORMAL = 1   'Open Normal 
Public Const WIN_MAX = 3   'Open Maximized 
Public Const WIN_MIN = 2   'Open Minimized 

'***Error Codes*** 
Private Const ERROR_SUCCESS = 32& 
Private Const ERROR_NO_ASSOC = 31& 
Private Const ERROR_OUT_OF_MEM = 0& 
Private Const ERROR_FILE_NOT_FOUND = 2& 
Private Const ERROR_PATH_NOT_FOUND = 3& 
Private Const ERROR_BAD_FORMAT = 11& 

'***************Usage Examples*********************** 
'Open a folder:  ?fHandleFile("C:\TEMP\",WIN_NORMAL) 
'Call Email app: ?fHandleFile("mailto:[email protected]",WIN_NORMAL) 
'Open URL:   ?fHandleFile("http://home.att.net/~dashish", WIN_NORMAL) 
'Handle Unknown extensions (call Open With Dialog): 
'     ?fHandleFile("C:\TEMP\TestThis",Win_Normal) 
'Start Access instance: 
'     ?fHandleFile("I:\mdbs\CodeNStuff.mdb", Win_NORMAL) 
'**************************************************** 

Function fHandleFile(stFile As String, lShowHow As Long) 
Dim lRet As Long, varTaskID As Variant 
Dim stRet As String 
    'First try ShellExecute 
    lRet = apiShellExecute(hWndAccessApp, vbNullString, _ 
      stFile, vbNullString, vbNullString, lShowHow) 

    If lRet > ERROR_SUCCESS Then 
     stRet = vbNullString 
     lRet = -1 
    Else 
     Select Case lRet 
      Case ERROR_NO_ASSOC: 
       'Try the OpenWith dialog 
       varTaskID = Shell("rundll32.exe shell32.dll,OpenAs_RunDLL " _ 
         & stFile, WIN_NORMAL) 
       lRet = (varTaskID <> 0) 
      Case ERROR_OUT_OF_MEM: 
       stRet = "Error: Out of Memory/Resources. Couldn't Execute!" 
      Case ERROR_FILE_NOT_FOUND: 
       stRet = "Error: File not found. Couldn't Execute!" 
      Case ERROR_PATH_NOT_FOUND: 
       stRet = "Error: Path not found. Couldn't Execute!" 
      Case ERROR_BAD_FORMAT: 
       stRet = "Error: Bad File Format. Couldn't Execute!" 
      Case Else: 
     End Select 
    End If 
    fHandleFile = lRet & _ 
       IIf(stRet = "", vbNullString, ", " & stRet) 
End Function 
'************ Code End ********** 

Chỉ cần đặt điều này vào một mô-đun riêng biệt và gọi fHandleFile() với các tham số đúng.

Các vấn đề liên quan