Not a Member Yet,
Click here to Register

ID: 188
Viewed: 3487
Added: Apr 29, 2002
Version:
Snippet uploaded by: snippet
Written By: unknown
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

How to toggle between insert & overwrite in a text box

Highlight all by clicking in box
<!---Declaration--->
none

Highlight All
<!---Code--->
'1.  Put a label On the form called 'lblOVR'

'2. Put this code In KeyUp event of Form
Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyInsert Then
If lblOVR = "Over" Then
lblOVR = "Insert"
Else
lblOVR = "Over"
End If
End If
End Sub

'3. Put this code In KeyPress event of Text Box
Private Sub txtText_KeyPress(KeyAscii As Integer)
'Exit if already selected
If txtText.SelLength > 0 Then Exit Sub

If lblOVR = "Over" Then
If KeyAscii <> 8 And txtText.SelLength = 0 Then
txtText.SelLength = 1 '8=backspace
End If
Else
txtText.SelLength = 0
End If

End Sub;


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!