Displaying 20 results from an estimated 30000 matches similar to: "R Startup options (MDI and SDI)"
2003 Apr 22
2
Weird Windows startup menu display problem in 1.7.0 (PR#2817)
Folks:
Winnt; R1.7.0 (freshly installed) running under Rgui.exe.,MDI=yes.
The following is repeatable:
On startup, in my Rprofile.site file, I use winMenuAdd() etc. to install
some user menus. However, they do not appear when R GUI window opens. If I
minimize and restore the window, the added menus now are present.
The exact same procedure under 1.6.2 with exactly the same Rprofile.site and
2006 Apr 11
1
Setting --sdi in R 2.3.0 beta for Windows
Dear r-devel list members,
I find that adding --sdi to the Target field in the short-cut for R is
ineffective in R 2.3.0 beta for Windows (version/platform details below).
Setting MDI = no in the Rconsole file works, however.
It's probably a bit late to request this for version 2.3.0, but it would be
nice to be able to select either the SDI or MDI in the R Windows installer.
Regards,
John
2002 Jan 22
0
Problems running 'R' on Windows-2000
I run R 1.3.1 on Win 2000 Pro and I don't have any problems. I don't use the
--vanilla switch.
my Rprofile is completly commented out(This is the way it came). Here is a
copy of my Rconsole(I made no changes to it):
# Optional parameters for the console and the pager
# The system-wide copy is in rwxxxx/etc.
# A user copy can be installed in `R_USER'.
## Style
# This can be
2008 Jun 04
1
Enter key in data editor bombs program in MDI (PR#11579)
Full_Name: Michael H
Version: 2.7
OS: Windows XP SP3
Submission from: (NULL) (74.74.76.1)
When running R with the multiple document interface, pressing enter in the data
editor causes the program to crash with the following command:
Dataset <- edit(as.data.frame(NULL))
This problem persists when using the fix command, such as fix(Dataset).
Interestingly, the arrow keys and mouse work fine
2002 Oct 17
1
Startup on Windows 2000
I am having difficulty coming to grips with Appendix B.2 of the
otherwise very useful "An Introduction to R" and the related help file
for Startup. I am running RGui 1.6.0 on a Windows 2000 machine from the
default installation. How the concepts discussed in B.2 and the Startup
help file relate to what I see on my machine is something of a mystery.
I quote from the Startup file:
2002 Jan 05
1
R-WinEdt question - answer
The answer to my question was contained in
http://cran.r-project.org/contrib/extra/winedt/ReadMe ,
although it helped to receive the restatements that were emailed to me.
As mentioned by Uwe Ligges, Renuad Lancelot, Niels Waller, my mistake was
not starting R before
using R-WindEdt.
Below I will copy the instructions on using R-WinEdt by Renaud Lancelot
(except for the last paragraph which is
2010 Aug 11
3
Using command line --file or -f
*What I want to do:
*Create a windows shortcut that will start the R gui **and**
simultaneously source a file
*What I have already tried:
*This almost works, but it's not the interactive R GUI:
R --no-save --sdi -file="C:\SomePath\example.R"
These open the R GUI, but doesn't recognize -f --f --file -file
RGUI --no-save --sdi -file="C:\SomePath\example.R"
2005 Nov 10
2
R: bug in windows GUI/script editor (PR#8288)
Hi Duncan,
I am running R in MDI mode (with localisation not installed because I need to use RWinEdt), on an Italian version of Windows 2000 Pro.
I just logged in today and tried to reproduce the bug: the first three times all was fine, the fourth one I got the bug, and finally noticed one detail: the bug appears when I open an R script (I tried several) which causes the "part of the
1999 Nov 27
1
.Rprofile results in corruption of .RData? (PR#346)
It could be that the following may be due to something wrong that I managed
to do (I cannot think what...) but I submit this report in case it is something
that you want to know about (I have solved the problem by removing .Rprofile as
I describe below).
1. After compiling/installing R 0.90 (an uneventful process), it
worked perfectly the first time, and it read .RData written by the
previous
2004 Apr 14
1
Re: [R] Execute function at startup
I think you can already do this via .First(). If you start your .First with something like this [give or take some parentheses]
if( !is.null( runfirst <- Sys.getenv( 'RUNFIRST')))
try( eval( parse( text=runfirst))))
then whatever you pass in as RUNFIRST=... should get executed on startup. Could even be a call to source(...) if you want to source a particular file. I have a similar
2004 Mar 16
0
MDI and submenues
Hello wxruby-users,
Kevin, thanks for fast addition of the support of MDI and submenues!
I''ve tested it under WinXP and all works very well. There is a test
example at the end of the message.
--
Best regards,
Pavel
mailto:papushev@inp.nsk.su
#================================================
require ''wxruby''
include Wx
class MyFrame < MDIParentFrame
def
2011 Apr 18
1
having trouble with "R CMD INSTALL"
Hello,
I was having trouble passing in command line options when doing an package
install earlier.
>From An Introduction in R
> In addition, you can use25<http://cran.r-project.org/doc/manuals/R-intro.html#fn-25>options
> --arch=, --no-environ, --no-init-file, --no-site-file and --vanillabetween
> R and CMD: these affect any R processes run by the tools. (Here --vanillais
2003 Feb 06
2
.Rprofile, .Rfirst, and .Rdata
Hi all,
After a short hiatus away from R I have found that it's changed a bit.
I used to keep a definition of .First in .Rprofile that did a couple of
things on startup (load a couple of libraries). Now, I've discovered
that when I change the definition of .First in .Rprofile it doesn't
change anything when I start up, because .First is held over in .Rdata
from the last session.
2006 Oct 21
0
[703] trunk/wxruby2/Changelog: Get/SetStipple for Wx::Pen; faster building on dual core; MDI sample bugs on OS X
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding:
2006 Aug 27
1
MDI fixed
In diagnosing the wxWindow.h problem I discovered that the problem is
related to directors wrapping returned pointers. I went in to
wxMDIParentFrame and removed ''virtual'' from a couple of the functions
and the MDI windows work again.
I will investigate a fix for this later, since there are a lot of
functions that return pointers. However, the MDI crash was a big one
that
2010 Jan 06
1
MakeActiveBinding help needed
Hi,
I wanted a Q&D way to open a new graphics window but keep the focus in
the console window (under Windows and the Rgui), so I wrote a line into
my Rprofile.site file as follows:
invisible(makeActiveBinding('newdev', function(...)
dev.new(restoreConsole=T), .GlobalEnv))
(That is all on one line, incase the mailer re-parses it). This gives me
a command "newdev" which
2006 Mar 16
1
autoloading .RData files / .Rhistory file
NOTE: WinXP, R2.2.0
All,
a while back I posted a question about using relative filereferencing.
The responses have allowed me to successfully set up the following
directory structure:
...\data\raw
...\data\derived
...\prog
...\lst
...\log
In the \prog directory I have put an RGui.exe shortcut and "pointed it"
at \prog as the "Start In" location. In the same
2009 Jan 14
2
Windows installer text bug (PR#13445)
Full_Name: Rob Cranfill
Version: 2.8.1
OS: Windows XP SP2
Submission from: (NULL) (130.76.32.19)
Using the Windows installer for 2.8.1, partway through the process there is a
dialog that looks something like this:
----------------------------------------------
Display Mode
Do you prefer the MDI or SDI interface?
-------
Please specify MDI or SDI, then click Next.
(*) MDI (one big
2004 Feb 10
1
MDI
Hello,
I want to use wxruby in my application, but this should be MDI application.
Kevin, could you add MDIParentFrame, MDIClientWindow and MDIChildFrame
in wxruby-0.3, please?
--
Best regards,
Pavel
mailto:papushev@inp.nsk.su
2009 May 11
1
MDI form in Wine
Hi all,
One of my application use MDI(Multiple Document Interface) form, when I open 2 forms at the same time, and close one form first, then I can still see some image of previous form overlapped on the other form, if I minimize the window and the maximize the other form, the overlapped image will disappear!
Does anyone know how to prevent from this situation? Thanks!
Best