Tagged Questions
The registerclass tag has no wiki summary.
3
votes
3answers
272 views
RegisterClassEx Fails as Invalid Parameter - C++
A call to RegisterClassEx in my application is failing with error code 87, "The parameter is incorrect."
memset( &m_wcx, 0, sizeof(WNDCLASSEX) );
m_wcx.cbSize = sizeof(WNDCLASSEX); // size of ...
2
votes
3answers
759 views
BringWindowToTop is Not working even if I get the handle to Class Window
I am registering my Class in the following method:
BOOL CNDSClientDlg::InitInstance()
{
//Register Window Updated on 16th Nov 2010, @Subhen
// Register our unique class name that we wish to ...
1
vote
1answer
48 views
Win32 API - RegisterClassEx errors
I'm trying to open a simple window through the Win32 API, using the VC++ compiler and in Visual Studio. I'd like to know why the class fails; I've tried allocating it without a pointer, along with ...
0
votes
2answers
306 views
CreateWindowEx fails with error 1407 CLASS_NOT_REGISTERED for the second instance of ActiveX
Hi
I'm working on some legacy code - ATL ActiveX used as "installer" downloads files from the server for later installation.
There is a "progress bar window" that works fine.
The problem is when I ...
0
votes
1answer
185 views
RegisterClass fails with Error Code 2
I am creating a splash for a program that I'm making but RegisterClass keeps on failing (2: The system cannot find the file specified.)
My code is this:
WNDCLASS wc = {0};
wc.lpfnWndProc = ...
0
votes
1answer
71 views
How to access window class extra memory without a window handle?
I need to register a window class, and right after that set some data in it's extra memory section (the one cbClsExtra refers to) before any window of the class is being created. The problem is that ...
0
votes
2answers
531 views
Calling RegisterClass from C#?
I am trying to create a window (not a WinForm) using CreateWindowEx and RegisterClass. I have figured out how to use CreateWindowEx, but I am stuck on a few things with RegisterClass. In the WNDCLASS ...