In MFC Application, how can we differentiate whether a control is a standard control like CComboBox or it is an custom active-x control?
相关问题
- the application was unable to start correctly 0xc0
- how to call a C++ dll from C# windows application
- efficiently calling unmanaged method taking unmana
- Handle button click in another application
- win32 Python - pythoncom error - ImportError: No m
相关文章
- Why windows 64 still makes use of user32.dll etc?
- Can WM_NEXTDLGCTL be used with non-dialog windows?
- Windows EventLog: How fast are operations with it?
- C++: Callback typedefs with __stdcall in MSVC
- Are resource files compiled as UNICODE or ANSI cod
- Is it possible to check whether you are building f
- Which VC++ redistributable package to choose (x86
- user32 and kernel method list for C# [closed]
You can use
CWnd::GetControlUnknown
: