Re: Porting Tkinter application to JYthon

2006-11-23 Thread Andre Burgaud
Hi Sandip, JPype could be a solution to implement the second option mentioned by Tim: http://jpype.sourceforge.net/ Thanks, Andre http://www.burgaud.com/ On 23 Nov 2006 05:36:46 -0800, Tim N. van der Leeuw <[EMAIL PROTECTED]> wrote: Hi, sandip desale wrote: > Dear All, > > We have a Tcl/

Re: Coming from delphi - looking for an IDE - willing to spend money

2006-04-24 Thread Andre Burgaud
Hi James,There are many different IDE available for Python, but if you are coming from Delphi, you may find interesting to try PyScripter available at http://mmm-experts.com/Products.aspx?ProductID=4 . For a list of availale Python IDE and editors, you cmay also check this page: http://wiki.python.

Re: Python equivilant to msgbox()

2006-02-12 Thread Andre Burgaud
Hi,   If you target Windows, you may try ctypes http://starship.python.net/crew/theller/ctypes/:   >>> from ctypes import *>>> windll.user32.MessageBoxA(None, "MessageBox Text", "MessageBox Caption", 0)1>>>     or win32api http://starship.python.net/crew/mhammond/win32/: >>> import win32api>>> win3