新手上路 发表于 2008-11-4 23:16:57

原帖由 即即 于 2008-11-4 22:21 发表 http://www.autoitx.com/images/common/back.gif
你的问题应该是:
项目内容 = GUICtrlRead( 项目ID, 1 )
复选框和树形列表的混合体,我也搞不清了

netegg 发表于 2008-11-5 00:41:11

这么定义,具体操作自己想想看
if $name= "字体名"
do("字体名", "")
endif
func do($name, $item)
if $name <> "" then;//选择字体名称的时候
   把对应的复选框同时选上
elseif $item<>"" then;//选择字体项目的时候
   把对应的字体同时选上
   endif
endfunc

新手上路 发表于 2008-11-5 19:04:39

没有头绪了:face (22):

AUFS 发表于 2008-11-6 20:03:54

$a_indices2 = ''
                        $i2 = ''
                        $Gametxt = ''
                        Local $a_indices2 = _GUICtrlListView_GetItemCount($hListView)
                        For $i2 = 0 To $a_indices2
                                If _GUICtrlListView_GetItemChecked($hListView, $i2) Then
                                        ;MsgBox(64,'提示','选择的内容: ' & @CRLF & _GUICtrlListView_GetItemText($hListView, $i))
                                        ;;===================================================;;游戏更新模块
                                        $Gametxt = _GUICtrlListView_GetItemText($hListView, $i2) & '|' & $Gametxt
                                        ;MsgBox(4160, "Information", "选择内容: " & _GUICtrlListView_GetItemText($hListView,$a_indices[$i]))
                                ;;====================================================
                                EndIf
                        Next

这个应该可以解决你的问题.....

新手上路 发表于 2008-11-8 13:36:37

顶之:face (35):
页: 1 [2]
查看完整版本: 字体删除程序,写不下去了