请教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)
所以想教该语法要如何写?
谢谢 ...............................................................................................................................................................................................................................
GUICtrlCreateListViewItem ($11 & "|" & $22 & "|" & $33, $listview) 可以了 谢谢你的教学
谢谢
页:
[1]