• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

在VB中如何试用MS Word的拼写检查工具

发布: 2007-6-21 21:57 | 作者:   | 来源:   | 查看: 45次 | 进入软件测试论坛讨论

领测软件测试网

   
  How to use the Spelling Corrector tool of MS Word within VB

If you would like to incorporate a Spellings Corrector in your VB app, it would take you quite a long time, this trick shows you in a simple example how to use MS Word磗 Spelling Corrector within VB.

Create a new project with one form. Put a CommandButton and a TextBox on it.

Set the following properties of the textbox:
"Height = a couple of lines" Multiline=true ScrollBars=Vertical

Code

Private Sub Command1_Click()
Text1 = SpellCheck(Text1)
End Sub

Public Function SpellCheck(ByVal IncorrectText$) As String
Dim Word As Object, retText$

On Error Resume Next

注释:Create the Object and open Word
Set Word = CreateObject("Word.Basic")

注释:Change the active window to Word, and insert
注释:the text from Text1 into Word.

Word.AppShow
Word.FileNew
Word.Insert IncorrectText

注释:Runs the Speller Corrector
Word.ToolsSpelling
Word.EditSelectAll

注释:Trim the trailing character from the returned text.

retText = Word.Selection$()
SpellCheck = Left$(retText, Len(retText) - 1)

注释:Close the Document and return to Visual Basic.

Word.FileClose 2
Show

注释:Set the word object to nothing to liberate the
注释:occupied memory

Set Word = Nothing
End FunctionI used WordBasic because that way you can also use this tip with older versions of Word as well.

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网