Yeah well, i am still newbie here... so...<br><br>Thanks for the Tip...<br><br><div class="gmail_quote">2008/6/17 Andreas Pakulat &lt;<a href="mailto:apaku@gmx.de">apaku@gmx.de</a>&gt;:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">On 17.06.08 15:52:02, Gustavo A. Díaz wrote:<br>
&gt; But the command is not being executed since i still have the export of the<br>
&gt; proxy variables empty.<br>
&gt; What i am doing wrong here?<br>
<br>
</div>You don&#39;t understand how processes and environment variables work.<br>
QProcess forks a new child process to execute the command you give it.<br>
Problem one: &quot;export ...&quot; is not a command, its a shell builtin function<br>
(bash probably) and thus won&#39;t do anything on its own. So you&#39;d at least<br>
need to use something like &quot;bash -c &#39;export ...&#39;&quot; as command. Next<br>
problem is that &quot;export&quot; only works in the shell and any shells that are<br>
started from the shell its been executed in. It doesn&#39;t have any<br>
influence on any other shell running on your machine and thus doesn&#39;t<br>
have any influence on any other process that you execute via QProcess or<br>
anywhere else in your system. If you want to start an application that<br>
uses these variables, you should start the application via QProcess and<br>
use QProcess&#39; functions to set the environment variables (IIRC<br>
setEnvironment()). Thats the only way to do this.<br>
<br>
Andreas<br>
<font color="#888888"><br>
--<br>
Exercise caution in your daily affairs.<br>
_______________________________________________<br>
PyQt mailing list &nbsp; &nbsp;<a href="mailto:PyQt@riverbankcomputing.com">PyQt@riverbankcomputing.com</a><br>
<a href="http://www.riverbankcomputing.com/mailman/listinfo/pyqt" target="_blank">http://www.riverbankcomputing.com/mailman/listinfo/pyqt</a><br>
</font></blockquote></div><br><br clear="all"><br>-- <br>Gustavo A. Díaz<br>GDNet Projects<br><a href="http://www.gdnet.com.ar">www.gdnet.com.ar</a>