Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (184 - 186 of 3933)

Ticket Resolution Summary Owner Reporter
#3826 Completed Background not erased for label with $GUI_BKCOLOR_TRANSPARENT set Jpm KaFu
Description

Does not happen with autoit-v3.3.15.0-beta-setup.exe, first occurred with autoit-v3.3.15.1-beta-setup.exe https://www.autoitscript.com/forum/topic/202668-autoit-v33151-beta

Checked release notes and guess it might be related to this fix:

  • Fixed: Workarounds added to alleviate slow downs on Windows 10 1809 and later (OS bug/design change).

To test comment / un-comment the GUI_BKCOLOR_TRANSPARENT line and run with prod version and current Beta. With current Beta the updated data overwrites the label with erasing to old data first.

#include <GUIConstantsEx.au3>
Opt("GUIOnEventMode", 1)

GUICreate("Test", 550, 40)
GUISetOnEvent($GUI_EVENT_CLOSE, "_Exit")

$c_Label = GUICtrlCreateLabel(TimerInit, 10, 10, 430, 20)
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT) ; comment / un-comment this line

; does not happen with autoit-v3.3.15.0-beta-setup.exe, first occurred with autoit-v3.3.15.1-beta-setup.exe
; https://www.autoitscript.com/forum/topic/202668-autoit-v33151-beta
; checked release notes and guess it might be related to this fix:
; - Fixed: Workarounds added to alleviate slow downs on Windows 10 1809 and later (OS bug/design change). 

GUICtrlCreateButton('Exit', 495, 10, 50)
GUICtrlSetOnEvent(-1, "_Exit")

GUISetState()

While 1
        GUICtrlSetData($c_Label, TimerInit())
WEnd

Func _Exit()
        Exit
EndFunc   ;==>_Exit
#3825 Fixed $tagEDITSTREAM definition is wrong in Beta 3.3.15.3 when using x64 Jpm Nine
Description

It should be reverted back to the actual 3.3.14.5 version :

Global Const $tagEDITSTREAM = "align 4;dword_ptr dwCookie;dword dwError;ptr pfnCallback"

This tag definition is found in GUIRichEdit.au3 UDF

#3824 Fixed _GUICtrlRichEdit_StreamFromFile help file error on default character encoding Jpm Nine
Description

Help file says that _GUICtrlRichEdit_StreamFromFile character encoding default is $FO_UTF8. But within the function it is using ANSI.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.