怎么样在word 宏里面 
判断word 文档里面
有没有项目符号

解决方案 »

  1.   

    怎么样在word 宏里面 
    判断word 文档里面
    有没有插入项目符号
      

  2.   

    参考:录制宏的方法:
    http://www.24xuexi.com/tutorial/computer/jichu/Word/2006-01-18/1137542400d155402.html
      

  3.   

    word这个东东....不象EXCEL那么好控制...............
      

  4.   

    这样,先引用word对象
    Private Sub Command1_Click()
    Dim AppWord As Word.Application
    Set AppWord = New Word.Application
    Dim mDoc As Word.Document
    Set mDoc = AppWord.Documents.Open("d:\nn\123.doc")'换成你的文件路径
    Dim mLists As Word.Lists
    Set mLists = mDoc.Lists
    MsgBox mLists.Count
    Set mLists = Nothing
    mDoc.Close
    Set mDoc = Nothing
    AppWord.Quit
    Set AppWord = Nothing
    End Sub