Jump to content

Recommended Posts

Posted

very nice UDF

btw.

$PBSC_LINE_LEFT_TO_TIGHT

it should be 

$PBSC_LINE_LEFT_TO_RIGHT 

?

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 9/1/2014 at 10:07 PM, mLipok said:

very nice UDF

btw.

$PBSC_LINE_LEFT_TO_TIGHT

it should be 

$PBSC_LINE_LEFT_TO_RIGHT 

?

 

oh it was a mistake not an error which is corrected now.

but thanks for pointing.

  • 4 years later...
Posted

Hi,

I don't know how disable the progress bar after the 100 % i'm trying to put a button (GUICtrlCreateButton) in place of progress bar to replace the view of the progress bar by the button but when i click on the button  it's like it was desactivated. Any idea or solution would be appeciated.

 

;Progress bar
_GUICtrlCreateProgress(704, 960, 432, 30, $PBSC_FILL_LEFT_TO_RIGHT, 0)
GUICtrlSetColor(-1, 0x1da1e0)
GUICtrlSetBkColor(-1, 0xF2F7FA)
For $i = 1 To 100
    GUICtrlSetData(-1, $i)
    Sleep(10)
Next

 

#Region BUTTON
$exit = GUICtrlCreateButton("Je suis d'accord / I agree", 704, 960, 205, 33)
GUICtrlSetTip(-1, '#START MACHINE')
#EndRegion BUTTON

 

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...