I have a little logging app (written in wxPython) that receives data from a bit of kit we\'re developing, and I want to display the text in a scrolling window. As it stands I\'m
I just tested a simple example (checking GetScrollPos(0) and GetScrollRange(0) in EVT_TEXT event handler for wx.TextCtrl) and it works fine for me - they return index of currently shown line and total number of lines, respectively.
Maybe the problem is your wxPython version? I used:
>>> import wx
>>> wx.version()
'2.8.9.1 (msw-unicode)'