﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2924	Progress bar style documentation	Synix <cross.fire@…>	Jpm	"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 || 0x08||Displays progress status as a scrolling marquee. ||
||$PBS_SMOOTH || 0x01||Displays progress status in a smooth scrolling bar instead of the default segmented bar.[[br]]**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 || 0x10||Displays 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.[[br]]**Note** This style is supported only on Windows Vista or later. ||
||$PBS_VERTICAL || 0x04||Displays 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
}}}
"	Bug	closed	3.3.13.20	Documentation	3.3.12.0	None	Fixed		
