ShadowRayz Posted June 9, 2008 Posted June 9, 2008 Sometimes keygens and websites use that feature, in a program you got a textbox and the text like moves to the left and it deletes a character everytime, but then the text reappears from the other side, thats where im stuck..i can make it disappear to the left but i have no idea how to make it reappear again...that's the code i wrote so farPublic back As StringPrivate Sub Command1_Click() If (Timer1.Enabled = True) Then Timer1.Enabled = False Else Timer1.Enabled = True End IfEnd SubPrivate Sub Form_Load()Timer1.Enabled = FalseTimer1.Interval = 80End SubPrivate Sub Timer1_Timer() If (LenB(Text1.Text) <> 0) Then back = Text1.Text back = Mid$(back, 2, Len(Text1.Text)) Text1.Text = back Else End End IfEnd Subany suggestions how it should be done?
atom0s Posted June 9, 2008 Posted June 9, 2008 http://pscode.com/vb/scripts/ShowCode.asp?...16&lngWId=1 Check out that example. Should be what you want.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now