I'm trying to create a progres bar something like the Win XP Boot screen that just loops infinitely while a function is running. I'm extremely new to this and am just trying to give users a way to know if the program is working or not. Because there maybe multiple steps to the functions I'm also trying to display text in the GUI saying which steps are currently running, and which ones are done, and will clear the area, when another button is pressed. Below is an example of what I want a funct
AlchemistZim, Welcome to the AutoIt forum. The infinite progress you are looking for is known as a "marquee" progress and is created thus: #include <GUIConstantsEx.au3> #include <ProgressConstants.au3> #include <SendMessage.au3> $hGUI = GUICreate("Test", 500, 500) GUICtrlCreateProgress(10, 10, 400, 20, $PBS_MARQUEE) _SendMessage(GUICtrlGetHandle(-1), $PBM_SETMARQUEE, True, 50) ; final parameter is update time in ms GUISetState() While 1 Switch GUIGetMsg() Case