Spelling check

D

David Howlett

I'm trying to get Spelling check to stay on one text box but the behavior
seems different on different computers.

I have three computers all with Access 2000 and the same application. Here
is my code (suggested via the newsgroup):

Set ctlCurrentControl = Screen.ActiveControl
ctlCurrentControl.SelStart = 0
ctlCurrentControl.SelLength = Len(ctlCurrentControl & "")
DoCmd.RunCommand acCmdSpelling

One one computer, spelling check stops after completing the currently
selected text box. On two others it jumps from text box to text box and even
skips records! What's the deal?
 
Top