Ejemplo n.º 1
0
 public CmdExeGui cmd(string cmdToExecute, int postExecutionDelay)
 {
     //GuiHandle = CmdExeApi.currentWindow();
     CmdExeApi.hostCmd(cmdToExecute, postExecutionDelay);
     selectThis();
     return(this);
 }
    	public void launch(string executableToLaunch)
    	{
    		if (pathToCdb.fileExists().isFalse())
    		{
    			"Aborting launch since could not find .NET Debugger (cdb.exe) in the expected path: {0}".error(pathToCdb);
    			return ;    		
    		}
			cmdApi = new CmdExeApi(pathToCdb, executableToLaunch , dataReceived);
    		cmdApi.MinimizeHostWindow = true;    		    			
    		cmdApi.start();    			    		    		
    		cmdApi.hostCmd(extraExecutionCommand);
    	}
Ejemplo n.º 3
0
 public void launch(string executableToLaunch)
 {
     if (pathToCdb.fileExists().isFalse())
     {
         "Aborting launch since could not find .NET Debugger (cdb.exe) in the expected path: {0}".error(pathToCdb);
         return;
     }
     cmdApi = new CmdExeApi(pathToCdb, executableToLaunch, dataReceived);
     cmdApi.MinimizeHostWindow = true;
     cmdApi.start();
     cmdApi.hostCmd(extraExecutionCommand);
 }