Re: [PythonCE] Winhandle problem with tkinter

2005-10-21 Thread Andrew Booth
The error message is produced by the function wince_putwinhandles() in tkWinCe.c which is called once by WinCERecreateChild() in tkWinWm.c. The corresponding wince_getWindowhandle() is present in tkWinCE.c and is declared, BUT NEVER CALLED, in tkWinWm.c, so looks like I'm being stuffed by a piece

Re: [PythonCE] Winhandle problem with tkinter

2005-10-20 Thread Andrew Booth
Looks like you are right. The string 'No more winhandle map slots' is in the file tk84.dll. Andrew Booth -Original Message- From: Edward Fewell [mailto:[EMAIL PROTECTED] Sent: 20 October 2005 14:49 To: [EMAIL PROTECTED] Cc: pythonce@python.org Subject: RE: [PythonCE] Winhand

Re: [PythonCE] Winhandle problem with tkinter

2005-10-20 Thread Edward Fewell
<< I think it is coming from deeper, possibly the operating system or the wince.dll. >> It does not sound like a WinCE OS message. WinCE does not have a restriction on the number of windows other than available memory, nor would it refer to HWNDs as "winhandle slots." It sounds like either the P

Re: [PythonCE] Winhandle problem with tkinter

2005-10-19 Thread Andrew Booth
t off. Andrew Booth -Original Message- From: Michael Foord [mailto:[EMAIL PROTECTED] Sent: 19 October 2005 14:14 To: [EMAIL PROTECTED] Cc: pythonce@python.org Subject: Re: [PythonCE] Winhandle problem with tkinter Andrew Booth wrote: > I'm writing an application using tKinter as the

Re: [PythonCE] Winhandle problem with tkinter

2005-10-19 Thread Michael Foord
Andrew Booth wrote: > I’m writing an application using tKinter as the GUI. It seems to work > OK, but after a while I keep getting the message ‘No more winhandle > slots’. It seems to be appear immediately before dialogs appear on the > screen. I’m careful to destroy the dialogs when I remove them

[PythonCE] Winhandle problem with tkinter

2005-10-19 Thread Andrew Booth
I’m writing an application using tKinter as the GUI. It seems to work OK, but after a while I keep getting the message ‘No more winhandle slots’. It seems to be appear immediately before dialogs appear on the screen.  I’m careful to destroy the dialogs when I remove them from the screen – d