chelseafc 0 Posted May 19, 2005 Hello, i m trying to make an always on top gui box. sorry for asking to write for me but i really dont know how to make these functions i want to display a 150x30 image giu box with no quit, minimize and maximize bar on top. I want it the at bottom right corner just above the tray menu (PLease help me find the co-ordinates). And lastly if anyone knows how to make it always on top that would bne perfect. Many thanks. Au3 starter Share this post Link to post Share on other sites
ezzetabi 3 Posted May 19, 2005 (edited) Check the helpfile for GUICreate, about topmost your have to use $WS_EX_TOPMOST bits as extended style. You have to press ALT+F4 for closing this... #NoTrayIcon #include <GUIConstants.au3> GUICreate("My GUI", 150, 30, -1, -1, BitOr($WS_BORDER, $WS_POPUP), BitOR($WS_EX_TOPMOST, $WS_EX_TOOLWINDOW)) GUISetState (@SW_SHOW) ;Just add a picture... While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend Edited May 19, 2005 by ezzetabi 1 nazikus reacted to this Share this post Link to post Share on other sites