alex120 0 Posted May 16, 2005 Hello. It wanted to know if it is possible to be specified in which tab is created a control ej: $tab=GUICtrlCreateTab (10,10, 420,380) $tab0=GUICtrlCreateTabitem ("tab0") $tab1=GUICtrlCreateTabitem ("tab1") GUICtrlCreateTabItem("") GUICtrlCreateLabel ("Descripcion:", 10, 30, 110) I want that it believes it in tab0 and not in tab1 ademas when I do asi they estan for the 2 Greetings Share this post Link to post Share on other sites
MHz 80 Posted May 16, 2005 $tab=GUICtrlCreateTab (10,10, 420,380) $tab0=GUICtrlCreateTabitem ("tab0") GUICtrlCreateLabel ("Descripcion: for tab 0", 10, 30, 110) $tab1=GUICtrlCreateTabitem ("tab1") GUICtrlCreateLabel ("Descripcion: for tab 1", 10, 30, 110) GUICtrlCreateTabItem("")You need to add the controls in order as shown. Share this post Link to post Share on other sites