happytc 发表于 2011-4-9 09:53:46

对了,能让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

happytc 发表于 2011-4-9 09:56:46

不想要象“M01”,“M02”这样子的
不然,倒可以用stringformat一下

afan 发表于 2011-4-9 09:58:46

有相关样式

happytc 发表于 2011-4-9 10:02:26

回复 3# afan


    果然,还没有注意到这个呢,这样就可以了
$key = GUICtrlCreateList("", 20, 90, 50, 150, 0x0001)

谢!

kadingxiaodi 发表于 2011-4-9 14:27:58

新手学习一下,谢谢

smooth 发表于 2022-3-30 09:48:38

happytc 发表于 2011-4-9 10:02
回复 3# afan




正好用到,谢谢分享!
页: [1]
查看完整版本: 对了,能让GUICtrlCreateList()赋值时不自动排序吗?