Re: [python-win32] Accessing properties of share on DFS

2008-09-05 Thread Michael Kesper
Hi, * Tim Golden <[EMAIL PROTECTED]> [2008-09-01 17:13:20 +0100]:   >> * Tim Golden <[EMAIL PROTECTED]> [2008-08-27 14:35:37 +0100]: >> >>> You might be able to get there with WMI. The following >>> works on my own machine, but I'm not sure what machine >>> you'd need to access to list the DFS s

Re: [python-win32] Internet Explorer constants

2008-09-05 Thread Mike Driscoll
Hi Gabriel, En Fri, 05 Sep 2008 05:23:01 -0300, Tim Golden <[EMAIL PROTECTED]> escribió: Gabriel Genellina wrote: Hello I want to control Internet Explorer. This is what I have so far: import win32com.client from win32com.client.gencache import EnsureDispatch url = "..." IE = EnsureDispatch

[python-win32] adodbapi 2.2.1 (bugfix) release.

2008-09-05 Thread Vernon Cole
I found a bug in adodbapi v2.2 already. When putting data into a numeric database column, if the input was in a string (as for example the value of a wxPython grid cell), then the data would be truncated to the binary length of the field. So if I tried tried putting "12345" into an integer column,

Re: [python-win32] Handling COM events in a python thread

2008-09-05 Thread Tim Golden
Ujjaval Suthar wrote: Hi all, I have a COM control which fires a status event called ProcessingDataAvailable(). The COM control has a method call AddData() with some data parameters. Using python, in a simple program, I can instantiate COM object via Dispatch and call AddData() method succe

Re: [python-win32] Internet Explorer constants

2008-09-05 Thread Gabriel Genellina
En Fri, 05 Sep 2008 05:23:01 -0300, Tim Golden <[EMAIL PROTECTED]> escribió: Gabriel Genellina wrote: Hello I want to control Internet Explorer. This is what I have so far: import win32com.client from win32com.client.gencache import EnsureDispatch url = "..." IE = EnsureDispatch("InternetEx

Re: [python-win32] Internet Explorer constants

2008-09-05 Thread Tim Golden
Gabriel Genellina wrote: Hello I want to control Internet Explorer. This is what I have so far: import win32com.client from win32com.client.gencache import EnsureDispatch url = "..." IE = EnsureDispatch("InternetExplorer.Application") IE.Navigate(url) IE.Visible = 1 It works fine and shows the

[python-win32] Handling COM events in a python thread

2008-09-05 Thread Ujjaval Suthar
Hi all, I have a COM control which fires a status event called ProcessingDataAvailable(). The COM control has a method call AddData() with some data parameters. Using python, in a simple program, I can instantiate COM object via Dispatch and call AddData() method successfully. Now, I want to hav

[python-win32] Internet Explorer constants

2008-09-05 Thread Gabriel Genellina
Hello I want to control Internet Explorer. This is what I have so far: import win32com.client from win32com.client.gencache import EnsureDispatch url = "..." IE = EnsureDispatch("InternetExplorer.Application") IE.Navigate(url) IE.Visible = 1 It works fine and shows the requested page. Now I wan