hi i have some question regards to my working program this is my code
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 361, 365, 317, 191)
$Input1 = GUICtrlCreateInput("Input1", 24, 40, 169, 21)
$Edit1 = GUICtrlCreateList("", 8, 120, 337, 217)
GUICtrlSetData(-1, "")
$Button1 = GUICtrlCreateButton("Button1", 200, 32, 75, 25, 0)
$Button3 = GUICtrlCreateButton("Button3", 280, 32, 75, 25, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Button1
Readreg()
Case $Button3
orc()
EndSwitch
WEnd
Func Readreg()
For $i= 1 to 100000
$var = RegEnumVal("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run",$i)
If @error <> 0 then ExitLoop
GUICtrlSetData($Edit1,$var)
Next
EndFunc
and my GUICtrlSetData result is only the value name of a regkey can possible to show the type and the date value in regkey .... ?