Re: [python-win32] How to get Worgroup list?

2006-01-06 Thread Tim Golden
[Karlo Lozovina] | I've been Googling around for easiest way to do these three things | withoin a Python script: | | - get a list of workgroups on LAN | - get a list of computers in workgroup | - get a list of shares of a computer | | And i found next to nothing :(. The best I could do is try to

Re: [python-win32] Query and remove all IEBrowsers

2006-01-06 Thread Tim Golden
[George Flaherty] | | Is it possible with python/win32 to "query and remove" all | running internet explorers (ie browsers)? | | I have an automation package that requires no existing | internet explorers to be running. So I would like to call a | python/win32 script to close out any ie browse

[python-win32] ATT DSP32C to IEEE

2006-01-06 Thread RayS
I'm trying to find an efficient way to convert from DSP32C binary files smmm to IEEE float seee emmm I tried struct and bit-shifting from a C manual example, but it failed. Has someone else coded this in Python? I'll post the early attempt

Re: [python-win32] ATT DSP32C to IEEE

2006-01-06 Thread Thomas Heller
RayS <[EMAIL PROTECTED]> writes: > I'm trying to find an efficient way to convert from DSP32C binary files > smmm > to IEEE float > seee emmm > > I tried struct and bit-shifting from a C manual example, but it > failed. Has someone else cod

[python-win32] win32ras.Dial

2006-01-06 Thread Lai, Chern
Dear Sir/Madam, We have successfully initiated a connection via the win32ras.Dial command but it bombed out on the win32ras.HangUp command every time. Here is our code: import win32ras # Dialup with a RAS entry hdl, retcode = win32ras.Dial ( None, None, ("windows_ras_entry_name",

Re: [python-win32] ATT DSP32C to IEEE

2006-01-06 Thread Ray Schumacher
At 08:00 AM 1/6/2006, Thomas Heller wrote: >RayS <[EMAIL PROTECTED]> writes: > >> I'm trying to find an efficient way to convert from DSP32C binary files >> smmm >> to IEEE float >> seee emmm >> >> I tried struct and bit-shifting from a C ma

Re: [python-win32] ATT DSP32C to IEEE

2006-01-06 Thread Ray Schumacher
Following myself, I just made two new methods using array and struct, if anyone's interested: def _DSP32ToIEEE(fh, address): """ bytes == 4 to convert from DSP32C binary files smmm to IEEE float seee emmm """