How can I slide a long text?
I don't know if this can be done by API, but anyway...
I am making a very little application which consists in sliding a text. The text is in a RichTextBox and I need to control every pixel movement, so I can not use SendMessage because the minimum slide is 1 line of text. So, the only way I have found is by moving the control itself up and down, but the maximum height admitted by VB is not long enough for the lenght of the text. What can I do?
I have also thought of translating the text into HTML and using a web-browser control to contain it (I have noticed that Internet Explorer lets you move the page pixel by pixel using the ScrollBar), but I have not found any control that gives its hWnd, needed by SendMessage.
Could you help me? Thanks a lot.