对了,能让GUICtrlCreateList()赋值时不自动排序吗?
这个功能有点讨厌了Local $key, $str
GUICreate("test")
$key = GUICtrlCreateList("", 20, 90, 50, 150)
For $i = 1 To 50
$str &= "M" & $i & "|"
Next
GUICtrlSetData($key, $str, "")
GUISetState()
While 1
Sleep(200)
WEnd
不想要象“M01”,“M02”这样子的
不然,倒可以用stringformat一下 有相关样式 回复 3# afan
果然,还没有注意到这个呢,这样就可以了
$key = GUICtrlCreateList("", 20, 90, 50, 150, 0x0001)
谢! 新手学习一下,谢谢 happytc 发表于 2011-4-9 10:02
回复 3# afan
正好用到,谢谢分享!
页:
[1]