Link to home
Start Free TrialLog in
Avatar of justinng
justinng

asked on

Question on Accelerator

Hi there,
         I've assigned a virtual key "Ctrl + A" to try to bring up a dialog box but however, the dialog box doesn't apppear after I pressed "Ctrl + A"... why is this so?? How can I solve it?

Any help offered is very much appreciated!!!
ASKER CERTIFIED SOLUTION
Avatar of atari
atari

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of justinng
justinng

ASKER

Hi atari... when I tried to compile it.... it shows me an error at the code segment shown below:
------------------------
BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
   //{{AFX_MSG_MAP(CMainFrame)
   ON_COMMAND(CM_SHOW_DIALOG,OnShowDialog)
   //}}AFX_MSG_MAP
   END_MESSAGE_MAP()
------------------------
By the way, my ID for the dialog box, that I wanted it to pop up by pressing Ctrl+A, is
IDD_MY_DIALOG so I replaced CM_SHOW_DIALOG by IDD_MY_DIALOG and I think this should be fine. But the error occur at ON_COMMAND(IDD_MY_DIALOG, OnShowDialog) and the error message is something about undeclared stuffs.... Please
help thanks! I don't quite understand the last code segment also, care to explain? :)
Hi, justinng,
give me your email-address and I will send you a small code snippet by email.

I don't know what you have made wrong, don't know the compiler error message, my code is correct, putting your ID-number as first parameter of ON_COMMAND is wrong, because I only connect the Ctrl-A with an self defined ID (called CM_SHOW_DIALOG) declared in the resource file. This ID is an ID for a message handler, that has nothing to do with the ID of your dialog box. I only want, that the program goes into the routine OnShowDialog() if I press Ctrl+A and nothing more. Then in OnShowDialog() I can do what I want to do, show the dialog or something else. If your code were correct, then you could only show the dialog box but nothing else, you couldn't test, what the user has done within the dialog box, that's what I have done. You can't do all things you want to do with class wizard, sometimes you have to change the resource file manually and put the ID-numbers you wish in there.

Send me your email-address and I will send you a zip-file, that will describe everything.

Bye,
atari
ic... okie thanks! my email address is justinng@singnet.com.sg
Hello, good morning from germany,
I will send you in the next twenty minutes a small project, that I write for you, only to show you the Ctrl-A stuff. It will show you the About dialog as .zip-file.

Bye,
atari
Good evening from Singapore... heheee..... your help is very much appreciated!!!
okie I know my mistakes hehee.... by the way I have successfully compiled my codes but when I pressed Ctrl+A the dialog did not pop up. The pop-up dialog is modeless.... does it matter?? And I have a menu which also associates with the dialog box. So the user either call up the dialog box from the menu or pressing Ctrl+A. Please help, I'm almost there... hehe... thanks!
Adjusted points to 50
How about send me your code as .zip and explain exactly what you wanted to do.

My email address mkuelsh@aol.com

I've been looking on this page in a few hours again.

Bye,
atari

But don't think, that I explain the whole project for you. This discussion board is only for single questions, not for whole projects. That was, what I have to learn first, when I entered this discussion board for the first time.

Bye,
atari
hehee.. thanks! I've solved the problem!!!! heheee... thanks alot!!!!!!
Cya around!