|
-
Apr 3rd, 2001, 09:41 PM
#1
Thread Starter
New Member
-
Apr 4th, 2001, 01:01 PM
#2
Lively Member
Under 98 and 2000 there are restrictions on which processes may bring a given window to the foreground. If a process can't do it, the target window's icon in the task bar is flashed.
Perhaps:
Platform SDK: Windows User Interface
OpenIcon
The OpenIcon function restores a minimized (iconic) window to its previous size and position; it then activates the window.
BOOL OpenIcon(
HWND hWnd // handle to window
);
Parameters
hWnd
[in] Handle to the window to be restored and activated.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
OpenIcon sends a WM_QUERYOPEN message to the given window.
Requirements
Windows NT/2000: Requires Windows NT 3.1 or later.
Windows 95/98: Requires Windows 95 or later.
Header: Declared in Winuser.h; include Windows.h.
Library: Use User32.lib.
See Also
Windows Overview, Window Functions, CloseWindow, IsIconic, ShowWindow
Built on Thursday, May 11, 2000Requirements
Windows NT/2000: Requires Windows NT 3.1 or later.
Windows 95/98: Requires Windows 95 or later.
Header: Declared in Winuser.h; include Windows.h.
Library: Use User32.lib.
See Also
Windows Overview, Window Functions, CloseWindow, IsIconic, ShowWindow
-
Apr 6th, 2001, 10:05 AM
#3
Thread Starter
New Member
But... If ICQ... or simply the dialup connection icon (tray icon, when you're connected) can do it, why we can't? There's a way, for sure... I've tried witn OpenIcon but this function just do nothing...
-
Apr 6th, 2001, 10:21 AM
#4
Lively Member
That would indicate to me that the program is probably deliberately blocking the maximization, i.e., it makes itself iconic again unless it was reactivated the way it wants to be reactiviated (if at all).
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|