Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Auto typer from list ?
#6
I seemingly have figured out how to do the enter part etc.However what i would like it to do below is select all text in the location where pasted interval backspace then continue pasting words from the list. If anyone could help me it would highly appreciate it as i am kind of noob. Also much appreciated ace for the code above.
Quote:Public Class Form1
Dim streamer As IO.StreamReader
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
OpenFileDialog1.ShowDialog()
TextBox1.Text = OpenFileDialog1.FileName
End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
streamer = IO.File.OpenText(TextBox1.Text)
Dim mystring() As String = streamer.ReadToEnd.Split(vbNewLine)
ListBox1.Items.AddRange(mystring)
End Sub

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Threading.Thread.Sleep(2000)
For Each Obj As String In ListBox1.Items
SendKeys.Send(Obj & "~")
Threading.Thread.Sleep(5000)
SendKeys.Send("{ENTER}")
/////////Select all text needed here i assume.
SendKeys.Send("{BACKSPACE}")
Threading.Thread.Sleep(2000)
Next
End Sub
End Class
Eligible.
Reply


Messages In This Thread
Auto typer from list ? - by ÜB3R - 03-13-2012, 08:24 PM
RE: Auto typer from list ? - by AceInfinity - 03-13-2012, 09:36 PM
RE: Auto typer from list ? - by AceInfinity - 03-16-2012, 06:16 PM
RE: Auto typer from list ? - by ÜB3R - 07-18-2012, 01:17 AM
RE: Auto typer from list ? - by ÜB3R - 07-18-2012, 02:32 AM
RE: Auto typer from list ? - by AceInfinity - 07-18-2012, 06:57 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [RELEASE] Auto Forum Launcher Advanced [Updated 09/01/2012]] FizzyMentos 14 3,499 01-16-2012, 02:13 PM
Last Post: FizzyMentos
  [VB.net] Auto fill - Auto Login fanste 2 2,320 12-17-2011, 03:17 PM
Last Post: fanste
  [HELP] AUTO TYPER MirZan 11 3,545 03-21-2011, 12:28 PM
Last Post: z3r0c00l
  [Tut] How to make an auto text spammer in vb 2008. [Beginner] DeMeR 4 4,195 10-04-2010, 07:57 AM
Last Post: Jordan L.
  Auto Updater DeHaterZ 6 1,207 07-21-2010, 09:55 PM
Last Post: `P R O D I G Y™

Forum Jump:


Users browsing this thread: 3 Guest(s)