SpellCheck in VBA


Posted by Paul Magruder on September 27, 2000 6:58 AM

Is there a way to run SpellCheck from VBA? Do you know the Code?
Thanks
Paul



Posted by Ivan Moala on September 28, 2000 3:03 AM

Paul try
Sub Spelling()
'Shows Spelling control
CommandBars.FindControl(Id:=2).Execute
End Sub


Ivan