VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



This is a simple backwards writer that doesn't require that UCase and LCase nonsense. You can have

by CoMPuTer MAsSteR (3 Submissions)
Category: String Manipulation
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Thu 9th May 2002
Date Added: Mon 8th February 2021
Rating: (1 Votes)

This is a simple backwards writer that doesn't require that UCase and LCase nonsense. You can have the text in any case you want.

API Declarations



Just add a textbox to your form and paste this into the code.

Rate This is a simple backwards writer that doesn't require that UCase and LCase nonsense. You can have



If KeyAscii = vbKeyBack Then
GoTo QUIT
ElseIf KeyAscii = vbKeyDelete Then
GoTo QUIT
Else
Text1.SelStart = 0
End If

QUIT:
Exit Sub
End Sub

Download this snippet    Add to My Saved Code

This is a simple backwards writer that doesn't require that UCase and LCase nonsense. You can have Comments

No comments have been posted about This is a simple backwards writer that doesn't require that UCase and LCase nonsense. You can have . Why not be the first to post a comment about This is a simple backwards writer that doesn't require that UCase and LCase nonsense. You can have .

Post your comment

Subject:
Message:
0/1000 characters