>Ernesto enlightened us with:
>>
>>I'm trying to use a $ delimeter, but it doesn't seem to work. Here is
>>the code:
>>
>>
>>launchWithoutConsole("devcon.exe",d'$enable
>> "@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&"$)
Where did you get the idea that this would work? I can't find any
referen
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
Il Mon, 31 Oct 2005 07:18:31 -0800, Ernesto ha scritto:
> I'm trying to use a $ delimeter, but it doesn't seem to work. Here is
> the code:
>
>
> launchWithoutConsole("devcon.exe",d'$enable
> "@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&"$)
>
> I want to send the string parameter:
>
> enable
Ernesto enlightened us with:
> I'm trying to use a $ delimeter
Why?
> I want to send the string parameter:
>
> enable "@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&"
launchWithoutConsole("devcon.exe"
'enable "@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&"')
Or, if you should also be able to
I'm trying to use a $ delimeter, but it doesn't seem to work. Here is
the code:
launchWithoutConsole("devcon.exe",d'$enable
"@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&"$)
I want to send the string parameter:
enable "@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&"
to the program devcon.
The