Re: [python-win32] meaning of bin string representation ofPR_ENTRYID

2007-06-29 Thread Mark Hammond
The values above already *are* a hexadecimal value - you can't safely change any part of it. I do not want to change it. I hoped that the extracted part might be enough to identify a message within one message store. That's what I meant - I should have said you can't make any assumptions

Re: [python-win32] meaning of bin string representation ofPR_ENTRYID

2007-06-29 Thread Christian K.
Mark Hammond wrote: The values above already *are* a hexadecimal value - you can't safely change any part of it. I do not want to change it. I hoped that the extracted part might be enough to identify a message within one message store. That's what I meant - I should have said you can't

Re: [python-win32] PythonWin won't start the second time

2007-06-29 Thread Zeev B
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

[python-win32] Re: PythonWin won't start the second time

2007-06-29 Thread Roger Upole
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

[python-win32] IE DOM ptr as input to DLL function - Doing this right?

2007-06-29 Thread Jef Allbright
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);

Re: [python-win32] IE DOM ptr as input to DLL function - Doing thisright?

2007-06-29 Thread Mark Hammond
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);