Restrict textbox input to alphanumeric AND dash and underscore?

roy999

New Member
Joined
Aug 30, 2018
Messages
2
Hello,
I currently have a userform with a textbox that limits the user input to accept only alphanumeric. I had found that code in an older thread on this board here.

The code works great but now I've decided that the user should also be allowed to include "-" and/or "_" along with alphanumeric in that particular field. I haven't been able to figure out what changes need to be made so that only letters, numbers, - and _ are valid input.

Any help would be appreciated!

Code:
Private Sub TextBoxInputComment_Change()

For i = 1 To Len(TextBoxInputComment.Value)
    If Mid(TextBoxInputComment.Value, i, 1) Like "*[!0-9A-Za-z]*" Then
        strComment = strComment
    Else
        strComment = strComment & Mid(TextBoxInputComment.Value, i, 1)
    End If
Next
       
TextBoxInputComment.Value = strComment

End Sub
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
try
Code:
If Mid(TextBoxInputComment.Value, i, 1) Like "*[!0-9A-Za-z_-]*" Then
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,216,106
Messages
6,128,863
Members
449,473
Latest member
soumyahalder4

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