[python-win32] Re: Transparent Windows - API failure

2006-07-07 Thread Roger Upole
"Metz, Bobby W, WWCS" wrote > All, > This is my first attempt with setting transparent backgrounds, > so probably simple error. I've had some success making Notepad > transparent, but am getting no results against a Tkinter window. Also, > any workaround to using SetLayeredWindowAttributes on Wi

[python-win32] Re: ADOX Delete method ?

2006-07-07 Thread Roger Upole
Jim Vickroy wrote: > ADOX Catalog objects appear to have a Delete method > (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/admscadoddlmethods.asp) > but I'm not seeing it from python-win: > > >>> from win32com.client import Dispatch > >>> catalog = Dispatch('ADOX.Catal

[python-win32] ADOX Delete method ?

2006-07-07 Thread Jim Vickroy
ADOX Catalog objects appear to have a Delete method (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/admscadoddlmethods.asp) but I'm not seeing it from python-win: >>> from win32com.client import Dispatch >>> catalog = Dispatch('ADOX.Catalog') >>> print dir(catal

Re: [python-win32] Trouble Automating Alibre CAD package

2006-07-07 Thread Duane Kaufman
Hi, Thanks for the idea. When I create a minimal project in MS Basic Express (console App) the following works: Module Module1 Sub Main() Dim AlibreHook As AlibreX.AutomationHookAlibreHook = GetObject(, "AlibreX.AutomationHook") Dim AlibreRoot As AlibreX.IADRoot

[python-win32] Run a script/executable as a service

2006-07-07 Thread billiejoex
Hi all. I would be very greatful if someone could give me an example code on how install an executable/python_script as a service under Windows NT platforms. I tried to play with win32serviceutil.InstallService() function and win32serviceutil.ServiceFramework class but I can't work it out yet. C