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")
Attachments (0)
Change History (1)
comment:1 by , 13 years ago
| Milestone: | → 3.3.9.20 |
|---|---|
| Owner: | set to |
| Resolution: | → Fixed |
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

Fixed by revision [8884] in version: 3.3.9.20