函数参考


_GUICtrlComboBox_FindStringExact

搜索字符串(完全匹配)

#include <GuiComboBox.au3>
_GUICtrlComboBox_FindStringExact($hWnd, $sText [, $iIndex = -1])

参数

$hWnd 控件的控件ID/句柄
$sText 要搜索的字符串
$iIndex [可选参数] 被搜索项目的 0 基索引

返回值

成功: 返回匹配项目的 0 基索引
失败: 返回 -1

注意/说明

返回匹配 $sText 参数的第一个字符串(完全匹配).

当搜索到达列表框底部, 继续从列表框顶部开始搜索,
直到 $iIndex 指定的位置为止.

如果 $iIndex 为 -1,将从头开始搜索整个列表框.

相关

_GUICtrlComboBox_SelectString

示例/演示


#include <GuiComboBox.au3>
#include <GUIConstantsEx.au3>
#include <Constants.au3>

$Debug_CB = False ;检查传递给 ComboBox/ComboBoxEx 函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作

_Main()

Func _Main()
    Local $hCombo

    ; 创建 GUI
    GUICreate("ComboBox Find String Exact", 400, 296)
    $hCombo = GUICtrlCreateCombo("", 2, 2, 396, 296)
    GUISetState()

    ; 添加文件
    _GUICtrlComboBox_BeginUpdate($hCombo)
    _GUICtrlComboBox_AddDir($hCombo, "", $DDL_DRIVES, False)
    _GUICtrlComboBox_AddString($hCombo, "This is a test")
    _GUICtrlComboBox_AddDir($hCombo, "", $DDL_DRIVES)
    _GUICtrlComboBox_AddString($hCombo, "This is eXact")
    _GUICtrlComboBox_EndUpdate($hCombo)

    ; Find string
    MsgBox(4160, "信息", "Find String: " & _GUICtrlComboBox_FindStringExact($hCombo, "This is eXact"))

    ; 循环直到用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main