How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Dermot Doran
Hello All, I'm very new to using win32com! I just want to send an email message via Outlook. However, I keep getting an annoying message box (generated by Outlook)indicating that my program could be a virus. Does anybody know how to get around this? Here is the sample code I'm using: from

Re: How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Dermot Doran
requesting that I allow access to an external program. Ah well. Cheers!! Dermot. On 31/08/06, Tim Golden [EMAIL PROTECTED] wrote: [Dermot Doran]| I'm very new to using win32com!I just want to send an email| message via Outlook.However, I keep getting an annoying | message box (generated

Re: How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Dermot Doran
/ - Have the Enterprise migrate to Linux! Yes!! Thanks for responding! Cheers!! Dermot. P.S. Apologies for top posting (doing this quickly via GMail)! On 31 Aug 2006 03:51:08 -0700, Giles Brown [EMAIL PROTECTED] wrote: Tim Golden wrote: [Dermot Doran] | I'm very new to using win32com!I just want

Re: How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Dermot Doran
Thanks Tim! We have smtp bolted to the floor :-( On 31/08/06, Tim Golden [EMAIL PROTECTED] wrote: [Dermot Doran]| looks like I might be back to the drawing board :-(Thanks| for letting me know what your experiences have been. Just to elaborate slightly on that experience, if all I wantto do

Re: httplib, threading, wx app freezing after 4 hours

2006-07-27 Thread Dermot Doran
According to the wxPython in Action book using the wx.CallAfter function in a non-gui thread is a safe wayfor threads to call functions that will then update the gui in the gui thread. Cheers!! Dermot. On 23/07/06, Mark rainess [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Mark rainess

Re: New to threads. How do they work?

2006-07-20 Thread Dermot Doran
Hi I think the answer to your last question is that the threading module provides a high level interface (i.e. easier to use) to the thread module. The thread module is very low-level. Any threaded python scripts I have written (not expert) have used the threading module which is, in my opinion,

Re: questions to anyone who uses wxPython

2006-07-20 Thread Dermot Doran
Hi the wxPython in Action provides a very good explanation as to how to handle this sort of problem using a combination of pure Python threads and the wx.CallAfter function. Also if you want more help on this you can join the wxPython mailing list via www.wxpython.org. Here is a small example