Worddatei aus VB Programm öffnen

Timkom

Grünschnabel
Hallo,

habe eine Frage. Wie öffne ich eine .doc Datei unter VB. Würde gerne einen Hilfe Button bei meinem Programm einbauen der eine Word-Datei öffnet.

MFG

Timkom
 
Also komm! So schwierig ist das nun auch nicht wenn man sich das Tutorial einmal durchliest!
Code:
Option Explicit

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
Und dann öffnest du deine Worddatei einfach so:
Code:
ShellExecute Me.hwnd, "Open", "C:\blubb.doc", "", "", 1
 
Mach das mal in ein Modul:

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

und das in deinen Formcode

ShellExecute Me.hwnd, "Open", "C:\blubb.doc", "", "", 1

Vielleicht klappts dann ;-]
 
Zurück