Displaying 3 results from an estimated 3 matches for "useshellexecute".
2009 Sep 10
1
executing rscript from VB
...arguments
to the R script. Is there a way to get the > operator working
thanks, R
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "E:/R/bin/Rscript.exe";
proc.StartInfo.Arguments = "E:/R/bin/test.r > test.out";
proc.StartInfo.UseShellExecute = true;
proc.Start();
2007 Aug 21
1
runing .r file from C#
...om within C# code.
After reading about this topic I am trying to do this :
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "E:/R/R-2.5.1 /bin/Rterm.exe";
proc.StartInfo.Arguments = " <'test.r' --no-save";
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.RedirectStandardOutput = false;
proc.Start();
bun when Rterm starts it shows parameter <test.r ignored
When I try to do the same from a command line shell it DOES work just fine :
" Rterm.exe <test.r --no-save" runs the file without any problems.
Do you...
2009 Sep 11
3
For sending my R package as part of R-project
...arguments
to the R script. Is there a way to get the > operator working
thanks, R
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "E:/R/bin/Rscript.exe";
proc.StartInfo.Arguments = "E:/R/bin/test.r > test.out";
proc.StartInfo.UseShellExecute = true;
proc.Start();
------------------------------
Message: 17
Date: Thu, 10 Sep 2009 06:10:59 -0700 (PDT)
From: bbimber <bimber at wisc.edu>
Subject: [R] tranform a table?
To: r-help at r-project.org
Message-ID: <25382806.post at talk.nabble.com>
Content-Type: text/plain; charse...