Re: How to use the OS's native file selector in Tkinter

2005-09-05 Thread copx
<[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] Thank you! copx -- http://mail.python.org/mailman/listinfo/python-list

Re: How to use the OS's native file selector in Tkinter

2005-09-05 Thread jepler
tkFileDialog.Open is a wrapper around tk's tk_getOpenFile. tk_getOpenFile uses the native dialog on Windows, via the GetOpenFileName() win32 API call, at least in Tk versions 8.2 and newer. Jeff pgpSfgD3cQ3re.pgp Description: PGP signature -- http://mail.python.org/mailman/listinfo/python-list

How to use the OS's native file selector in Tkinter

2005-09-05 Thread copx
Hi, I would like to use the native file selector of the "host OS" for the "Open File" function of my Python/Tkinter app. Could anyone tell me how to do this? My primary target platform is Windows. So a Windows-only solution would be ok (IIRC Linux doesn't even have a "native file selector"). c