Displaying 2 results from an estimated 2 matches for "syscmd".
Did you mean:
sascmd
2012 Oct 27
2
Getting error while running unix commands within R using system() function
Hello All,
I use Cygwin ( unix on windows) heavily for all my text data processing.
Also use Cygwin inbuilt *R* to do numerical processing.
*My aim is to integrate R and unix commands to avoid heavy memory usage that
R takes normally.*
I can run many unix commands using system("some unix command or sh script.sh
or even R file itself ") inside R.
But, When I tried to run the command
2005 Nov 17
0
problem with shell and acccess 97
...Dim strDB As String
Dim strCmd As String
If Not MiAccess Is Nothing Then
MiAccess.Quit
Set MiAccess = Nothing
End If
Set MiAccess = GetObject(, "Access.Application")
strDB = CaminoAlServidor & "\informes.mdb"
strCmd = SysCmd(acSysCmdAccessDir) & "\MSAccess.exe " _
& Chr(34) & strDB & Chr(34) & " /wrkgrp " & Chr(34) &
DBEngine.SystemDB & Chr(34) _
& " /Runtime"
Call Shell(strCmd, vbNormalFocus)
DoEvents: DoEvents: DoEvents...