Okay, I'm just starting out with rapyd, so bear with me. I have one form and a label and I gave the label a controlvariable (textvariable). See:<br><br>#------------------------------------------------------------------------------#
<br>#                                                                              #<br>#                                    testme                                    #<br>#                                                                              #
<br>#------------------------------------------------------------------------------#<br>class testme(Frame):<br>    def __init__(self,Master=None,**kw):<br>        self.MyName = StringVar()<br>        self.MyName = str(type(ClassKernelBasic))
<br><br><br>        apply(Frame.__init__,(self,Master),kw)<br>        self.MyLabel = Label(self,text='replace me!',textvariable=self.MyName)<br>        self.MyLabel.pack(side='top')<br><br>    #<br>    #Start of event handler methods
<br>    #<br><br>    #<br>    #Start of non-Rapyd user code<br>    #<br><br>In the main file I imported my module (classkernelbasic) where the comment told me to and it seemed to have no problem importing. But when I run the app, nothing shows up in the label or, if something does, it's whatever I put in the label widget's "text" variable. I also tried setting the text variable to MyName, but this also failed to display anything. What's wrong?
<br>