Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Auto typer from list ?
#5
Sorry about bringing up a older thread. I have compiled the following source however i am having problems Nono. Source as follows.
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
Threading.Thread.Sleep(2000)
SendKeys.Send(Obj & "~")
Next
End Sub
End Class
The interval/pasting feature is working perfect however what i would like it to do is press enter after each object off listbox is posted. Also if possible clear the location in which it posted in before posting the next line off the listbox. So it will be something like this. Load text file>Click start>Post line off listbox>pause/enter>clear text previously posted> repeat process but post next line off listbox. Hopefully this is explained well. Much appreciated in advance regards UB3R.
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,544 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,203 07-21-2010, 09:55 PM
Last Post: `P R O D I G Y™

Forum Jump:


Users browsing this thread: 1 Guest(s)