#include <ListViewConstants.au3>
#include <WindowsConstants.au3>
Opt("GUIDataSeparatorChar"," ")
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 525, 336, 192, 124)
$ListView1 = GUICtrlCreateListView("1", 16, 16, 497, 281)
$ListView1_0 = GUICtrlCreateListViewItem("ed2k://|file|%5B%E6%96%B0%E7%89%88%E2%80%98%E7%A5%9E%E9%AD%94%E2%80%99%5D.smdl_ob_20110415_0.12.0.exe|4667968|97bce76c72392776776854de485c2fc5|", $ListView1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case -3
Exit
EndSwitch
WEnd
|