Hi, i have a multiline get and in a specific funcion i add text in this get for many times, after add i do oGet01:GoBottom() to go for end o get but don't work.
Code:
REDEFINE GET oGet03 VAR LogMail MULTILINE ID 128 of oDlg COLOR CLR_WHITE,CLR_BLACK update
...
for x = 1 to 20
LogMail := LogMail + str(x)+CRLF
oGet03:Refresh()
SysRefresh()
oGet03:GoBottom()
next x
Any idea?
Thanks in advance.