China GIS

聚一乐,散而得其所矣是一乐。

导航

在VB应用程序中单击按钮打开word文档。

Posted on 2004-07-19 12:34  集思  阅读(2369)  评论(6编辑  收藏  举报

 

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 LongAs Long


Private Sub Command1_Click()
    ShellExecute Me.hwnd, 
"open""c:a.doc", vbNullString, vbNullString, 3

End Sub

Private Sub Command2_Click()
    
Dim WordApp As
 Word.Application
    
    
Set WordApp = New
 Word.Application
    WordApp.Documents.Add (
"c:a.doc"
)
    WordApp.Visible 
= True

 
    
Set WordApp = Nothing
End Sub