I have:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$cl = GUICreate("Cliplog", 500, 730, 513, 10, BitOR($WS_SIZEBOX,$WS_POPUP))
$c1 = GUICtrlCreateRadio("c1", 5, 20, 490, 17, BitOR($BS_RIGHT,$BS_RIGHTBUTTON))
GUICtrlSetResizing($c1, $GUI_DOCKRIGHT+$GUI_DOCKWIDTH)
$c2 = GUICtrlCreateRadio("c2", 5, 40, 490, 17, BitOR($BS_RIGHT,$BS_RIGHTBUTTON))
GUICtrlSetResizing($c2, $GUI_DOCKRIGHT+$GUI_DOCKWIDTH)
$c3 = GUICtrlCreateRadio("c3", 5, 60, 490, 17, BitOR($BS_RIGHT,$BS_RIGHTBUTTON))
GUICtrlSetResizing($c3, $GUI_DOCKRIGHT+$GUI_DOCKWIDTH)
$c4 = GUICtrlCreateRadio("c4", 5, 80, 490, 17, BitOR($BS_RIGHT,$BS_RIGHTBUTTON))
GUICtrlSetResizing($c4, $GUI_DOCKRIGHT+$GUI_DOCKWIDTH)
$c5 = GUICtrlCreateRadio("c5", 5, 100, 490, 17, BitOR($BS_RIGHT,$BS_RIGHTBUTTON))
GUICtrlSetResizing($c5, $GUI_DOCKRIGHT+$GUI_DOCKWIDTH)
$c6 = GUICtrlCreateRadio("c6", 5, 120, 490, 17, BitOR($BS_RIGHT,$BS_RIGHTBUTTON))
GUICtrlSetResizing($c6, $GUI_DOCKRIGHT+$GUI_DOCKWIDTH)
$c7 = GUICtrlCreateRadio("c7", 5, 140, 490, 17, BitOR($BS_RIGHT,$BS_RIGHTBUTTON))
GUICtrlSetResizing($c7, $GUI_DOCKRIGHT+$GUI_DOCKWIDTH)
$c8 = GUICtrlCreateRadio("c8", 5, 160, 490, 17, BitOR($BS_RIGHT,$BS_RIGHTBUTTON))
GUICtrlSetResizing($c8, $GUI_DOCKRIGHT+$GUI_DOCKWIDTH)
$c9 = GUICtrlCreateRadio("c9", 5, 180, 490, 17, BitOR($BS_RIGHT,$BS_RIGHTBUTTON))
GUICtrlSetResizing($c9, $GUI_DOCKRIGHT+$GUI_DOCKWIDTH)
$c10 = GUICtrlCreateRadio("c10", 5, 200, 490, 17, BitOR($BS_RIGHT,$BS_RIGHTBUTTON))
GUICtrlSetResizing($c10, $GUI_DOCKRIGHT+$GUI_DOCKWIDTH)
GUISetState(@SW_SHOW)
WinSetOnTop($cl,"",1)
While 1
sleep(100)
WEnd
and I wonder if its posible to create them within a loop?
the problem is creating diffrent variables and had no chance with arrays either
any idea will be cool