0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
1 Posted Topic
Re: here is a sample of basic combo box code that prints the chioice selected by the user: import wx ######################################################################## class MyForm(wx.Frame): #---------------------------------------------------------------------- def __init__(self): wx.Frame.__init__(self, None, wx.ID_ANY, "Tutorial") panel = wx.Panel(self, wx.ID_ANY) self.ct = 0 self.phaseSelection = "" self.opSelection = "" self.instSelection = "" self.orgSelection = "" phasesList = … |
The End.