I have a problem with CWnd::CreateControl method while loading custom ActiveX control from the MFC application.
I am currently working on a MFC GUI application, which does data manipulation based on user input. Now I would want to add a special feature so that only authorize user can able to write the data.
I want to intercept the keys th开发者_如何学运维at are pressed when one of my dialogs is displayedEither set up some accelerators that send the relevant WM_COMMAND or respond to WM_KEYDOWN/UP messages
class CMyFile { int a; wchar_t str[10]; public: CMyFile() { 开发者_高级运维a = 12; wcscpy(str, L\"ddddd\");
I have got a CDialog Class, inside which there are two ClistCtrl classes. I want to find out which of the listCtrl\'s is selected at the moment.
I have a Visual Studio 2005 C++ MFC project that utilizes a Combo-box control.Property Type = Dropdown.The project was originally in UNICODE and the combo box control worked as expected.I then had to
I have a class, lets say CAppPath which has a static method: public: static CString GetAppPath(); 开发者_JS百科and in CAppPath.cpp it\'s defined as:
It is necessary to communicate to WebService from C++ MFC application. I can add reference to the service, but wsdl is generated for if simple types are used only. Attempt to generate proxy for method
UPDATE: This is a .NET Client making a call to the regular DLL. I have also got another extension DLL which exports some class and is used in the regular DLL.
I have a modal dialog. I open another modal dialog using DoModal, so that there are n开发者_运维百科ow two dialogs, one on top of another. When I then close the top dialog by clicking okay, I get an a