Hi, My program uses a fixedwidth tab style and an icon on each tab, but the text on the last tab, no matter how many tabs, doesn't appear in the right place. So, my question is, how do I use the fixedwidth style and get all my text to display properly? #include <GUIConstantsEx.au3>
#include <GuiTab.au3>
GUICreate("Title", 500, 120,-1, -1 )
GUICtrlCreateTab(0, 0, 500, 120, $TCS_FORCELABELLEFT + $TCS_FIXEDWIDTH)
For $i = 0 To 3
GUICtrlCreateTabItem("unobscured")
GUICtrlSetImage ( -1, "shell32.dll" , 4)
Next
GUISetState ()
While 1
Sleep (100)
WEnd