Rocket Software Homepage
Forum Home Forum Home > AccuTerm Knowledge Base (read only) > GUI Development
  New Posts New Posts RSS Feed - Spell checking?
  FAQ FAQ  Forum Search   Register Register  Login Login

The AccuTerm forum has moved. Go to community.rocketsoftware.com to register for the new Rocket forum.

Forum LockedSpell checking?

 Post Reply Post Reply
Author
Message
acmedia View Drop Down
Senior Member
Senior Member


Joined: April 26 2005
Status: Offline
Points: 119
Post Options Post Options   Thanks (0) Thanks(0)   Quote acmedia Quote  Post ReplyReply Direct Link To This Post Topic: Spell checking?
    Posted: February 16 2006 at 10:09am
Anyone know of a nice and simple way to spell check the contents of a text box?
Back to Top
Deech View Drop Down
Moderator Group
Moderator Group

Moderator -- GUI Development

Joined: December 15 2003
Status: Offline
Points: 177
Post Options Post Options   Thanks (0) Thanks(0)   Quote Deech Quote  Post ReplyReply Direct Link To This Post Posted: February 20 2006 at 4:35am
acmedia,

I'm not sure of the name but there is a clip board utility out there that can be configured to do spell checking on any type of field. I will get the name and URL of the utility and post it here.

Deech
Accuterm GUI--Changing the Face of MV Development!!
Back to Top
Deech View Drop Down
Moderator Group
Moderator Group

Moderator -- GUI Development

Joined: December 15 2003
Status: Offline
Points: 177
Post Options Post Options   Thanks (0) Thanks(0)   Quote Deech Quote  Post ReplyReply Direct Link To This Post Posted: February 20 2006 at 6:09am
acmedia,

I found the tool it is called Clipmate it does do some spell checking. You may have to play around with it to get it to do exactly what you want it to do.

Click Here for ClipMate

I hope this helps. If anyone else who knows of a better utility to do this please post it.

Deech
Accuterm GUI--Changing the Face of MV Development!!
Back to Top
acmedia View Drop Down
Senior Member
Senior Member


Joined: April 26 2005
Status: Offline
Points: 119
Post Options Post Options   Thanks (0) Thanks(0)   Quote acmedia Quote  Post ReplyReply Direct Link To This Post Posted: February 21 2006 at 6:36am
At the moment I'm looking for ways to call Word and use the functionality of that, rather than having to buy licenses for something else.
Back to Top
acmedia View Drop Down
Senior Member
Senior Member


Joined: April 26 2005
Status: Offline
Points: 119
Post Options Post Options   Thanks (0) Thanks(0)   Quote acmedia Quote  Post ReplyReply Direct Link To This Post Posted: February 21 2006 at 12:27pm
Actually Excel looks a better method. The code to do it in VB would be something like this:

' create an Excel object
Dim objExcel As Object
Set objExcel = CreateObject("Excel.Sheet")
    
' create a spreadsheet
Set objExcel = objExcel.Application.ActiveWorkbook.ActiveSheet
With objExcel
' have a spreadsheet that's only one cell
.Range("A1").Value = Text1.Text
' call the Excel checker on the cell
.CheckSpelling
' and we onlty come back here when it's finished
Text2.Text = .Range("A1").Value
End With

' destroy the Excel object
Set objExcel = Nothing

Now to try an AccuTermed version of it.
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.03
Copyright ©2001-2019 Web Wiz Ltd.