Re: [python-win32] Word FormField types

2008-02-04 Thread Kelie
Graessle, Glenn (FC COE glenn.graessle at honeywell.com writes: Is there an import file that defines the FormField types symbolically? from win32com.client import constants print constants.xlAscending print constants.wdFieldFormCheckBox ___

Re: [python-win32] Programming Outlook with python

2007-11-17 Thread Kelie
mobiledreamers at gmail.com writes: HelloI m looking for how to program Outlook with PythonAny pointers?Is it getting easier with Ironpython thanks ___ python-win32 mailing list python-win32 at python.org

[python-win32] problem creating a simple COM server

2007-11-13 Thread Kelie
rename the function pyfindall to findall, it works. But I could not do that with pysplit because there is a vb function called Split. Any hints? Thanks a lot! - kelie ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman

Re: [python-win32] odd problem with Microsoft Word

2007-03-18 Thread Kelie
Ross McKerchar it at crummock.com writes: When you use early bound code everything becomes case sensitive when it wasn't before. Admmitedly, however 'Add' with an uppercase A does seem right for office. Thanks for your reply Ross. But it seems to me early-binding is not the cause of

Re: [python-win32] win32gui.GetOpenFileName()

2007-03-04 Thread Kelie
Tony Cappellini cappy2112 at gmail.com writes: GetOpenFileName() This function takes one argument, but there is no info in the help for this. What is the argument and the type of the argument? Tony, maybe this page is helpful

Re: [python-win32] better way to get current process's name

2007-02-22 Thread Kelie
, when I switch between different applications. Oh, the reason I check the active application for every 0.1 second is I don't know how to do it otherway. Is there an event that corresponds to the active application/window change? Thanks again. -- Kelie

Re: [python-win32] better way to get current process's name

2007-02-22 Thread Kelie
to wait is the windows related to such editings popping up. -- Kelie ___ Python-win32 mailing list Python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

[python-win32] better way to get current process's name

2007-02-21 Thread Kelie
) if find: return find[1].Name else: return None if __name__ == __main__: print get_current_process_name() the above code works. but it is slow. it always takes a few seconds to get the procList. is it normal? thanks for your help -- Kelie