Hi,
I'm trying to retrieve to cursor position in a multiline edit ctrl.
When edit ctrl is saved, the cursor position should also be saved.
If user reopens the edit ctrl, (using a fileread/replace content) , I try to put the cursor back where it was.
Now I autoscroll to the last line using:
$iLen = _GUICtrlEdit_GetLineCount($GUINotepad)
_GUICtrlEdit_LineScroll($GUINotepad, 1, $iLen)
but this isn't what I'm trying to do...
I need something like '_GUICtrlEdit_GetCursorPos()'
An