当前位置:编程学习 > VB >>

Command控件数组如何打开对应的word文档

  我创建了一个Command控件数组(其caption属性不同,如“X ,Y ,Z”其中X,Y,Z分别对应E:\program\X,Y,Z.Doc word文档),想通过单击该数组中每个Command(X,Y,Z)按钮则打开相应的“E:\program\X,Y,Z.Doc ”word文档。请各位大侠给我一个完整的代码。不甚感激! --------------------编程问答--------------------
Private Sub Command1_Click(Index As Integer)
    Dim WordApp As Word.Application
    
    Set WordApp = New Word.Application
    WordApp.Documents.Add ("E:\program\" & Command1(Index).Caption & ".Doc ")
    WordApp.Visible = True
 
    Set WordApp = Nothing
    
End Sub
--------------------编程问答-------------------- mark --------------------编程问答-------------------- mark --------------------编程问答-------------------- LZ:1楼回答的已经很清楚了
补充:VB ,  控件
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,