Mr. Roberts,
I've actually, gone through the, routine of placing quit in multiple places but still I get errors. Either an unknown process error is generated or another instance of Excel pops up, with a SaveAs dialog, box, with a random filename as default. Something has grabbed the excel file. -----Original Message----- From: python-win32-bounces+the_little_guy=gmx....@python.org [mailto:python-win32-bounces+the_little_guy=gmx....@python.org] On Behalf Of python-win32-requ...@python.org Sent: Tuesday, August 23, 2011 3:00 AM To: python-win32@python.org Subject: python-win32 Digest, Vol 101, Issue 22 Send python-win32 mailing list submissions to python-win32@python.org To subscribe or unsubscribe via the World Wide Web, visit http://mail.python.org/mailman/listinfo/python-win32 or, via email, send a message with subject or body 'help' to python-win32-requ...@python.org You can reach the person managing the list at python-win32-ow...@python.org When replying, please edit your Subject line so it is more specific than "Re: Contents of python-win32 digest..." Today's Topics: 1. Re: SHOpenFolderAndSelectItems (Scott Nelson) 2. Re: Opening, Modifying, and Saving an Excel File from Python? (Tim Roberts) ---------------------------------------------------------------------- Message: 1 Date: Mon, 22 Aug 2011 09:10:58 -0500 From: Scott Nelson <sirg...@gmail.com> To: mhamm...@skippinet.com.au Cc: python-win32@python.org Subject: Re: [python-win32] SHOpenFolderAndSelectItems Message-ID: <CAH30xazCoEGiJfAo=oo8pj_ccwgb_mca6iotp5zeqjmw9gw...@mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" Done (ID #3396444) https://sourceforge.net/tracker/?func=detail&aid=3396444&group_id=78018&atid =551957 Many thanks for considering this! On Sun, Aug 21, 2011 at 10:15 PM, Mark Hammond <skippy.hamm...@gmail.com>wrote: > On 20/08/2011 5:40 AM, Scott Nelson wrote: > ... > > Does pywin have support for SHOpenFolderAndSelectItems()? >> > > Unfortunately not - you can open a feature request at sourceforge and I'll > add it for the next release. > > Cheers, > > Mark > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-win32/attachments/20110822/a315b006 /attachment-0001.html> ------------------------------ Message: 2 Date: Mon, 22 Aug 2011 14:01:51 -0700 From: Tim Roberts <t...@probo.com> To: Python-Win32 List <python-win32@python.org> Subject: Re: [python-win32] Opening, Modifying, and Saving an Excel File from Python? Message-ID: <4e52c3bf.8050...@probo.com> Content-Type: text/plain; charset="windows-1252" The Little Guy wrote: > > Hi, > > > > I apologize for the lengthy post. > > > > I?m using Python 2.7, Win 7, Excel 2003. When trying to enter a time > object and text data into a, simple, Excel 2003 file. I?ve tried > different combinations for saving the file. I?ve used > workbook.Save(), workbook.SaveAs(filename), etc. Sometimes I receive > a replace file dialog box, but other times, I receive following > message, when it tries to save: > It is important to remember that none of these cause Excel to exit: xlApp.Visible = 0 xlApp = None del xlApp If you have Excel open with your file and set Visible to 0, it can be very difficult to remember that your file is still open. You should use xlApp.Quit() in every exit path. -- Tim Roberts, t...@probo.com Providenza & Boekelheide, Inc. ------------------------------ _______________________________________________ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32 End of python-win32 Digest, Vol 101, Issue 22 *********************************************
_______________________________________________ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32