createwindow Questions
3
Solved
I have created a window with createwindow() api using VS2005 in C++ on Windows Vista
My requirement is to draw an image (of any format) on that window. I am not using any MFC in this application.
...
Reni asked 17/11, 2009 at 12:17
3
Solved
I have created a window whose handle is handle_parent. Then I created a child window as following:
hwnd_child = CreateWindow(child_class_name, _T(""),
WS_CHILDWINDOW, 0, 0, 0, 0, hwnd_parent, (HME...
Asinine asked 8/4, 2012 at 14:37
2
Solved
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(...
Gehrke asked 17/12, 2010 at 18:0
3
Solved
I've got a function:
HWND createMainWindow(P2p_Socket_Machine * toSend){
HWND hMainWnd = CreateWindow(
L"Class",/*(LPCWSTR) nameOfConference.c_str()*/L"Chat", WS_OVERLAPPED | WS_MINIMIZEBOX | ...
Gessner asked 11/3, 2012 at 11:31
2
Solved
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,
Kind asked 26/5, 2011 at 22:30
5
Solved
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 f...
Cryptogam asked 10/5, 2011 at 2:38
1
Solved
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.
H...
Extrabold asked 5/3, 2011 at 3:30
2
Solved
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), ...
Percheron asked 5/2, 2011 at 6:19
1
© 2022 - 2024 — McMap. All rights reserved.