Modify

Opened 10 years ago

Closed 10 years ago

#2924 closed Bug (Fixed)

Progress bar style documentation

Reported by: Synix <cross.fire@…> Owned by: Jpm
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 Changed 10 years ago by Jpm

  • Milestone set to 3.3.13.20
  • Owner set to Jpm
  • Resolution set to Fixed
  • Status changed from new to closed

Fixed by revision [11138] in version: 3.3.13.20

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Modify Ticket

Action
as closed The owner will remain Jpm.
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.