- Сообщения
- 5,379
- Репутация
- 2,724
Попробуй этой функцией.
Код:
Func __GUICtrlListBox_GetText($hWnd, $iIndex)
If Not IsHWnd($hWnd) Then
$hWnd = GUICtrlGetHandle($hWnd)
EndIf
Local $tText = DllStructCreate("char Text[" & _GUICtrlListBox_GetTextLen($hWnd, $iIndex) + 1 & "]")
_SendMessage($hWnd, $LB_GETTEXT, $iIndex, DllStructGetPtr($tText), 0, "wparam", "ptr")
Return DllStructGetData($tText, "Text")
EndFunc ;==>__GUICtrlListBox_GetText