Jump to content

Progress bar without any border.


 Share

Recommended Posts

Why can't i find this anywhere in the help file!

Anyone know how to make a progressbar without any border/edge?

[quote name='PsaltyDS' post='635433' date='Jan 27 2009, 07:04 AM']Larry is a mass murderer?! It's always the quiet, clean cut, bald guys... [/quote]

Link to comment
Share on other sites

Why can't i find this anywhere in the help file!

Anyone know how to make a progressbar without any border/edge?

Look up ProgressOn() in Help file

Try

ProgressOn("Progress Meter", "Increments every second", "0 percent", -1, -1, 1)
For $i = 10 To 100 Step 10
    Sleep(1000)
    ProgressSet($i, $i & " percent")
Next
ProgressSet(100, "Done", "Complete")
Sleep(500)
ProgressOff()

From help example modified.

Link to comment
Share on other sites

Look up ProgressOn() in Help file

Try

ProgressOn("Progress Meter", "Increments every second", "0 percent", -1, -1, 1)
For $i = 10 To 100 Step 10
    Sleep(1000)
    ProgressSet($i, $i & " percent")
Next
ProgressSet(100, "Done", "Complete")
Sleep(500)
ProgressOff()

From help example modified.

*cough* GUICtrlCreateProgress *cough* im not using progresson....

[quote name='PsaltyDS' post='635433' date='Jan 27 2009, 07:04 AM']Larry is a mass murderer?! It's always the quiet, clean cut, bald guys... [/quote]

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...