Modify

Opened 11 years ago

Closed 11 years ago

#2924 closed Bug (Fixed)

Progress bar style documentation

Reported by: Synix <cross.fire@…> Owned by: J-Paul Mesnage
Milestone: 3.3.13.20 Component: Documentation
Version: 3.3.12.0 Severity: None
Keywords: Cc:

Description

I noticed PBS_SMOOTHREVERSE from http://msdn.microsoft.com/de-de/library/windows/desktop/bb760820%28v=vs.85%29.aspx isn't listed in the AutoIt documentation, although $PBS_SMOOTHREVERSE is already defined in #include <ProgressConstants.au3>.

Also it would look nicer if the values in the documentation (and ProgressConstants.au3) would have the same lengths and it'd be great if the notes from MSDN would appear in the table. So please change:

Progress Bar Styles Value Description
$PBS_MARQUEE 0x00000008 Displays progress status as a scrolling marquee.
$PBS_SMOOTH 0x01 Displays progress status in a smooth scrolling bar instead of the default segmented bar.
$PBS_VERTICAL 0x04 Displays progress status vertically, from bottom to top.

to

Progress Bar Styles Value Description
$PBS_MARQUEE 0x08Displays progress status as a scrolling marquee.
$PBS_SMOOTH 0x01Displays progress status in a smooth scrolling bar instead of the default segmented bar.
Note This style is supported only in the Windows Classic theme. All other themes won't visually change with or without this style.
$PBS_SMOOTHREVERSE 0x10Displays progress status with a smooth backward transition when changing from a higher value to a lower value. By default, the control will instantly jump to the lower value.
Note This style is supported only on Windows Vista or later.
$PBS_VERTICAL 0x04Displays progress status vertically, from bottom to top.

and

Global Const $PBS_MARQUEE = 0x00000008 ; The progress bar moves like a marquee
Global Const $PBS_SMOOTH = 1
Global Const $PBS_SMOOTHREVERSE = 0x10 ; Vista
Global Const $PBS_VERTICAL = 4

to

Global Const $PBS_MARQUEE = 0x08 ; The progress bar moves like a marquee
Global Const $PBS_SMOOTH = 0x01
Global Const $PBS_SMOOTHREVERSE = 0x10 ; Vista
Global Const $PBS_VERTICAL = 0x04

Attachments (0)

Change History (1)

comment:1 by J-Paul Mesnage, 11 years ago

Milestone: 3.3.13.20
Owner: set to J-Paul Mesnage
Resolution: Fixed
Status: newclosed

Fixed by revision [11138] in version: 3.3.13.20

Modify Ticket

Action
as closed The owner will remain J-Paul Mesnage.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.