set caret position to the end in Edit Box
-
Hi all again :) I have edit box, where I display long texts(file paths). Problem is that I want the user to be able to see the last part of the text displayed in the Edit Box(it is a file name). How can I do this ? thank you.
-
Hi all again :) I have edit box, where I display long texts(file paths). Problem is that I want the user to be able to see the last part of the text displayed in the Edit Box(it is a file name). How can I do this ? thank you.
1. CString str = edit.GetWindowText() 2. SetSel(str.GetLength(), str.GetLength())
TOXCCT >>> GEII power
[VisualCalc 3.0 updated ][Flags Beginner's Guide new! ]
-
Hi all again :) I have edit box, where I display long texts(file paths). Problem is that I want the user to be able to see the last part of the text displayed in the Edit Box(it is a file name). How can I do this ? thank you.