Что нового

Удалить последнюю строку в _GUICtrlRichEdit_Create

The Dream

Новичок
Сообщения
393
Репутация
3
Собственно вопрос в теме, в ее названии, может кто-то подскажет?
 

inx

Знающий
Сообщения
43
Репутация
12
Ну, например как-нибудь "так":

Код:
#include <GuiRichEdit.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

Main()

Func Main()
	Local $hGui, $hRichEdit, $iMsg
	$hGui = GUICreate("Example (" & StringTrimRight(@ScriptName, 4) & ")", 320, 350, -1, -1)
	$hRichEdit = _GUICtrlRichEdit_Create($hGui, "This is a test.", 10, 10, 300, 220, _
			BitOR($ES_MULTILINE, $WS_VSCROLL, $ES_AUTOVSCROLL))
	_GUICtrlRichEdit_AppendText($hRichEdit, @CR & "This is more text")
	GUISetState()
	; строки ниже добавлены к примеру по _GUICtrlRichEdit_Create из справки
	Local $LnCount, $StartSel, $AllTxtLngth, $LineLngth
	$LnCount = _GUICtrlRichEdit_GetLineCount($hRichEdit)
	$AllTxtLngth = _GUICtrlRichEdit_GetTextLength($hRichEdit, True, True)
	$LineLngth = _GUICtrlRichEdit_GetLineLength($hRichEdit, $LnCount)
	$StartSel = $AllTxtLngth - $LineLngth - $LnCount + 1
	_GUICtrlRichEdit_SetSel($hRichEdit, $StartSel, -1 )
	_GUICtrlRichEdit_ReplaceText($hRichEdit, "" )
	; строки выше добавлены к примеру по _GUICtrlRichEdit_Create из справки
	While True
		$iMsg = GUIGetMsg()
		Select
			Case $iMsg = $GUI_EVENT_CLOSE
				_GUICtrlRichEdit_Destroy($hRichEdit) ; needed unless script crashes
;~ 				GUIDelete() 	; is OK too
				Exit
		EndSelect
	WEnd
EndFunc   ;==>Main
 
Верх