Like subject line says…?
Issue is that my implementation using following bits of code - stripped out a lot to post here - doesn’t seem to handle/implement presenting a scrollbar as such - not too worried about automatic scrolling as such right at mometn, but, want guys to bo be able to scroll down if they want to:
#start ‘sample’ code
class additionalData(wx.Frame):
def init(self, *args, **kwargs):
super(additionalData, self).__init__(*args, **kwargs)
self.initUI()
self.Fit()
self.Centre()
self.Show()
def initUI(self):
sizer = wx.BoxSizer()
panel = wx.Panel(self)
sizer.Add(panel, 1, wx.EXPAND)
vBox = wx.BoxSizer(wx.VERTICAL)
#here I add multiple controls like StaticText and TextCtrl to a wx.FlexGridSizer
#and then
vBox.Add(fgs, flag=wx.ALIGN_CENTER|wx.CENTER|wx.ALL, border=10)
panel.SetSizer(vBox)
self.SetSizer(sizer)
#end ‘sample code’
Either way, code executes fine, I can populate values in fields, etc. and all works fine from my side, tabbing control to control, etc., but, apparently, according to sighted tester, there’s no scroll bar appearing?
Can also provide more code if you need/want to see all of it?
TIA
Jacob Kruger
Blind Biker
Skype: BlindZA
‘…fate had broken his body, but not his spirit…’