I am working on a python application where most of the GUI is written in TKinter, but I need a data grid control like Excel. I know tktreectrl is supposed to do this but I am unable to get the latest version to compile. What I want to know is if/how to call some wxpython code from my tkinter code. I tried:
def showDataViewer(self):
app = wx.App()
data_viewer = GeneticViewer()
app.MainLoop()
It does pop up the window, but when I close the wxPython window it causes my entire application to crash generating a Mac OS X bug report. Any ideas? Thanks