wxGrid

The only error I got was a complaing that my GridTable class didn't have a Connect function? What is that?

You probably wrote something like
         EVT_CLOSE(someID, self.OnCloseWindow)
instead of
         EVT_CLOSE(self, self.OnCloseWindow)
when you hooked you events.

Cristina.

You're pretty close. It turns out the sizer that controlled the grid
wasn't owned correctly. The inheritance path got broken somewhere and
resulted in the the grid basically giving un-enabled behavior.

Thanks and it's great to see such an active list!

Nate

···

On Sun, 2003-11-23 at 15:56, C. Iacob wrote:

>The only error I got was a complaing that my GridTable class didn't have a
>Connect function? What is that?

You probably wrote something like
         EVT_CLOSE(someID, self.OnCloseWindow)
instead of
         EVT_CLOSE(self, self.OnCloseWindow)
when you hooked you events.

Cristina.

---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwindows.org
For additional commands, e-mail: wxPython-users-help@lists.wxwindows.org

--
Nate Woody <warsaw@udel.edu>