Jump to content

Color bug with GUICtrlCreateListView(


Datus
 Share

Recommended Posts

Not sure whats going on here but the colors seem to be mirrored.

Meaning if you specify ff0000 it reads it as 0000ff

see the code below which is a copy from the built in help

#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiListView.au3>
#include <Constants.au3>

Opt('MustDeclareVars', 1)

$Debug_LV = False; Check ClassName being passed to ListView functions, set to True and use a handle to another control to see it work

_Main()

Func _Main()
    Local $hListView
    
    GUICreate("ListView Set BkColor", 400, 300)
    $hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
    GUISetState()

   ; Set colors
    _GUICtrlListView_SetBkColor($hListView, 0xFF0000);**** I changed this to 0xFF0000
    _GUICtrlListView_SetTextColor($hListView, $CLR_BLACK)
    _GUICtrlListView_SetTextBkColor($hListView, $CLR_MONEYGREEN)

   ; Add columns
    _GUICtrlListView_AddColumn($hListView, "Items", 100)

   ; Add items
    _GUICtrlListView_BeginUpdate($hListView)
    For $iI = 1 To 10
        _GUICtrlListView_AddItem($hListView, "Item " & $iI)
    Next
    _GUICtrlListView_EndUpdate($hListView)

   ; Show clors
    MsgBox(4160, "Information", "Back Color ....: " & _GUICtrlListView_GetBkColor($hListView) & @CRLF & _
            "Text Color ....: " & _GUICtrlListView_GetTextColor($hListView) & @CRLF & _
            "Text Back Color: " & _GUICtrlListView_GetTextBkColor($hListView))

   ; Loop until user exits
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc  ;==>_Main

Anyone got any ideas how to fix this?

We live as we dream alone!

Link to comment
Share on other sites

Not sure whats going on here but the colors seem to be mirrored.

Meaning if you specify ff0000 it reads it as 0000ff

see the code below which is a copy from the built in help

#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiListView.au3>
#include <Constants.au3>

Opt('MustDeclareVars', 1)

$Debug_LV = False; Check ClassName being passed to ListView functions, set to True and use a handle to another control to see it work

_Main()

Func _Main()
    Local $hListView
    
    GUICreate("ListView Set BkColor", 400, 300)
    $hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
    GUISetState()

  ; Set colors
    _GUICtrlListView_SetBkColor($hListView, 0xFF0000);**** I changed this to 0xFF0000
    _GUICtrlListView_SetTextColor($hListView, $CLR_BLACK)
    _GUICtrlListView_SetTextBkColor($hListView, $CLR_MONEYGREEN)

  ; Add columns
    _GUICtrlListView_AddColumn($hListView, "Items", 100)

  ; Add items
    _GUICtrlListView_BeginUpdate($hListView)
    For $iI = 1 To 10
        _GUICtrlListView_AddItem($hListView, "Item " & $iI)
    Next
    _GUICtrlListView_EndUpdate($hListView)

  ; Show clors
    MsgBox(4160, "Information", "Back Color ....: " & _GUICtrlListView_GetBkColor($hListView) & @CRLF & _
            "Text Color ....: " & _GUICtrlListView_GetTextColor($hListView) & @CRLF & _
            "Text Back Color: " & _GUICtrlListView_GetTextBkColor($hListView))

  ; Loop until user exits
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc ;==>_Main

Anyone got any ideas how to fix this?

Maybe in one case is RGB and in other case is BGR.

When the words fail... music speaks.

Link to comment
Share on other sites

_GUICtrlListView_GetBkColor this command in the code actually shows it the wrong way round.

something gone screwy.

Looks to me like gary forgot to use _GUICtrlListView_ReverseColorOrder in the _GUICtrlListView_SetBkColor, whereas he did use it in _GUICtrlListView_GetBkColor. You need to call the function _GUICtrlListView_ReverseColorOrder.So if you do this

; Set colors
    _GUICtrlListView_SetBkColor($hListView, Number(_GUICtrlListView_ReverseColorOrder(0x0000FF)))

it should work.

Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Link to comment
Share on other sites

GUICtrlSetBkColor just use that command instead and it work so im happy.

Cheers martin, thought i was going mad.

surprised no one else has reported it.

maybe its a new version feature.

Edited by Datus

We live as we dream alone!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...