Hey there!
So i have made a little program that is supposed to learn from what messages you send, then read on memory and answer depending if the question was found on memory.
Everything works fine except for a little problem
Chat edit box is not vertically autoscrolling to end of it, i use GUICtrlRead then GUICtrlSetData to read and create a new message on it.
But when messages go off the bounds of box, it scrolls to top instead of scrolling to end.
I would like a way to fix it.
My edit properties are:
$G_Chat = GUICtrlCreateEdit('', 10, 30, 380, 320, BitOR($ES_AUTOVSCROLL, $WS_VSCROLL, $ES_READONLY, $ES_CENTER))
And i use this to create a new message
GUICtrlSetData($G_Chat, $ChatLog & @CRLF & '[Centeno] : ' & $ConstantHour & ' - ' & $Date & @CRLF & $Answer)
Any help is really appreciated.