A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Spell Check



 
 
Thread Tools Display Modes
  #1  
Old May 8th, 2010, 02:31 PM posted to microsoft.public.access
jwebster1979
external usenet poster
 
Posts: 35
Default Spell Check

I want to have a text box that is serving as a "notes box" that is feeding a
subform to spellcheck automatically before it transfers to my subform.
Basically I want spell check to run before I send the information.

  #2  
Old May 8th, 2010, 04:31 PM posted to microsoft.public.access
Arvin Meyer [MVP][_2_]
external usenet poster
 
Posts: 2,310
Default Spell Check

Here's a function that you can call in the AfterUpdate event of the textbox:

Private Sub txtWhatever_AfterUpdate()
On Error Resume Next
With Me.txtWhatever
.SetFocus
.SelStart = 0
.SelLength = Len(Me.txtWhatever)
DoCmd.RunCommand acCmdSpelling
End With
End Sub
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.accessmvp.com
http://www.mvps.org/access


"jwebster1979" wrote in message
...
I want to have a text box that is serving as a "notes box" that is feeding
a
subform to spellcheck automatically before it transfers to my subform.
Basically I want spell check to run before I send the information.



  #3  
Old May 8th, 2010, 05:36 PM posted to microsoft.public.access
jwebster1979
external usenet poster
 
Posts: 35
Default Spell Check

works great thankyou!!!

"Arvin Meyer [MVP]" wrote:

Here's a function that you can call in the AfterUpdate event of the textbox:

Private Sub txtWhatever_AfterUpdate()
On Error Resume Next
With Me.txtWhatever
.SetFocus
.SelStart = 0
.SelLength = Len(Me.txtWhatever)
DoCmd.RunCommand acCmdSpelling
End With
End Sub
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.accessmvp.com
http://www.mvps.org/access


"jwebster1979" wrote in message
...
I want to have a text box that is serving as a "notes box" that is feeding
a
subform to spellcheck automatically before it transfers to my subform.
Basically I want spell check to run before I send the information.



.

  #4  
Old May 31st, 2010, 06:35 PM posted to microsoft.public.access
DULCIORA
external usenet poster
 
Posts: 1
Default Spell Check


"jwebster1979" escribió en el
mensaje de noticias
...
I want to have a text box that is serving as a "notes box" that is feeding
a
subform to spellcheck automatically before it transfers to my subform.
Basically I want spell check to run before I send the information.


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 06:24 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.