The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
37 views

CreateWindow is not working

Greeting Here is a thing, My project is console application that return DLL and i use it in another project. This project is using WFS Methods, On one of those method i need to pass HWND as ...
1
vote
0answers
224 views

Running a full windows app in a dll via rundll32

Does anyone have an example of building a complete WIN32 Windows app as a dll? I'd like to export a function, call it via rundll32, and have a complete Windows app with decorations, a menu, ...
1
vote
0answers
566 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
0answers
5 views

Howto use Qt QWebView::createWindow(QWebPage::WebWindowType type) correctly?

I have a serious problem with QWebView::createWindow() and how to handle creating new browser window. I have sub-classed QWebView as told by docs (MyWebView) and reimplemented it's createWindow() ...
0
votes
0answers
40 views

CreateWindow fails in thread created by _beginthreadex

I have a thread function and I create a window from that thread Whenever I create my thread with CreateThread() API, the CreateWindow() returns true and it creats the window, BUT if I create my ...
0
votes
0answers
40 views

create a platform specific window extending my firebreath plugin window

I am following this post for drawing a platform specific window over my parent pluginwindow generated by firebreath. I am considering this tutorial for creating a window as I am a total newbie. ...
0
votes
0answers
71 views

if click child window, be freeze parent window

registers and creates child window: WNDCLASSEX wc; ControlHandle = this; wc.cbSize = sizeof(wc); wc.lpszClassName = TEXT("FrameControl"); wc.hInstance = GetModuleHandle(NULL); ...
0
votes
0answers
224 views

CreateWindowEx ERROR_ACCESS_DENIED

I am trying to create a window as a child to the window of another application in c# by CreateWindowEx(). But ERROR_ACCESS_DENIED occurs. What is the reason could be? Is it possible that another ...