Sharing Events and Data Between Frames

Peter

Thank
you for the guidance/example. I will try this tonight.

Hi
Hal,

Just use a reference to the other frame. Here is a small example showing you
how to do it:

#----------------------start-----------
import wx

class FrameBase(wx.Frame):
def init(self, title):
wx.Frame.init(self, None,
title=title)
self.txt = wx.TextCtrl(self)
self.txt.Bind(wx.EVT_TEXT,
self.OnText)

def OnText(self, evt):
    if 'otherFrame' in dir(self):
        self.otherF