My goal is for the person to enter a text. Let's suppose that in a textbox
with multiline=true
, and in that text, with each line break, this row is treated differently, type, with each phrase in textbox
I can perform a different function if you want. Simply using some command for the text incorporates everything written in textbox
, and I wanted to line by line.
Another example: Let's suppose I want to do a flooder , then the person types what they want to be told in textbox
and if I use a timer :
Clipboard.SetDataObject(TextBox1.Text, True)
SendKeys.Send("^v{ENTER}")
With this code I was going to get what was written in textbox1
and as soon as her mouse went through a dialog box, the message would be sent, but I would send all the sentences of the person at once, and I want it send one by one separately, so I could even add a send interval between them.
The tool does not have to be exactly textbox
, it can be the one that works better and simpler.