Search results for query: *

  1. E

    form always on top

    :D actually is more like this: I want a form to be on top of a game, which I know my girlfriend will be playing, because it will be a gift for her birthday. Since she doesn't know yet the game, the form will be concealed as part of the menu, so that when she presses a key, for example enter...
  2. E

    form always on top

    Hi, I'm working on a program to wish my girlfriend a happy birthday, my idea is to show a label like a notification, similar to the one used in messenger, but I want it to be on top of whatever she is working on the computer at the time, even games (she's a hardcore gamer). Is this possible...
  3. E

    Disable one key

    thanks a lot, it worked!
  4. E

    Disable one key

    I need to disable keys using a form, when pressing a button, searching in the forum, I found this: If (e.Alt = True) Then If (e.KeyData = Keys.F4) Then e.Handled = True End If End If but I can't get it to work, is there a way to disable keys? I...
  5. E

    Window on top, active without focus

    Hi, I'm writing a program that acts as a notification, but I want the window to be active without stealing focus, for example, if I press del, it closes no matter what I'm doing in the computer, also i want it to be on top of everything, even games, is that possible? I'm a beginner, and found...
  6. E

    I need help with timer code

    Sorry to bother man, I lost the code, and I don't remember where exactly I wrote what you suggested, can you tell me where it goes? Right now I'm getting 'System.NullReference.Exception'
  7. E

    I need help with timer code

    thanks a lot, now it adds time! Its now better than before, that leaves two things: - the form being on top and active without focus, and - to close with the press of key only if time is up. thank you very much for your help.
  8. E

    I need help with timer code

    I'm currently writing a countdown timer on vb 2005, with the following characteristics: -When I press a button and the timer is running, it adds time to the counter, for example, if the time is 2:30 and I press a button, and the period to add is 1:10, the new time would be 4:40. -The window is...
Back
Top