I tested different solutions to keep
a App on top.
As soon I change the focus it goes to the taskbar
From FWH-samples
changing the focus ( editor ) the test goes to the taskbar.
Another solution with the same effect.
FUNCTION TOP_CLOSE(nType)
hWnd := FindWnd( "Keeping at top" ) // Title !!!
IF hWnd != NIL
IF ISICONIC( hWnd )
SHOWWINDOW( hWnd, SW_RESTORE )
ENDIF
IF nType = 1
SETFOREGROUNDWINDOW( hWnd )
ENDIF
IF nType = 2
SENDMESSAGE( hWnd, WM_CLOSE )
ENDIF
//ELSE
// MsgAlert( "COLORPICKER is not running !", "Attention" )
ENDIF
RETURN NIL
Is there any solution to stay on top even changing the focus ?
regards
Uwe