Function Reference

_GUICtrlComboBoxEx_InitStorage

リストボックスのアイテムを格納するためのメモリを割り当てます。

#Include <GuiComboBoxEx.au3>
_GUICtrlComboBoxEx_InitStorage($hWnd, $iNum, $iBytes)

 

パラメータ

$hWnd コントロールのハンドル
$iNum 追加されるアイテムの数
$iBytes アイテム文字列に割り当てるバイト単位のメモリ量

 

返し値

成功: メモリが割り当てられたアイテムの総数
失敗: $CB_ERRSPACE

 

注意

大量のアイテム(100以上)を持つコンボボックスの初期化を高速化できます。

$iNumパラメータと$iBytesパラメータには推測値を使用できます。
推測値を超えなかった場合には余分なメモリが割り当てられることになります。
推測値を超えた場合には要求された量を超えるアイテムに対しては通常の割り当てが使用されます。

 

関連

_GUICtrlComboBoxEx_AddDir, _GUICtrlComboBoxEx_AddString, _GUICtrlComboBoxEx_InsertString

 


#include <GuiComboBoxEx.au3>
#include <GuiConstantsEx.au3>

Opt('MustDeclareVars', 1)

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

_Main()

Func _Main()
    Local $hGUI, $hCombo
   
    ; GUIを作成
    $hGUI = GUICreate("ComboBoxEx Init Storage", 400, 300)
    $hCombo = _GUICtrlComboBoxEx_Create ($hGUI, "", 2, 2, 396, 296, $CBS_SIMPLE)
    GUISetState()

    MsgBox(4160, "Information", "Innit Storage Pre-Allocated Memory For: " & _GUICtrlComboBoxEx_InitStorage ($hCombo, 150, 300) & " Items")
    _GUICtrlComboBoxEx_BeginUpdate ($hCombo)

    For $x = 0 To 149
        _GUICtrlComboBoxEx_AddString ($hCombo, StringFormat("%03d : Random string", Random(1, 100, 1)))
    Next
    _GUICtrlComboBoxEx_EndUpdate ($hCombo)

    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc   ;==>_Main