You are not logged in. You can browse in the PowerBASIC Community, but you must click Login (top right) before you can post. If this is your first visit, check out the FAQ or Sign Up.
The following will show the last line two positions down in the
editor. Change -2 to preferred position, or use window size/character
height to calculate how many positions down you need it to be.
Code:
LOCAL selLine AS LONG, visLine AS LONG
selLine = SendMessage( hEdit, %EM_GETLINECOUNT, 0, 0) -1 '<- current line count -1
visLine = SendMessage(hEdit, %EM_GETFIRSTVISIBLELINE, 0, 0) '<- get top visible line
selLine = selLine - visLine -2 '<- pos 2 lines down
SendMessage hEdit, %EM_LINESCROLL, 0, selLine '<- scroll to line
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment