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
___
python-win32 mailing
On 18/08/2011 1:02 AM, RuiDC wrote:
import win32clipboard
filename = r"C:\tmp\test.emf"
with open(filename, "rb") as f:
data = f.read()
win32clipboard.OpenClipboard()
win32clipboard.EmptyClipboard()
win32clipboard.SetClipboardData(win32clipboard.CF_ENHMETAFILE, data)
win32clipboard.CloseCl
On 21/08/2011 4:30 AM, Kevin Walzer wrote:
Hi Matteo,
Thanks for the suggestions. I have integrated the win32trace module into
my frozen app. Here is my final code:
...
This appears to be related to the bug logged at
http://bugs.python.org/issue3905. My app makes use of subprocess to
obtain va