I have made simple multiline string gadget like this :
Code: Select all
StringGadget(#String_0, 310, 10, 350, 140, "", #ES_MULTILINE | #ES_AUTOVSCROLL | #WS_VSCROLL | #ESB_DISABLE_LEFT| #ESB_DISABLE_RIGHT)
But when I do this :
Code: Select all
SetGadgetText(#String_0, GetGadgetText(#String_0) + Chr(13) + Chr(10) + "my text here")
Worse, when I manually scroll and that I add again text, I am bring back
to the start of the text 8O
Is there a way to have the text area to scroll automatically to follow the text added ?