Displaying 1 result from an estimated 1 matches for "winmenudelitem".
2004 Jun 01
1
WinMenu's question
...the source code I am forced to quit and restart Rgui.
"try.menu" <- function(){
OS <- .Platform$OS.type
GUI <- .Platform$GUI
if (!(OS == "windows" & GUI == "Rgui")) return("Sorry, you must be running R using Rgui.exe on MS Windows")
try(winMenuDelItem('EMG/Graphics','Plot.trace'))
try(winMenuDel('EMG/Graphics'))
try(winMenuDel("EMG"))
winMenuAdd("EMG")
winMenuAdd("EMG/Graphics")
winMenuAddItem("EMG/Graphics","Plot trace","plot.trace()")
}
"plot.tra...