runking 发表于 2010-9-19 17:19:57

高手进,GUICtrlCreateListView的问题[已解决]

本帖最后由 runking 于 2010-9-27 17:10 编辑

$listview = GUICtrlCreateListView("软件名称|大小", 92, 0, 350, 250);,$LVS_SORTDESCENDING)
        $button & '$Num'=GUICtrlCreateListViewItem($sname, $listview)
源码在上,GUICtrlCreateListViewItem如何调用多个变量,自己试了好久了,学校今天终于能上网,上来问问
还有就是$button怎么调用$Num使它成为$button1,$button2……


怎么修改为已解决,管理员帮我吧,我要回宿舍了,good night!

xyold1 发表于 2010-9-19 18:57:25

$button1,$button2……可以通过数组实现,不能像AHK那样,两个变量连接就成了第三个变量了

$a="item3"
$b="|col32"
$listview = GUICtrlCreateListView("col1|col2|col3", 10, 10, 200, 150);,$LVS_SORTDESCENDING)
$item3 = GUICtrlCreateListViewItem($a&$b&"|col33", $listview)

afan 发表于 2010-9-19 20:12:35

标题描述和提问内容差太远。
数组或 Assign+Eval

runking 发表于 2010-9-19 20:15:32

回复 3# afan


    我是个新手,新人,呵呵

runking 发表于 2010-9-19 20:16:35

回复 3# afan


    我是个新手,新人,呵呵
版主能给我个联系方式,或个组织联系方式不,

runking 发表于 2010-9-19 20:17:17

回复 2# xyold1


    谢谢,

runking 发表于 2010-9-19 20:43:33

回复 2# xyold1
如果$b中调用的是变量,……,不好意思……

runking 发表于 2010-9-19 21:03:39

回复 7# runking


    我自己解决了$s=|

当然是在xyold1的帮助之上,在此表示感谢

49666684 发表于 2011-11-29 11:37:06

不错,就想找这东西.
页: [1]
查看完整版本: 高手进,GUICtrlCreateListView的问题[已解决]