#To show a Frame when you click a button (if class is called MyFrame2): #assuming this is inside the MyFrame class and that onbtn was the name you gave the Event Handler for a button: onbtn(self,event): frame_2=MyFrame2(None,-1,'') frame_2.Show() #frame_2 automatically becomes a member of the MyFrame class