trashy Posted March 10, 2014 Posted March 10, 2014 I like this Marquee style Progress Bar. Is it posssible to hide the title bar and set topmost? Or at least hide minimize resize and close and set topmost? Everything I tried seemed to have no effect. #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $dir = False GUICreate("Marquee Progress RTL", 500, 50) $Progress = GUICtrlCreateProgress(10, 10, 480, 25, 0x08, 0x500) GUICtrlSendMsg($Progress, 0x040A, 1, 10) GUISetState() AdlibRegister("Reverse_Dir", 1550) Do Until GUIGetMsg() = $GUI_EVENT_CLOSE Exit Func Reverse_Dir() If $dir Then GUICtrlSetStyle($Progress, 0x08, 0x500) $dir = False Else GUICtrlSetStyle($Progress, 0x08, $WS_EX_LAYOUTRTL) $dir = True EndIf EndFunc
Solution FireFox Posted March 10, 2014 Solution Posted March 10, 2014 Hi, Edit the GUI styles like this : GUICreate("Marquee Progress RTL", 500, 50, -1, -1, $WS_POPUP, $WS_EX_TOPMOST) Br, FireFox.
trashy Posted March 10, 2014 Author Posted March 10, 2014 Thank you FireFox Had tried this with no success. GUICreate("Marquee Progress RTL", 500, 50, $WS_POPUP, $WS_EX_TOPMOST) DUH! You showed me. Worked like a charm.
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