Need help on checking spelling in textbox placed in userform!

2588pillai

New Member
Joined
Jul 17, 2016
Messages
4
Hello,

I am not an expert, but a beginner in excel, stuck here now! I have created a textbox in a userform and need to know how to do the spell check for all the text boxes in the form using a command button click?

Please help.

Thanks/Aju
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Does this work?

Code:
Dim cCont As Control

For Each cCont In Me.Controls
    If TypeName(cCont) = "TextBox" Then
        Application.CheckSpelling(cCont.Text)
    End If
Next cCont</pre>
 
Upvote 0
Does this work?

Code:
Dim cCont As Control

For Each cCont In Me.Controls
    If TypeName(cCont) = "TextBox" Then
        Application.CheckSpelling(cCont.Text)
    End If
Next cCont

Thanks, but unfortunately that did not make any change to the sheet! (I have two text boxes "ObservationTextBox1" & "ActionTextBox1")

Any other way to do that?
 
Upvote 0

Forum statistics

Threads
1,216,747
Messages
6,132,491
Members
449,730
Latest member
SeanHT

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top