Basic Auto typer in vb6

Discussion in 'Programming General' started by Uncle_Vodka, May 20, 2008.

Basic Auto typer in vb6
  1. Unread #1 - May 20, 2008 at 8:29 PM
  2. Uncle_Vodka
    Joined:
    May 20, 2008
    Posts:
    74
    Referrals:
    0
    Sythe Gold:
    0

    Uncle_Vodka Member

    Basic Auto typer in vb6

    Ok well lets start by opening up your vb6

    Click on standard exe


    ok now we will need 2 text boxes , 2 command boxes , 1 timer


    Now Rename one text box ( in the text property ) to " Type Message Here "
    Rename the other text box ( in text property ) to " 5 " ( or any number )

    Now we rename the Command1 box to " Start "
    Rename the other Command box to " Stop "

    Now allign those to what ever way you want to.


    --

    Now we move on to to the coding part


    I will be nice since this a tutorial and post the code for you

    Code:
    Private Sub Command1_Click() 
    
    'Makes that the timer is set to what ever's in the second textbox in seconds 
    Timer1.Interval = Text2.Text * 1000  
     
    'Starts the timer 
    Timer1.Enabled = True  
     
    End Sub 
    Private Sub Command2_Click()  
     
    'Stops the timer 
    Timer1.Enabled = False  
     
    End Sub  
     
    Private Sub Timer1_Timer()  
     
    'Works like you quickly type what ever's in the first textbox 
    SendKeys Text1.Text  
     
    'Works like you quickly type the enter key 
    SendKeys "{enter}"  
     
    End Sub
    To imput this code you can double click anywhere on the forum and erase what ever is on the screen and copy and paste that.


    Then you click on file

    Make project1.exe and name it to what ever you want


    --

    I hope this helps.


    -BLG
     
  3. Unread #2 - May 20, 2008 at 9:38 PM
  4. jdsfighter
    Joined:
    Jan 21, 2007
    Posts:
    603
    Referrals:
    0
    Sythe Gold:
    0

    jdsfighter Forum Addict
    Visual Basic Programmers

    Basic Auto typer in vb6

    This has now officially been covered so much that it is an irrelevant topic from now on to the end of the age.

    Atleast teach the people how to make it more secure with a for loop, a mid statement, and a wait function.
     
  5. Unread #3 - May 20, 2008 at 9:53 PM
  6. Uncle_Vodka
    Joined:
    May 20, 2008
    Posts:
    74
    Referrals:
    0
    Sythe Gold:
    0

    Uncle_Vodka Member

    Basic Auto typer in vb6

    read the title bro..

    "BASIC"
     
  7. Unread #4 - May 20, 2008 at 11:09 PM
  8. jdsfighter
    Joined:
    Jan 21, 2007
    Posts:
    603
    Referrals:
    0
    Sythe Gold:
    0

    jdsfighter Forum Addict
    Visual Basic Programmers

    Basic Auto typer in vb6

    Here let me show you what I mean.

    http://sythe.org/showthread.php?t=324748
    http://sythe.org/showthread.php?t=323793
    http://sythe.org/showthread.php?t=398267
    http://sythe.org/showthread.php?t=346924
    http://sythe.org/showthread.php?t=354655

    Do I need to find more, there are way to many tutorials on this subject. Because if you need more proof I shall go through the archives and go onto other forums to show you what I mean.

    If you are going to write a tutorial on something, write it on something that no one has written on before, or if has been written on before, take a new approach, show people how to do it step by step, show pictures, tell the pro's and con's.

    If you are going to write on something you need to be informed on a fair amount of its uses. You also need to show what can be done to further improve upon the methods you list.

    The moral of this story is, if something has been done thousands of times you will never gain recognition for doing it over. The ones who do something innovative and unique are the ones that get their props.
     
  9. Unread #5 - May 20, 2008 at 11:42 PM
  10. Uncle_Vodka
    Joined:
    May 20, 2008
    Posts:
    74
    Referrals:
    0
    Sythe Gold:
    0

    Uncle_Vodka Member

    Basic Auto typer in vb6

    oh I didnt search em but oh well.. I helped lol.
     
  11. Unread #6 - May 21, 2008 at 2:09 AM
  12. Swan
    Joined:
    Jan 23, 2007
    Posts:
    4,957
    Referrals:
    0
    Sythe Gold:
    0
    Sythe's 10th Anniversary Member of the Month Winner

    Swan When They Cry...
    Retired Global Moderator

    Basic Auto typer in vb6

    No you didn't. If you're wondering why people are getting pissed off it's because it's been posted x million times by other people.

    Be innovative, and people are more bound to use your software and credit your ideas. I barely release anything, because whatever I use is mostly for personal use. (e.g. I can create an autotyper in the time it takes to download one, I can create a scripting engine to macro tedious personal tasks etc).

    Advice: ditch VB, if you continue a programming career you probably will in the long run.
     
  13. Unread #7 - May 21, 2008 at 2:38 AM
  14. Covey
    Joined:
    Sep 9, 2005
    Posts:
    4,510
    Referrals:
    9
    Sythe Gold:
    9
    Discord Unique ID:
    807246764155338833
    Discord Username:
    Covey#1816

    Covey Creator of EliteSwitch
    Retired Sectional Moderator Visual Basic Programmers

    Basic Auto typer in vb6

    Don't try and please yourself, you in no positive way helped the Visual Basic community. If anything you are helping ruin it.


    You mean "LEECHED" right?
    http://forum.free-games.com.au/foru...sic_/_VB_F49/[TUT]_Basic_Auto-talker_P637571/

    You didn't even have the intelligence to alter the code to make it "ungooglable".

    You, sir. FAIL
     
  15. Unread #8 - May 21, 2008 at 1:59 PM
  16. Uncle_Vodka
    Joined:
    May 20, 2008
    Posts:
    74
    Referrals:
    0
    Sythe Gold:
    0

    Uncle_Vodka Member

    Basic Auto typer in vb6

    where did I say the code was mine?
     
  17. Unread #9 - May 21, 2008 at 5:28 PM
  18. Swan
    Joined:
    Jan 23, 2007
    Posts:
    4,957
    Referrals:
    0
    Sythe Gold:
    0
    Sythe's 10th Anniversary Member of the Month Winner

    Swan When They Cry...
    Retired Global Moderator

    Basic Auto typer in vb6

    It is required to give credits if you are to copy something. Such activity without giving credit in the real world is illegal. Likewise, even here people don't like others ripping their code without the proper honourable mention. I've been led to conclude that you have a veeeeeeery long way to go.
     
  19. Unread #10 - May 22, 2008 at 2:21 AM
  20. Covey
    Joined:
    Sep 9, 2005
    Posts:
    4,510
    Referrals:
    9
    Sythe Gold:
    9
    Discord Unique ID:
    807246764155338833
    Discord Username:
    Covey#1816

    Covey Creator of EliteSwitch
    Retired Sectional Moderator Visual Basic Programmers

    Basic Auto typer in vb6

    You didn't, nor do you have to.
    I post my own code all the time and i don't say "This code is mine" in every post.

    As swan was saying it is required to supply credits if the code is not yours. If you don't, people rightly assume that the code is yours.

    And since you practically copied and pasted this thread, you could have at least copy and pasted a decent one.
     
  21. Unread #11 - May 23, 2008 at 8:48 PM
  22. Supah Fly
    Joined:
    Aug 22, 2007
    Posts:
    202
    Referrals:
    1
    Sythe Gold:
    0

    Supah Fly Active Member
    Banned

    Basic Auto typer in vb6

    Dont mind him, hes a h4ck-y0u.org imposter rofl. He cant code shit.
     
  23. Unread #12 - May 24, 2008 at 3:24 AM
  24. Covey
    Joined:
    Sep 9, 2005
    Posts:
    4,510
    Referrals:
    9
    Sythe Gold:
    9
    Discord Unique ID:
    807246764155338833
    Discord Username:
    Covey#1816

    Covey Creator of EliteSwitch
    Retired Sectional Moderator Visual Basic Programmers

    Basic Auto typer in vb6

    Umm, who are you referring to?
     
  25. Unread #13 - May 31, 2008 at 8:20 PM
  26. Supah Fly
    Joined:
    Aug 22, 2007
    Posts:
    202
    Referrals:
    1
    Sythe Gold:
    0

    Supah Fly Active Member
    Banned

    Basic Auto typer in vb6

    boyslikegirls

    aka
    fake "illuz1on"
    and known as (famous)

    The crimson, "wah wah prodigy scammed me even though my proof is bogus" just to make a scene, he would scam in a second, and thats not even as often as he changes his msn/leeched name. He gave out free money to people and claimed it back. (Im guessing stolen paypal)

    That and he posted this on a bunch of forums that had a programming section, and he probably posted it on the same forum as he got it from.
     
  27. Unread #14 - Jun 1, 2008 at 2:08 AM
  28. Jokerz
    Joined:
    Apr 24, 2008
    Posts:
    610
    Referrals:
    0
    Sythe Gold:
    0

    Jokerz Forum Addict

    Basic Auto typer in vb6

    Supah Fool is correct there ;)

    He's been known as the following:

    - Fake Illuz1on (Banned off DhGaming by Myself. He attempted to scam)
    - The Crimson (Banned off Fagex)
    - Hotfrog
    - And some other shit.

    He's a well known fag and this aint his shit.
     
< I Really Need 5M SomeOne | Importing sound >

Users viewing this thread
1 guest


 
 
Adblock breaks this site