Posted June 9, 200817 yr 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?
June 9, 200817 yr http://pscode.com/vb/scripts/ShowCode.asp?...16&lngWId=1 Check out that example. Should be what you want.
Create an account or sign in to comment