Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
160 views

Controlling other windows from C# app

I'm writing a C# app that will aggregate control of several applications (WMP, Google Earth, etc.). For apps that I am not writing myself, I am launching as a process, so I have their handles (handle ...
3
votes
3answers
2k views

Why do I have to call showWindow on my NSWindowController twice on 10.5?

I've got a subclass of an NSWindowController that I'm using to load a window from a nib and show it on the screen. Below is the code that is called when I want to show the window. On 10.6 when ...
2
votes
2answers
463 views

Maximized Window Restores to Full Screen

Using CWnd::ShowWindow(SW_SHOWMAXIMIZED) maximizes my app window as expected. However, when clicking the restore button on the app (or double clicking the title-bar), the restored size is the same ...
1
vote
1answer
39 views

Capturing ShowWindow event in .Net code

Does anyone know how to capture an ShowWindow api call in a .NET form? We have an external VB6 program calling ShowWindow to minimize all our .NET forms in a second app. I'd like to be able to add ...
1
vote
1answer
241 views

CDialog ShowWindow problem

I have a SDI application. In the application there's a modeless dialog which is used to show some message like communicating with the server during doing work. Question is, when the dialog's parent ...
1
vote
1answer
221 views

More than one titleWindow in a Flex Application

I'm a GIS Analyst that was moved to an Analyst Programmer position. This has been a hard transition for me as I don't have much of a programming background, but I was thrown into it. I'm working on ...
0
votes
1answer
68 views

How to tell who sends the ON_WM_SHOWWINDOW message mfc

I have a bug that I'm trying to fix ( Odd MFC/GDI behaviour (blank image) that doesn't appear when screen is recorded ), and I think it might be because I'm calling Invalidate() before I call ...
0
votes
1answer
191 views

ShowWindow won't set focus or maximize

The following code will not set focus to the ie window that I need nor will it maximize it kike its supposed to Option Explicit On Public Class Form1 Public Declare Auto Function ShowWindow Lib ...
0
votes
2answers
143 views

Hiding a control in Windows

I can't figure out how to hide a child window (a control), more specifically a GroupBox and a PushButton. I thought ShowWindow() with SW_HIDE as the second parameter would do the job, but it simply ...
0
votes
2answers
400 views

HowTo hide Console Window with WinAPI?

I'm trying to hide console window when my C application lauching with this simple WinAPI code: #define CONSOLE_NAME "6FD66E14-FF0F-4B94-B8AF-AFE3D42DC399" void hide_window(void) { // Ставим ...
0
votes
1answer
409 views

ShowWindow SW_MINIMIZE can't restore program

I have a program that I want to start up in the background and, when I want to view it later, be able to click the shortcut link or executable and have it bring up my application. I've gotten this to ...
0
votes
3answers
246 views

How to restore an application from the SysTray? ShowWindow doesn't help since the Handle=0

Is it possible to restore a 3rd Party application which has been minimized to the SysTray? Calling ShowWindow is fine on apps minimized to the TaskBar but where the app has been minimized to the ...