ファイルの関連付けているEXEで起動する

<戻る

APIの使い方を示します


ShellExecuteを使います。

APIの宣言は、以下のとおりです。

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

使い方の例は、

ShellExecute Form1.hWnd , vbNullString , App.Path & "\index.html" , vbNullString , vbNullString , vbNull

と、するとHTMLファイルに関連付けされていたブラウザが起動してIndex.htmlの中身が表示されます。

 

<戻る


http://www.vector.co.jp/authors/VA015521/