CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Can I trap Key Events in MDI Form ?

    Hi,

    I want to trap KEY Events in MDI Form, Is It Possible.

    Regards

    Prasad



  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: Can I trap Key Events in MDI Form ?

    the MDIForm doesn't support the keypress event. you could place a picture box on the mDI form and trap the keypress event for that control.
    or, even worse, try subclassing the MDIForm and trap the WM_CHAR message.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured