I programmed a bot for this game and u can send chat throguh it to the game... after i send the chat it stays in the textbox how do i make it erase from textbox after its sent
Printable View
I programmed a bot for this game and u can send chat throguh it to the game... after i send the chat it stays in the textbox how do i make it erase from textbox after its sent
Text1.Text = ""
Use this:Quote:
Originally posted by Fox
Text1.Text = ""
Better :)VB Code:
Len(Text1.Text) = 0
Sorry dear but you can't assign a number to the Len() function. This just doesn't work at all ;)