Function Reference

_GUICtrlListBox_AddString

文字列を追加します。

#Include <GuiListBox.au3>
_GUICtrlListBox_AddString($hWnd, $sText)

 

パラメータ

$hWnd コントロールのハンドル
$sText 追加される文字列

 

返し値

成功: 文字列のゼロ始まりのインデックス
失敗: -1

 

注意

新しい文字列を保持するための十分なスペースがない場合、返し値は$LB_ERRSPACEになります。

リストボックスに$LBS_SORTスタイルが設定されていない場合、文字列はリストの末尾に追加されます。
それ以外の場合、文字列はリストに挿入されリストがソートされます。

 

関連

_GUICtrlListBox_InsertString, _GUICtrlListBox_DeleteString, _GUICtrlListBox_AddFile, _GUICtrlListBox_InitStorage

 


#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GUIListBox.au3>
#include <GuiConstantsEx.au3>
#include <WindowsConstants.au3>

Opt('MustDeclareVars', 1)

$Debug_LB = False ; ListBox関数に渡されるClassNameを調べる。動作を確認するにはTrueを設定し、他のコントロールのハンドルを使用

_Main()

Func _Main()
    Local $hListBox

    ; GUIを作成
    GUICreate("List Box Add String", 400, 296)
    $hListBox = GUICtrlCreateList("", 2, 2, 396, 296, BitOR($WS_BORDER, $WS_VSCROLL, $LBS_NOTIFY, $LBS_DISABLENOSCROLL, $WS_HSCROLL))

    GUISetState()

    ; 文字列を追加
    _GUICtrlListBox_BeginUpdate($hListBox)
    For $iI = 1 To 9
        _GUICtrlListBox_AddString($hListBox, StringFormat("%03d : Random string", Random(1, 100, 1)))
    Next
    _GUICtrlListBox_InsertString($hListBox, "Exact teXt", 3)
    _GUICtrlListBox_InsertString($hListBox, "This is the string that we're looking for", 6)
    _GUICtrlListBox_InsertString($hListBox, _
            "Let's add one really long line of text so that we can set the horizontal scroll bar and " & _
            "show that, unless we dynamically update the scroll bar, it won't show the full line.", 9)
    _GUICtrlListBox_UpdateHScroll($hListBox)
    _GUICtrlListBox_EndUpdate($hListBox)

    ; ユーザーが終了するまでループ
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main