From: jwebster1979 on 8 May 2010 09:31 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.
From: Arvin Meyer [MVP] on 8 May 2010 11:31 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" <jwebster1979(a)discussions.microsoft.com> wrote in message news:39EAE678-DBC7-4E53-B807-F88B0FEB135A(a)microsoft.com... >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. >
From: jwebster1979 on 8 May 2010 12:36 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" <jwebster1979(a)discussions.microsoft.com> wrote in message > news:39EAE678-DBC7-4E53-B807-F88B0FEB135A(a)microsoft.com... > >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. > > > > > . >
From: DULCIORA on 31 May 2010 13:35 "jwebster1979" <jwebster1979(a)discussions.microsoft.com> escribió en el mensaje de noticias news:39EAE678-DBC7-4E53-B807-F88B0FEB135A(a)microsoft.com... >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. >
|
Pages: 1 Prev: how can i send automatic email to customer through ms access Next: unbound text box |