RTF Scrolling
C#
1
Posts
1
Posters
0
Views
1
Watching
-
What is the proper way to scroll and RTF box when text is entered from network communication? The app looks something like that following +------------+ | RTF Object | | output | +------------+ | Input | +____________+ My method has been something like rtfObject.focus(); rtfObject.ScrollToCaret(); input.focus(); The problem with this is that the input.focus() will select all of the text if you happen to hit the space bar at the same time that it focuses the object. I would rather be able to just get the vertical scrollbar object and set it to max, but I have no idea how to do this. Thanks, Steven