I'd like to add tab Stops to a previously created listbox. Maybe use a GUICtrlSendMsg() or _SendMessage() but I don't know. Help
#include <GUIConstantsEx.au3>
#include <GuiListBox.au3>
#include <WinAPI.au3>
Example()
Func Example()
Local $aTabs[4] = [3, 100, 200, 300], $idListBox
; Create GUI
GUICreate("List Box Set Tab Stops", 400, 296)
$idListBox = GUICtrlCreateList("", 2, 2, 396, 296) ;, BitOR($LBS_STANDARD, $LBS_USETABSTOPS))
GUISetState(@SW_SHOW)
Local $Style = _WinAPI_GetWindowLong(GUICtrlGetHandle($idListBox), $GWL_STYL