WEB开发网
开发学院WEB开发综合 VB中调用Word拼写检查 阅读

VB中调用Word拼写检查

 2006-02-27 11:43:04 来源:WEB开发网   
核心提示:FunctionCheckSpell(IncorrectTextasstring)asstringDimWordAsObject,retText$OnErrorResumeNext'建立对象并打开WORDSetWord=CreateObject("Word.Basic")'把需要检查
FunctionCheckSpell(IncorrectTextasstring)asstring
DimWordAsObject,retText$
OnErrorResumeNext
'建立对象并打开WORD
SetWord=CreateObject("Word.Basic")

'把需要检查的STRING放到WORD
Word.AppShow
Word.FileNew
Word.InsertIncorrectText

'运行WORD拼写检查
Word.ToolsSpelling
Word.EditSelectAll

'取返回值
retText=Word.Selection$()
CheckSpell=Left$(retText,Len(retText)-1)

'关闭文件并回到VB应用
Word.FileClose2
Show

SetWord=Nothing
EndFunction->

Tags:VB 调用 Word

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接