Hi all, I've read [blue] thread1254-1352455 [/blue] and I have a similar situation. I post progress messages to the editbox and as the message grows, I want go to the bottom of the message. I've tried what was suggested in the prior thread but to no success. This is my code.
cString is my message
All this does is highlight the text from the top to the bottom but never does it move the cursor to the bottom of the edit box.
Any help is appreciated.
Thanks.
cString is my message
Code:
frmmain.edtMessage.VALUE = frmmain.edtMessage.VALUE + cString
frmmain.edtMessage.SETFOCUS
frmmain.edtMessage.REFRESH
frmmain.edtMessage.SELSTART = 0
frmmain.edtMessage.SELLENGTH = LEN(frmmain.edtMessage.VALUE )
KEYBOARD "{Ctrl+end}"
All this does is highlight the text from the top to the bottom but never does it move the cursor to the bottom of the edit box.
Any help is appreciated.
Thanks.