I have created a tab and added a ListView to the first tab, and the second tab is full of buttons for settings and such. THe only way to get the ListView to show up on the first tab is to click on tab2, then back to tab1, it will THEN show up. Is there something that I am not doing correctly?
$hTab = GUICtrlCreateTab(331,0, 315, 200)
GUICtrlCreateTabItem("History")
$history = GUICtrlCreateListView ( "Time |Paging History", 335,25,50,50)
_GUICtrlListView_SetExtendedListViewStyle($history, BitOR($LVS_EX_GRIDLINES, $LVS_EX_FULLROWSELECT, $LVS_EX_SUBITEMIMAGES))
GUICtrlCreateTabItem("Settings")
$settings = GUICtrlCreateButton("settings",335, 25, 75, 20)
I tried making the settings tab the first one, and it did the same thing with the button. Sorry about not posting the whole program, i'd rather not do that.