Thanks for getting back to me,
Just so I understand you right, here's what i've done. (Still not running my application :S)
w/o changing working directory
	
	-         QString-  command  = ". " +-  rx_path  + "/applications/bin/application"- ; 
 
-         rx_process -- >start (- command, QStringList()-  <<  "-udp"-  <<  "42003")- ; 
        QString rx_path =  QCoreApplication::applicationDirPath();
        QString command = ". " + rx_path + "/applications/bin/application";
        rx_process = new QProcess;
        rx_process->start(command,QStringList() << "-udp" << "42003");
To copy to clipboard, switch view to plain text mode 
  
w/ changing working directory
	
	-         rx_process->setWorkingDirectory(rx+path + "/applications/bin/"); 
-         rx_process -- >start (- command, QStringList()-  <<  "-udp"-  <<  "42003")- ; 
        QString rx_path =  QCoreApplication::applicationDirPath();
        QString command = "./application";
        rx_process = new QProcess;
        rx_process->setWorkingDirectory(rx+path + "/applications/bin/");
        rx_process->start(command,QStringList() << "-udp" << "42003");
To copy to clipboard, switch view to plain text mode 
  
				
			
Bookmarks