Results 1 to 2 of 2
  1. #1
    tremaster's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    523
    Reputation
    10
    Thanks
    95
    My Mood
    Amazed

    how do I use alt key for on and off

    heres what i have if my.computer.keyboard altkeydown then
    me.form1.topmost = true

    now what if i want to click it agian and it makes topmost faulse

  2. #2
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Declare globally:
    [php]
    Private IsTop As Boolean
    [/php]

    Timer or whatever's code:
    [php]
    If My.Computer.Keyboard.AltKeyDown Then
    If IsTop Then
    Me.TopMost = False
    IsTop = False
    Else
    Me.TopMost = True
    IsTop = True
    End If
    End If
    [/php]

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

Similar Threads

  1. How do you use Perx Injector for Project Blackout?
    By homesweett in forum Piercing Blow Discussions
    Replies: 10
    Last Post: 01-03-2012, 02:26 AM
  2. Replies: 28
    Last Post: 10-26-2011, 05:22 PM
  3. Replies: 17
    Last Post: 03-23-2009, 11:20 PM
  4. How do i use the Mob.wz for Monster Steroids?
    By PyroCorona in forum MapleStory Hacks, Cheats & Trainers
    Replies: 1
    Last Post: 09-20-2008, 10:11 AM