Adblock breaks this site

First Program [Auto Typer]

Discussion in 'Programming General' started by hockeykid09, Dec 22, 2007.

  1. hockeykid09

    hockeykid09 Guru
    Banned

    Joined:
    Mar 16, 2007
    Posts:
    1,162
    Referrals:
    0
    Sythe Gold:
    0
    First Program [Auto Typer]

    I just started programming and this is the first real program I've made.
    It still needs work but it works pretty good. Heres the code.

    Code:
    Private Sub command1_Click()
    Timer1.Enabled = True
    End Sub
    
    Private Sub Timer1_Timer()
    SendKeys Text1.Text
    End Sub
    
    Private Sub Command2_Click()
    Timer2.Enabled = True
    End Sub
    
    Private Sub Timer2_Timer()
    SendKeys Text2.Text
    End Sub
    
    Private Sub Command5_Click()
    Timer1.Interval = 100
    Timer2.Interval = 100
    End Sub
    
    Private Sub Command6_Click()
    Timer1.Interval = 300
    Timer2.Interval = 300
    End Sub
    
    Private Sub Command7_Click()
    Timer1.Interval = 500
    Timer2.Interval = 500
    End Sub
    
    Private Sub command3_Click()
    Timer1.Enabled = False
    Timer2.Enabled = False
    End Sub
    
    Private Sub command4_Click()
    End
    End Sub
    
    I don't know how to work the combo boxes yet. How do I get it so that when
    I select a thing from the combo box it goes into the text box?

    Heres the dl link
    http://rapidshare.com/files/78412048/HockeyKid_s_Auto_Typer_v1.0.exe.html

    It's clean. Scan if you want. Also If someone could verify it ppl would dl.

    Some credit to The Dark, I modified his basic auto talker form.
     
  2. warpclaw

    warpclaw Forum Addict
    Banned

    Joined:
    May 5, 2007
    Posts:
    434
    Referrals:
    0
    Sythe Gold:
    0
    First Program [Auto Typer]

    Its good.. but still problems.. ask officials for help :) ull get it running in no time
     
  3. hockeykid09

    hockeykid09 Guru
    Banned

    Joined:
    Mar 16, 2007
    Posts:
    1,162
    Referrals:
    0
    Sythe Gold:
    0
    First Program [Auto Typer]

    Thanks, I forgot one MAJOR thing though... How do i get it to press enter after it types the message before typing it again. Like for rs to send it you have to push enter.
     
  4. Covey

    Covey Creator of EliteSwitch
    Retired Sectional Moderator Visual Basic Programmers

    Joined:
    Sep 9, 2005
    Posts:
    4,510
    Referrals:
    9
    Sythe Gold:
    9
    Discord Unique ID:
    807246764155338833
    Discord Username:
    Covey#1816
    First Program [Auto Typer]

    sendkeys "{ENTER}"
     
  5. Nullware

    Nullware Guru

    Joined:
    Jan 30, 2007
    Posts:
    1,761
    Referrals:
    4
    Sythe Gold:
    0
    First Program [Auto Typer]

    Code:
    SendKeys Text1.Text & "{ENTER}"
     
  6. hockeykid09

    hockeykid09 Guru
    Banned

    Joined:
    Mar 16, 2007
    Posts:
    1,162
    Referrals:
    0
    Sythe Gold:
    0
    First Program [Auto Typer]

    Thanks guys.
     
< Paying alot for help | C++ | Delphi | <<<< | Can't compile... >


 
 
Adblock breaks this site