Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Mizfar

    How to Create a Boss Key?

    Okay, thanks so much guys, I think I figured it out. I just need to find out how to capture a keystroke using the timer. Private Sub HideTimer_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles HideTimer.Tick Dim k As System.Windows.Forms.KeyEventArgs If...
  2. Mizfar

    How to Create a Boss Key?

    Could someone please explain to me what I have done wrong here: Private Sub frmMain_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown If e.KeyCode = Keys.F12 Then Me.Hide() End If End Sub As the code...
  3. Mizfar

    How to Create a Boss Key?

    Thanks viper for the advice. Also if you could post the VB6 source to make it clearer for me, I would appreciate it. Thanks.
  4. Mizfar

    How to Create a Boss Key?

    The problem is if i made it invisble, It just shows a gap in taskbar, and I wanted to make it so that the application hides and show by pressing F12. From what I have read so far it can be done by Multithreading, but I dont quite understand how to implement that ibto ny application. I would be...
  5. Mizfar

    How to Create a Boss Key?

    Thanks very much for the help, I will use your method but is it possible to do it without having a Notify icon?
  6. Mizfar

    How to Create a Boss Key?

    I am trying to create an application with VB.NET 2003 version, and am trying to make a Boss Key (This is, for examlpe When F12 is pressed it will Hide the application, and if it is pressed again, it will show it). I am having a little trouble with it because I am using the Me.Hide() method...

Part and Inventory Search

Back
Top