Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
625 views

Win32: CreateDialog instead of multiple calls to CreateWindow - any downsides?

I'm currently working on a Win32 program which requires a main window containing many child window controls - buttons, listviews and so on. I believe the standard way to build such a window is to ...
5
votes
2answers
276 views

C# Creating window - Defining Parent window

I want create using C# window with setted parent to my defined handle, this is a other process window handle. Anyone know how to do this? Greetings,
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 ...
3
votes
3answers
117 views

How to create a window based on only the size of the screen not including the windows border with C++/Windows?

When creating a window using CreateWindow(...), which requires the window width and height, I have to enter the values 656 and 516, instead of 640 and 480, so as to account for the windows border. ...
2
votes
3answers
754 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
136 views

Set HWND on CreateWindow appears to fail

I'm coming from C# and very new at this so please bear with me. I have a MainWindow class which has some private HWND variables. One for the window itself, and one for each of the controls. I assume ...
1
vote
1answer
560 views

Create a native Windows window in JNA and some GetWindowLong with GWL_WNDPROC

Good day, I have been using JNA for a while to interact with the Windows API and now I am stuck when creating a window. As far as I have done the following: 1. Have created a child window of an ...
1
vote
2answers
728 views

(Windows API) WM_PAINT Mouse problems

I created a window with the following flags to overlay a d3d application: WS_EX_TOPMOST | WS_EX_COMPOSITED | WS_EX_TRANSPARENT | WS_EX_LAYERED I proceeded with colorkeying the window for transperacy ...
1
vote
2answers
343 views

Creating a Win32 Window app with English title bar, but the title bar becomes Chinese out of nowhere. How come?

HWND wndHandle; //global variable // code snipped WNDCLASSEX wcex; // code snipped wcex.lpszClassName = (LPCWSTR) "MyTitleName"; // code snipped wndHandle = CreateWindow( ...
1
vote
1answer
1k views

how to draw image on a window

I have created a window with createwindow() api using vs2005 in c++ on windows Vista My requirement is to draw image(any format) on that window. I am not using any MFC in this application Please ...
0
votes
1answer
76 views

Win32 C++ SetLayeredWindowAttributes is either fully opaque or fully transparent; nothing in between

So I have a 2nd Window created within my program like: #define WINDOW_CLASS_NAME "WINCLASSFULL" WNDCLASSEX winclass; LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { ...
0
votes
2answers
119 views

How can I use a resource file (*.rc) to style a dialog-based application

How can I use a resource file (*.rc) to style a dialog-based application? I can use CreateWindow or CreateWindowEx to create the main window of an application. And some of the arguments of ...
0
votes
1answer
194 views

Win32 Default Height of Edit Control

I'm using CreateWindowEx to create an Edit control (a textbox), but saying CW_DEFAULT doesn't help with getting the default height of the textbox -- it just makes a window with a height of zero. How ...
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
1answer
1k views

Win32: How to create a ListBox control using the CreateWindowExW() function?

I've been through multiple sites, documents and tutorials and they all say the same, that is, any control is nothing more than a window in Win32's API, hence one is able to use the CreateWindowExW() ...
0
votes
2answers
304 views

CreateWindowEx fails with ERROR_CANNOT_FIND_WND_CLASS

I am trying to create a window with a certain class type ("VSDebugger CDataTipWnd"), however, when I run CreateWindowEx it fails, and GetLastError tells me that the class wasn't found. Here is the ...
0
votes
1answer
178 views

CreateWindow Scrollbar alignment issue

Consider the following partial code. My problem is that the Scrollbar is not aligned with the rectangle. I get a rectangle and a scrollbar with a large gap between the two. I figured I could ...
0
votes
1answer
315 views

CreateWindow Fails as Unable to Find Window Class - C++

In my application the function CreateWindow is failing for some reason. GetLastError indicates error 1407, which, according to the MSDN documentation is "Cannot find window class." The following ...
0
votes
1answer
430 views

Windows API CreateWindow client size mouse position

Working with OpenGL, I used CreateWindow( "app", "App Window", WS_CAPTION | WS_POPUPWINDOW | WS_VISIBLE | WS_SIZEBOX | WS_MINIMIZEBOX | WS_MAXIMIZEBOX, 0, 0, 1024, 768, NULL, NULL, hInstance, this ...
0
votes
4answers
264 views

Is it possible to create a sub window which will not deactivate the parent?

Normally when creating a sub window (WS_POPUP), the child window will become activate and the parent will become deactivated. However, with menus, both remain active. At least I am assuming the menu ...
0
votes
1answer
456 views

Delphi - Message loop for Form created in DirectShow filter goes dead

I have a DirectShow filter created with Delphi Pro 6 and the DSPACK direct show library. I'm running under windows XP. I've tried creating the form dynamically when the container class for the ...
0
votes
5answers
1k views

Win32 CreateWindow() call hangs in child thread?

I'm working on a portability layer for OpenGL (abstracts the glX and wgl stuff for Linux and Windows)... Anyhow, it has a method for creating a Window... If you don't pass in a parent, you get a real ...
0
votes
1answer
428 views

Using CreateWindow and adding buttons and such to it? How?

This is kind of a noob question but I've realized after so long of coding DirectX/OpenGL applications I don't have the feintest of ideas how to create windows with basic form objects like text boxes, ...