Code Amendment Needed: Clear the contents of a text when its contents are selected while pressing a key - VBA

kelly mort

Well-known Member
Joined
Apr 10, 2017
Messages
2,169
Office Version
  1. 2016
Platform
  1. Windows
Hello good morning/afternoon/evening.
I have this code here that I want to do a few amendments and I need your help with that.

I want to achieve two goals but if I can get at least one goal, I will be very happy.

1. When I select all the contents of the textbox and press a key afterwards, I want to replace the pressed character with the highlighted content - just like it is with text editors.

2. On this line:
Code:
Case Is > 7 : .Text = Left (.Text, 7)
When I press keys after all 8 characters inside the textbox, the last character keeps being replaced with whatever new character or key pressed.

How do I avoid that?
If I want to display alert while there are 8 characters inside already and I press a key again?

Code:
Private Sub TextBox1_KeyPress (ByVal KeyAscii As MSForms.ReturnInteger)
     With TextBox1 
           KeyAscii = KeyAscii * -CLong (Chr (KeyAscii) Like "[0-9]")
           Select Case Len (.Text)
               Case Is = 2 : .Text = .Text & "-"
               Case Is = 5 : .Text = .Text & "-"
               Case Is > 7 : .Text = Left (.Text, 7)
          End Select 
     End With
End Sub
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hi,
try setting the MaxLengh property of the control and see if that helps you

Rich (BB code):
With TextBox1
            .MaxLength = 8
           KeyAscii = KeyAscii * -CLng(Chr(KeyAscii) Like "[0-9]")
           Select Case Len(.Text)
               Case Is = 2: .Text = .Text & "-"
               Case Is = 5: .Text = .Text & "-"
               Case Is > 7: .Text = Left(.Text, 7)
          End Select
     End With

Dave
 
Upvote 0
Hi @dmt32,
I have tried that maxlength before but it did not work.

The last character keeps changing when I press a key.

However, your post helped me to fix that error using the len function on this line:

Code:
  Case Is > 7: .Text = Left(.Text, 7)

Implementation :

Code:
......
  Case Is > 7: 
      If Len (.Text) = 8 Then
         MsgBox "Hi"
       Else
         .Text = Left(.Text, 7)
       End If

Thanks for the tip.
 
Upvote 0
Solution
How about the first request?

If anyone has any idea how to handle that situation I would love it.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

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