slightly_abnormal Posted March 22, 2006 Posted March 22, 2006 how do i creat a window with not border.. e.g. the minimize, maximize, close, and title bar are not there how do i do this?
slightly_abnormal Posted March 22, 2006 Author Posted March 22, 2006 how do i creat a window with not border.. e.g. the minimize, maximize, close, and title bar are not there how do i do this?http://www.autoitscript.com/forum/index.php?showtopic=22575
GaryFrost Posted March 22, 2006 Posted March 22, 2006 #include <GUIConstants.au3> GUICreate("My GUI",500,500,-1,-1,BitOR($WS_POPUP,$WS_DLGFRAME)) ; will create a dialog box that when displayed is centered GUISetState (@SW_SHOW) ; will display an empty dialog box ; Run the GUI until the dialog is closed While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
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