Click here to Skip to main content
15,898,222 members
Home / Discussions / C#
   

C#

 
GeneralRe: Accelerator(shortcut) for TabPage Pin
Mazdak28-Feb-04 6:33
Mazdak28-Feb-04 6:33 
GeneralCapturing other mouse buttons... Pin
profoundwhispers28-Feb-04 5:20
profoundwhispers28-Feb-04 5:20 
GeneralRe: Capturing other mouse buttons... Pin
leppie28-Feb-04 5:26
leppie28-Feb-04 5:26 
GeneralMenuItem.Shortcut has no Esc key?! Pin
profoundwhispers28-Feb-04 4:03
profoundwhispers28-Feb-04 4:03 
GeneralRe: MenuItem.Shortcut has no Esc key?! Pin
Nick Parker28-Feb-04 4:18
protectorNick Parker28-Feb-04 4:18 
GeneralRe: MenuItem.Shortcut has no Esc key?! Pin
Mazdak28-Feb-04 4:52
Mazdak28-Feb-04 4:52 
GeneralRe: MenuItem.Shortcut has no Esc key?! Pin
profoundwhispers28-Feb-04 5:23
profoundwhispers28-Feb-04 5:23 
GeneralRe: MenuItem.Shortcut has no Esc key?! Pin
Nick Parker28-Feb-04 6:11
protectorNick Parker28-Feb-04 6:11 
profoundwhispers wrote:
Actually, what I'm trying to do is pretty standard, although it's a workaround. See, when I use the AxWebBrowser control, pressing on Esc to stop the page from loading doesn't seem to work, so I was trying to make it work!

Well, I am not sure what a menu item has to do with what you just said, per your original post. I still think you are going to want to use the RegisterHotKey and probably override the WndProc. Something like the following:

protected override void WndProc(ref Message m)
{
  const int WM_HOTKEY = 0x0312;
  switch(m.Msg)
  {
    case WM_HOTKEY:
      ProcessHotKey();
  }
  base.WndProc(ref m);
}

private void ProcessHotKey()
{
  // Handle AxWebBrowser here.
}


- Nick Parker
  My Blog

GeneralRe: MenuItem.Shortcut has no Esc key?! Pin
Heath Stewart28-Feb-04 4:24
protectorHeath Stewart28-Feb-04 4:24 
GeneralZero Value STRRET Type - GetDisplayNameOf Pin
Tristan Rhodes27-Feb-04 23:34
Tristan Rhodes27-Feb-04 23:34 
GeneralURL Validator Pin
camasmartin27-Feb-04 18:52
camasmartin27-Feb-04 18:52 
GeneralRe: URL Validator Pin
Heath Stewart28-Feb-04 4:16
protectorHeath Stewart28-Feb-04 4:16 
GeneralRe: URL Validator Pin
camasmartin28-Feb-04 6:48
camasmartin28-Feb-04 6:48 
GeneralOutlook Bar Problem Pin
BigBlob20227-Feb-04 12:49
BigBlob20227-Feb-04 12:49 
GeneralRe: Outlook Bar Problem Pin
Matthew Hazlett27-Feb-04 13:16
Matthew Hazlett27-Feb-04 13:16 
GeneralRe: Outlook Bar Problem Pin
BigBlob20227-Feb-04 13:24
BigBlob20227-Feb-04 13:24 
GeneralExpert only question...please help me Pin
aleang7227-Feb-04 12:34
aleang7227-Feb-04 12:34 
GeneralRe: Expert only question...please help me Pin
Heath Stewart28-Feb-04 3:59
protectorHeath Stewart28-Feb-04 3:59 
QuestionImpersonation??? Pin
Bill Dean27-Feb-04 12:33
Bill Dean27-Feb-04 12:33 
AnswerRe: Impersonation??? Pin
turbochimp27-Feb-04 17:08
turbochimp27-Feb-04 17:08 
GeneralDataTable problem! Pin
visiontec27-Feb-04 12:03
visiontec27-Feb-04 12:03 
GeneralRe: DataTable problem! Pin
turbochimp27-Feb-04 16:17
turbochimp27-Feb-04 16:17 
Questionhow to use an icon in multiple places Pin
visiontec27-Feb-04 11:43
visiontec27-Feb-04 11:43 
AnswerRe: how to use an icon in multiple places Pin
Heath Stewart28-Feb-04 3:46
protectorHeath Stewart28-Feb-04 3:46 
GeneralIcons Pin
BigBlob20227-Feb-04 10:18
BigBlob20227-Feb-04 10:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.