GAM Posted March 13, 2008 Posted March 13, 2008 HI...I want to display GUI at the right hand top corner of the computer screen. May I know the function or parameters used. Neil
Aceguy Posted March 13, 2008 Posted March 13, 2008 #include<guiconstants.au3> $gui=GUICreate("My Gui",200,100,@DesktopWidth-205,0) GUISetState() while 1 sleep(100) wend [u]My Projects.[/u]Launcher - not just for games & Apps (Mp3's & Network Files)Mp3 File RenamerMy File Backup UtilityFFXI - Realtime to Vana time Clock
GAM Posted March 13, 2008 Author Posted March 13, 2008 Thanks a lot for the reply... hey i have got another query, whatz the function to create GUI without the taskbar(the blue bar)? Neil
Aceguy Posted March 13, 2008 Posted March 13, 2008 #include <GUIConstants.au3> $Form1 = GUICreate("Form1",300, 100, @DesktopWidth-303, 0, -1, BitOR($WS_EX_TOOLWINDOW,$WS_EX_TOPMOST,$WS_EX_WINDOWEDGE)) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd [u]My Projects.[/u]Launcher - not just for games & Apps (Mp3's & Network Files)Mp3 File RenamerMy File Backup UtilityFFXI - Realtime to Vana time Clock
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now