Results 1 to 6 of 6

Thread: type send not send keys in vb

  1. #1
    Join Date
    May 2008
    Location
    Mental Hospital
    Posts
    414
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default type send not send keys in vb

    I deleted my other thread cause i didnt know that people could use .exe as a virus (im a noob at programing.) so can some one just show me the function for type send in visual basic? rep++ if you can help me

  2. #2
    Join Date
    Oct 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey it is pretty simple to use this command and also very usefull! .

    To use the commands below you can add SendKeys().
    A example of this would be to make it send the Esc key you would type

    Code:
    SendKeys.Send("{ESC}")
    Now if you want to send text all you do is add a textbox to your program and then you can use the code like this.

    Code:
    SendKeys.Send(TextBox1.Text)
    Here is a list of some keys and the code to use them.
    Code:
    Key 	Code 
    
    BACKSPACE	{BACKSPACE}, {BS}, or {BKSP}
    BREAK	           {BREAK}
    CAPS LOCK	{CAPSLOCK}
    DEL or DELETE	{DELETE} or {DEL}
    DOWN ARROW	{DOWN}
    END	           {END}
    ENTER	           {ENTER}or ~
    ESC	           {ESC}
    HELP	           {HELP}
    HOME	           {HOME}
    INS or INSERT	{INSERT} or {INS}
    LEFT ARROW	{LEFT}
    NUM LOCK	{NUMLOCK}
    PAGE DOWN	{PGDN}
    PAGE UP	{PGUP}
    PRINT SCREEN	{PRTSC}
    RIGHT ARROW	{RIGHT}
    SCROLL LOCK	{SCROLLLOCK}
    TAB	           {TAB}
    UP ARROW	{UP}
    F1	           {F1}
    F2	           {F2}
    F3	           {F3}
    F4	           {F4}
    F5	           {F5}
    F6	           {F6}
    F7	           {F7}
    F8	           {F8}
    F9	           {F9}
    F10	           {F10}
    F11	           {F11}
    F12	           {F12}
    F13	           {F13}
    F14	           {F14}
    F15	           {F15}
    F16	           {F16}
    SHIFT	           +
    CTRL	           ^ 
    ALT	           %
    Hope I could of helped if you need help with you program pm me and I will glady help you.

  3. #3
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    He wants TypeSend. TypeSend types it like a human.

  4. #4
    Join Date
    Oct 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    oh I am sorry I thought he meant something else, my bad.

  5. #5
    Join Date
    Apr 2006
    Location
    Lincolnshire
    Posts
    106
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That's a nice little list of commands, found something I needed in there :P

    Where did you get that from? Surely not from memory

    I need to find somewhere that has all that shit when I need it :P
    ---------------------

    I joined this forum a long time ago. I leeched, I didn't really bother to properly learn SCAR and it's uses. I am sorry. I've matured, and I want to commit to a hobby I will enjoy and is worthwhile. Teach me.

  6. #6
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I believe he googled VB Key Codes.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Silent Send Keys?
    By yanix in forum OSR Help
    Replies: 5
    Last Post: 01-06-2008, 04:11 PM
  2. How to send the key esc.
    By Derek- in forum OSR Help
    Replies: 3
    Last Post: 12-23-2007, 03:37 AM
  3. help with how to send arrow keys
    By rogue poser in forum OSR Help
    Replies: 4
    Last Post: 04-19-2007, 11:16 PM
  4. adding consts in send keys?
    By Shinyrange in forum OSR Help
    Replies: 13
    Last Post: 01-01-2007, 08:02 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •