Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Disable show pop-up window when F10 pressed

Disable show pop-up window when F10 pressed

Scheduled Pinned Locked Moved C#
question
6 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    Tavbi
    wrote on last edited by
    #1

    Hi, is there any way to disable show pop-up window in top left corner on form when key pressed? Thanks, Jure

    T D 3 Replies Last reply
    0
    • T Tavbi

      Hi, is there any way to disable show pop-up window in top left corner on form when key pressed? Thanks, Jure

      T Offline
      T Offline
      Tavbi
      wrote on last edited by
      #2

      Ops! I mean when key F10 pressed.

      1 Reply Last reply
      0
      • T Tavbi

        Hi, is there any way to disable show pop-up window in top left corner on form when key pressed? Thanks, Jure

        D Offline
        D Offline
        Dave Kreskowiak
        wrote on last edited by
        #3

        What "Show pop-window"??

        A guide to posting questions on CodeProject[^]
        Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
             2006, 2007

        T 1 Reply Last reply
        0
        • D Dave Kreskowiak

          What "Show pop-window"??

          A guide to posting questions on CodeProject[^]
          Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
               2006, 2007

          T Offline
          T Offline
          Tavbi
          wrote on last edited by
          #4

          When I press F10 and then up or down arrow key there appear a box with options Restore, Move, Size, Minimize, Maximize and Close. I think that comes from system, because many windows has similar box (like properties on desktop).

          T 1 Reply Last reply
          0
          • T Tavbi

            When I press F10 and then up or down arrow key there appear a box with options Restore, Move, Size, Minimize, Maximize and Close. I think that comes from system, because many windows has similar box (like properties on desktop).

            T Offline
            T Offline
            Tavbi
            wrote on last edited by
            #5

            I think it's the system menu.

            1 Reply Last reply
            0
            • T Tavbi

              Hi, is there any way to disable show pop-up window in top left corner on form when key pressed? Thanks, Jure

              T Offline
              T Offline
              Tavbi
              wrote on last edited by
              #6

              Problem solved, thanks to Hans Passant. protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { if (keyData == Keys.F10) return true; return base.ProcessCmdKey(ref msg, keyData); }

              1 Reply Last reply
              0
              Reply
              • Reply as topic
              Log in to reply
              • Oldest to Newest
              • Newest to Oldest
              • Most Votes


              • Login

              • Don't have an account? Register

              • Login or register to search.
              • First post
                Last post
              0
              • Categories
              • Recent
              • Tags
              • Popular
              • World
              • Users
              • Groups