November 26th, 2012 09:41 AM
The thread you reference seems to be suggesting what I am already doing.
Unless I've missed something, the handler is not only called when the user clicks a menu item; as discussed earlier it is...
November 26th, 2012 08:34 AM
void MyDoc::OnUpdateFileApplication(CCmdUI *pCmdUI) {
pCmdUI->Enable(Running==false);
UINT Enable = (Running==false) ? MF_BYPOSITION | MF_ENABLED
:...
November 26th, 2012 07:53 AM
That's essentially what I have. Unfortunately the simple call to Enable resulted in the menu never being re-enabled,
so the code grew other stuff and that is probably causing the problem. I can...
November 26th, 2012 07:00 AM
The call to the base class was in the original code that was commented out. Putting it back in makes no difference.
WM_INITMENUPOPUP messages are not mentioned in the code.
OnUpdate is handled...
November 26th, 2012 05:24 AM
I have a (large) application that works perfectly under XP. When I run it under Windows 7 the "File Edit View..." menu in my application flickers when everything is otherwise idle.
I have traced...
November 16th, 2012 09:40 AM
Thanks for that.
I am reminded of the advice of a very wise teacher many years ago: the number one rule of programming is "never fiddle with a user's data".
Life would be so much easier if...
November 16th, 2012 01:26 AM
I do not see the relevance of this code which relates to multicast issues. My problem is clearly stated as being unable to receive broadcast packets.
My problem has not been resolved.
November 8th, 2012 12:51 PM
For some reason, this board has removed all the indentation...
#include "stdafx.h"
#include <stdio.h>
#include <winsock2.h>
#pragma comment(lib, "ws2_32.lib")
int inner_bootp(SOCKET...
November 8th, 2012 12:11 PM
November 8th, 2012 04:31 AM
I have a DSP connected to a Windows 7 laptop by a dedicated Ethernet connection (no routers or anything else in the way).
The laptop has all firewalls disabled (I’ve even tried stopping the...