"Warning: GetWindowMenuPopup failed!"
-
Why i have in the debug window this warning message: "Warning: GetWindowMenuPopup failed!" What does it mean? Is it important? I have a MDI application. Thanks in advance for your help. Regards Nikesh
-
Why i have in the debug window this warning message: "Warning: GetWindowMenuPopup failed!" What does it mean? Is it important? I have a MDI application. Thanks in advance for your help. Regards Nikesh
Nikesh Jagtap wrote:
What does it mean?
It means a popup menu failed to load...
Nikesh Jagtap wrote:
Is it important?
Probably not.. ...but we can't answer that. Only you know if you care about this popup menu. When do you get this message? Does it happen when you single steop through your code? Does something you wanted to happen fail? Have you deleted a menu that matters? You can search for this text in the MFC source, put a breakpoint there, and find out why some part of your software is loading a popup menu. Go hunt it down! Even if you decide you don't care, it's a good learning experience. Iain.
-
Nikesh Jagtap wrote:
What does it mean?
It means a popup menu failed to load...
Nikesh Jagtap wrote:
Is it important?
Probably not.. ...but we can't answer that. Only you know if you care about this popup menu. When do you get this message? Does it happen when you single steop through your code? Does something you wanted to happen fail? Have you deleted a menu that matters? You can search for this text in the MFC source, put a breakpoint there, and find out why some part of your software is loading a popup menu. Go hunt it down! Even if you decide you don't care, it's a good learning experience. Iain.
:rose:
Bram van Kampen