VB 中调用 Word 拼写检查
Function CheckSpell(IncorrectText as string) as string
Dim Word As Object, retText$
On Error Resume Next
注释: 建立对象并打开 WORD
Set Word = CreateObject("Word.Basic")
注释: 把需要检查的 STRING 放到 WORD
Word.AppShow
Word.FileNew
Word.Insert IncorrectText
注释: 运行 WORD 拼写检查
Word.ToolsSpelling
Word.EditSelectAll
注释: 取返回值
retText = Word.Selection$()
CheckSpell = Left$(retText, Len(retText) - 1)
注释:关闭文件并回到 VB 应用
Word.FileClose 2
Show
Set Word = Nothing
End Function
文章来源于领测软件测试网 https://www.ltesting.net/
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073