[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
[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
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
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
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",
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
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
"""