Thanks for the help!
Jonathan
Thank you John,
from Tkinter import *
root = Tk()
Label(root, text='This is the root window').pack()
top = Toplevel(root)
fr = Frame(top) # frame child of Toplevel called top
fr.pack()
Label(fr, text='This is in a frame in the Toplevel window').pack()
root.mainloop()
I swear I tried that about 20 times yesterday...and it kept putting it
in my main window. Perhaps I had a naming issue.
Thanks!
Jonathan