> This sounds as if there was no point at all to do anything with the
> eids. If I am not even allowed to compare two ids, how could
> they point
> at different mail items?
I'm just paraphrasing the MS docs - that property is documented as "Binary
comparable (as with memcmp): No". mapi.CompareEn
I've uninstalled and reinstalled Pythonwin and indeed after
installation the pyc is present and when Pythonwin runs the first time
it overrides it. I've saved the original intpyapp.pyc and when I use
it Pythonwin runs without a problem. I've compared the "working" pyc
with the "non-working" one and
> I've uninstalled and reinstalled Pythonwin and indeed after
> installation the pyc is present and when Pythonwin runs the first time
> it overrides it. I've saved the original intpyapp.pyc and when I use
> it Pythonwin runs without a problem. I've compared the "working" pyc
> with the "non-workin
I'm a newbie to Win32 COM and am unsure whether my current problem
lies in what I'm doing or possibly in some quirk of the DLL I'm trying
to use from Python.
I have a snippet of C++ that I want to implement in Python:
IDispatch* pVoid;
m_pBrowserApp->get_Document(&pVoid);
On 6/29/07, Tim Roberts <[EMAIL PROTECTED]> wrote:
> TK Soh wrote:
> > I'm trying to use os.popen3 to replace subprocess.Popen for python 2.3
> > compatibility. According to the document, os.Popen3 class is not
> > supported on Win32, so I can't poll() the pipe. I wonder how I can
> > check if the
TK Soh wrote:
> On 6/29/07, Tim Roberts <[EMAIL PROTECTED]> wrote:
>> TK Soh wrote:
>> > I'm trying to use os.popen3 to replace subprocess.Popen for python 2.3
>> > compatibility. According to the document, os.Popen3 class is not
>> > supported on Win32, so I can't poll() the pipe. I wonder how I c
> I'm a newbie to Win32 COM and am unsure whether my current problem
> lies in what I'm doing or possibly in some quirk of the DLL I'm trying
> to use from Python.
>
> I have a snippet of C++ that I want to implement in Python:
>
> IDispatch* pVoid;
> m_pBrowserApp->get_Document(&pVoid)