Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (73 - 75 of 3833)

Ticket Resolution Summary Owner Reporter
#1130 Duplicate $tagNMLVKEYDOWN stuct not working in x64 OS Gary smashly66@…
Description

$tagNMLVKEYDOWN in StructureConstants.au3 "int VKey" needs to be "int_ptr VKey" for it to work in x64 os. I saw $tagNMHDR struct that is used in $tagNMLVKEYDOWN stuct has been fixed in milestone 3.3.1.2, but wasn't sure if this had been fixed as well.

#1398 Fixed $tagPARAFORMAT2 incorrect Jon ProgAndy
Description

The declaration of $tagPARAFORMAT2 in GUIRichEdit is incorrect. Corected declaration (semicolon after $tagPARAFORMAT was missing):

Global Const $tagPARAFORMAT2 = $tagPARAFORMAT _
		 & ";long dySpaceBefore;long dySpaceAfter;long dyLineSpacing;short sStyle;byte bLineSpacingRule;" _
		 & "byte bOutlineLevel;word wShadingWeight;word wShadingStyle;word wNumberingStart;word wNumberingStyle;" _
		 & "word wNumberingTab;word wBorderSpace;word wBorderWidth;word wBorders"
#2432 Fixed $tagREBARBANDINFO in StructureConstants.au3 Mat Starg
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)

Note: See TracQuery for help on using queries.