Modify

Opened 13 years ago

Closed 13 years ago

#2432 closed Bug (Fixed)

$tagREBARBANDINFO in StructureConstants.au3

Reported by: Starg Owned by: Matt Diesel
Milestone: 3.3.9.20 Component: Standard UDFs
Version: 3.3.9.19 Severity: None
Keywords: Cc:

Description

GuiReBar UDF doesn't work correctly on Windows XP due to the wrong $tagREBARBANDINFO in StructureConstants.au3.

I think this

Global Const $tagREBARBANDINFO = "uint cbSize;uint fMask;uint fStyle;dword clrFore;dword clrBack;ptr lpText;uint cch;" & _
		"int iImage;hwnd hwndChild;uint cxMinChild;uint cyMinChild;uint cx;handle hbmBack;uint wID;uint cyChild;uint cyMaxChild;" & _
		"uint cyIntegral;uint cxIdeal;lparam lParam;uint cxHeader" & ((@OSVersion = "WIN_XP") ? "" : ";" & $tagRECT) & ";uint uChevronState"

should be

Global Const $tagREBARBANDINFO = "uint cbSize;uint fMask;uint fStyle;dword clrFore;dword clrBack;ptr lpText;uint cch;" & _
		"int iImage;hwnd hwndChild;uint cxMinChild;uint cyMinChild;uint cx;handle hbmBack;uint wID;uint cyChild;uint cyMaxChild;" & _
		"uint cyIntegral;uint cxIdeal;lparam lParam;uint cxHeader" & ((@OSVersion = "WIN_XP") ? "" : ";" & $tagRECT & ";uint uChevronState")

REBARBANDINFO structure (MSDN)

Attachments (0)

Change History (1)

comment:1 by Matt Diesel, 13 years ago

Milestone: 3.3.9.20
Owner: set to Matt Diesel
Resolution: Fixed
Status: newclosed

Fixed by revision [8884] in version: 3.3.9.20

Modify Ticket

Action
as closed The owner will remain Matt Diesel.

Add Comment


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