Tagged Questions
The createwindowex tag has no wiki summary.
4
votes
2answers
617 views
Creating a window using CreateWindowEx without an icon
With C#, I was easily able to get the effect I wanted:
However, I'm having trouble doing the same thing using the Win32 API in C. I don't know how to create a window that has no icon (at all), but ...
4
votes
1answer
866 views
WinAPI: Create a window with a specified client area size
I was wondering how can I create a window using Win32 API with a specific client area size.
When trying to create a window using the following piece of code, the entire window is 640x480, with the ...
1
vote
2answers
457 views
How do you get CreateWindowEx() to create the window on a specific monitor?
I've determined that I can use GetSystemMetrics(SM_CMONITORS) to query the number of attached monitors, but is their any way to control what monitor CreateWindowEx() uses for the window?
0
votes
0answers
251 views
Editbox created with CreateWindowEx (EDIT Class) does not display text in big fonts
I'm creating an edit box using WinAPI's CreateWindowEx. When I specify the ES_MULTILINE style, and the height of the edit box is enough small so the text should be clipped, I do not see the text at ...
0
votes
0answers
117 views
What could be causing the title bar buttons to highlight incorrectly on mouse-over?
I have created a basic window with CreateWindowEx from within a winamp plugin.
See my previous post for the code:
Why does CreateWindowEx not work as expected?
I now have the window working but ...
0
votes
0answers
230 views
Why does CreateWindowEx not work as expected?
I followed the tutorial at:
http://www.winprog.org/tutorial/simple_window.html
I have a reasonable understanding of what everything in the tutorial is doing and my test program works. I have tried to ...
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
199 views
How to create a Microsoft Windows Child window using JNA
I have spent some time trying to create a child window of an existing window by using the following piece of code on JNA (Java Native Access) but I guess it is pretty much the same with every other ...
0
votes
1answer
581 views
C# creating a sticking windows on desktop with transperancy
Long title, but simple problem.
I am trying to let a window stick to the destop (or pin), I can do this like this:
[DllImport("User32.dll")]
static extern IntPtr FindWindow(String ...