tag:blogger.com,1999:blog-7176045.post-1142527643143271842006-03-16T19:46:00.000+03:002006-03-16T19:47:23.166+03:002006-03-16T19:47:23.166+03:00How to check spelling of a text, entered into textboxThe sample code below shows the idea – you move cursor to textbox, select text and then run spelling:<br /><pre><br />With Me.TextBox1<br /> .SetFocus<br /> .SelStart = 0<br /> .SelLength = Len(.Text)<br />End With<br /><br />DoCmd.SetWarnings False<br />DoCmd.RunCommand acCmdSpelling<br />DoCmd.SetWarnings True<br /></pre>Alex Dybenkohttp://www.blogger.com/profile/16954512620659022712noreply@blogger.com