twh2000 发表于 2009-5-24 15:41:21

请教AutoIt中GUICtrlCreateListViewItem语法的问题?

本帖最后由 twh2000 于 2009-5-27 00:26 编辑

AutoIt中GUICtrlCreateListViewItem语法的问题?

语法说明
GUICtrlCreateListViewItem在GUI上创建一个 ListView 项目控件。
GUICtrlCreateListViewItem ( "文本", listviewID )

例:新增一行项目语法
GUICtrlCreateListViewItem ("11|22|33", $listview)
使用没问题

但是语法中的 11   2233 这3个子项目我要如何设为变数?
我试过
GUICtrlCreateListViewItem ($11 | $22 | $33, $listview)
GUICtrlCreateListViewItem ($11 "|" $22 "|" $33, $listview)
所以想教该语法要如何写?

谢谢

rolaka 发表于 2009-5-24 15:51:31

...............................................................................................................................................................................................................................

GUICtrlCreateListViewItem ($11 & "|" & $22 & "|" & $33, $listview)

twh2000 发表于 2009-5-24 16:44:48

可以了 谢谢你的教学
谢谢
页: [1]
查看完整版本: 请教AutoIt中GUICtrlCreateListViewItem语法的问题?