Modify ↓
Opened 11 years ago
Closed 11 years ago
#2432 closed Bug (Fixed)
$tagREBARBANDINFO in StructureConstants.au3
Reported by: | Starg | Owned by: | Mat |
---|---|---|---|
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")
Attachments (0)
Change History (1)
comment:1 Changed 11 years ago by Mat
- Milestone set to 3.3.9.20
- Owner set to Mat
- Resolution set to Fixed
- Status changed from new to closed
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.
Note: See
TracTickets for help on using
tickets.
Fixed by revision [8884] in version: 3.3.9.20