Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
203 views

Prevent main form from appearing when showing another form

I am trying to bring my secondary form to the Foreground, however when I do MyForm.Show; // It may be hidden, therefore show it first SetForegroundWindow(MyForm.Handle); my Main Form appears ...
3
votes
3answers
2k views

Maximize SDL window

How should I tell SDL to maximize the application window? I'm creating the window with these flags: SDL_OPENGL | SDL_HWSURFACE | SDL_DOUBLEBUF | SDL_RESIZABLE. Thanks for your replies
2
votes
4answers
3k views

Handling of child and grandchild windows in Javascript

I have a main window (#1) on my webpage from which I open a new browser window (#2) from which I open a new window (#3). Now if my user closes window#2 before window#3, I have the problem that ...
1
vote
4answers
463 views

Handling invalid window handle

The application retrieve window handles, using Enum* routines. It happens that in the while the application manage the handle (get class name, window statistics...) of an enumerated/created window, ...
0
votes
2answers
67 views

Can I draw something on window, that does not belongs to me, using opengl?

I heard you can hook window handle and use this window as OpenGL canvas. I know how to hook windows, but I can't find how can I draw on this window. PS. I'm using Qt if it helps.