![]() |
| The AccuTerm forum has moved. Go to community.rocketsoftware.com to register for the new Rocket forum. |
|
Post Reply
|
| Author | |
acmedia
Senior Member
Joined: April 26 2005 Status: Offline Points: 119 |
Post Options
Thanks(0)
Quote Reply
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?
|
|
![]() |
|
Deech
Moderator Group
Moderator -- GUI Development Joined: December 15 2003 Status: Offline Points: 177 |
Post Options
Thanks(0)
Quote Reply
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!!
|
|
![]() |
|
Deech
Moderator Group
Moderator -- GUI Development Joined: December 15 2003 Status: Offline Points: 177 |
Post Options
Thanks(0)
Quote Reply
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!!
|
|
![]() |
|
acmedia
Senior Member
Joined: April 26 2005 Status: Offline Points: 119 |
Post Options
Thanks(0)
Quote Reply
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.
|
|
![]() |
|
acmedia
Senior Member
Joined: April 26 2005 Status: Offline Points: 119 |
Post Options
Thanks(0)
Quote Reply
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. |
|
![]() |
|
Post Reply
|
|
|
Tweet
|
| Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |