Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Auto typer from list ?
#2
Adding it to the list:
Code:
Using sr As New StreamReader(Environment.ExpandEnvironmentVariables("%UserProfile%\Desktop\file.txt"))
    While sr.Peek > -1
        Dim Ln As String = sr.ReadLine
        If Not String.IsNullOrWhiteSpace(Ln) Then _
        ListBox1.Items.Add(Ln)
    End While
End Using

And for sending them, perhaps you want to make a delay for a couple seconds or so:
Code:
Threading.Thread.Sleep(2000)
For Each Obj As String In ListBox1.Items
    SendKeys.Send(Obj & "~")
Next

Just the basics
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,191 01-16-2012, 02:13 PM
Last Post: FizzyMentos
  [VB.net] Auto fill - Auto Login fanste 2 2,050 12-17-2011, 03:17 PM
Last Post: fanste
  [HELP] AUTO TYPER MirZan 11 3,020 03-21-2011, 12:28 PM
Last Post: z3r0c00l
  [Tut] How to make an auto text spammer in vb 2008. [Beginner] DeMeR 4 3,947 10-04-2010, 07:57 AM
Last Post: Jordan L.
  Auto Updater DeHaterZ 6 1,010 07-21-2010, 09:55 PM
Last Post: `P R O D I G Y™

Forum Jump:


Users browsing this thread: 1 Guest(s)