fikri1979,  If you had wanted to use my UDF then it works like this:   
#include <GUIConstantsEx.au3>
#include "GUIExtender.au3"
Example()
Func Example()
	$Formoninotool = GUICreate("0nin0 ", 343, 600, 420, 100)
	_GUIExtender_Init($Formoninotool)
	$MenuItemtutor = GUICtrlCreateMenu("&TUTOR")
	$MenuItemtools = GUICtrlCreateMenu("T&OOLS")
	$MenuItemxl = GUICtrlCreateMenu("&XL")
	GUISetBkColor(0xC0DCC0)
	_GUIExtender_Section_Start($Formoninotool, 0, 215)
	$btnstart = GUICtrlCreateButton("START", 16, 24, 65, 25)
	$btnstop = GUICtrlCreateButton("STOP", 96, 24, 65, 25)
	$Inputportproxy = GUICtrlCreateInput("Port injek", 184, 24, 65, 21)
	$Checkboxproxy = GUICtrlCreateCheckbox("use proxy", 264, 24, 73, 17)
	$Status = GUICtrlCreateGroup("Status", 8, 112, 321, 49)
	$Copyright = GUICtrlCreateLabel("Copyright@0nin0 Faundation 2013", 32, 136, 168, 17)
	GUICtrlCreateGroup("", -99, -99, 1, 1)
	$GroupMode = GUICtrlCreateGroup("Mode", 8, 56, 321, 49)
	$Radio1ssh = GUICtrlCreateRadio("2 SSH", 16, 80, 57, 17)
	$Radio2ssh = GUICtrlCreateRadio("3 SSH", 80, 80, 57, 17)
	$Radio4ssg = GUICtrlCreateRadio("4 SSH", 144, 80, 57, 17)
	$Radio5ssh = GUICtrlCreateRadio("5 SSH", 208, 80, 57, 17)
	$Radio6ssh = GUICtrlCreateRadio("6 SSH", 272, 80, 49, 17)
	GUICtrlCreateGroup("", -99, -99, 1, 1)
	_GUIExtender_Section_Action($Formoninotool, 2, "Hide Akun", "Data Akun", 8, 168, 97, 17) ; Normal button
	_GUIExtender_Section_End($Formoninotool)
	_GUIExtender_Section_Start($Formoninotool, 215, 385)
	$ExLaInput1 = GUICtrlCreateLabel("Host:", 32, 200, 30, 17)
	$ExLAInput2 = GUICtrlCreateLabel("Port: ", 32, 250, 30, 17)
	$ExLaInput3 = GUICtrlCreateLabel("User: ", 32, 300, 30, 17)
	$Inputproxy = GUICtrlCreateInput("Host",100, 198, 100, 17)
	$Inputport = GUICtrlCreateInput("Port", 100, 248, 100, 17)
	$InputUser = GUICtrlCreateInput("User", 100, 298, 100, 17)
	$ExInput4 = GUICtrlCreateLabel("Melba23", 32, 350, 168, 17)
	$ExInput5 = GUICtrlCreateLabel("Melba23", 32, 400, 168, 17)
	$ExInput6 = GUICtrlCreateLabel("Melba23", 32, 450, 168, 17)
	$ExInput7 = GUICtrlCreateLabel("Melba23", 32, 500, 168, 17)
	_GUIExtender_Section_End($Formoninotool)
	; Retract lower section
	_GUIExtender_Section_Extend($Formoninotool, 2, False)
	GUISetState(@SW_SHOW)
	 While 1
		 $aMsg = GUIGetMsg(1)
		Switch $aMsg[0]
			Case $GUI_EVENT_CLOSE
				Exit
		EndSwitch
		Switch $aMsg[1]
			Case $Formoninotool
				_GUIExtender_Action($aMsg[1], $aMsg[0]) ; Check for click on Action control
		EndSwitch
	WEnd
EndFunc
M23