small hot key program

07/04/2012 02:05 zacexuro#1
i want to make a small hot key program to sit on top of all windows so i can play Dark Orbit and have as many hot keys as i want and not just 10. i have never made a program but i have made several websites so i know a little bit about codes. i have VB downloaded and i thin what i need to start off with is how do i make a link between my button and the function in game?
07/04/2012 02:29 ЙôČhěάŧĪмPĞM-hacked#2
I work on it too

[Only registered and activated users can see links. Click Here To Register...]

My source code :

Code:
Public Class Form1

    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)

    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs)
        SendKeys.Send(TextBox1.Text)
        SendKeys.Send(TextBox2.Text)
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)

    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Timer1.Start()
    End Sub
End Class