[python-win32] shell_view.py problem

2006-12-02 Thread Andrew Kirkpatrick
Hello, I'm having a play with python on windows and installed pywin32 version 210 for python 2.5. There is a nifty example C:\Python25\Lib\site-packages\win32comext\shell\demos\servers\shell_view.py that creates a virtual folder under the desktop root in windows explorer. When I run it, it

[python-win32] Re: shell_view.py problem

2006-12-02 Thread Roger Upole
Andrew Kirkpatrick wrote: Hello, I'm having a play with python on windows and installed pywin32 version 210 for python 2.5. There is a nifty example C:\Python25\Lib\site-packages\win32comext\shell\demos\servers\shell_view.py that creates a virtual folder under the desktop root in windows

[python-win32] Console width in characters

2006-12-02 Thread Tony Cappellini
I'm trying to find an API that will give me the width of a cmd console window, in charaters. GetSystemMetrics(SM_CXSCREEN) will return it in pixels- but that doesn't help. If the user resizes the console, I want to be able to adjust the text output of a program I've looked at the WConio

[python-win32] Console width in characters

2006-12-02 Thread Roger Upole
Tony Cappellini wrote: I'm trying to find an API that will give me the width of a cmd console window, in charaters. GetSystemMetrics(SM_CXSCREEN) will return it in pixels- but that doesn't help. If the user resizes the console, I want to be able to adjust the text output of a program