Questions tagged [rdcomclient]

This package provides dynamic (i.e. non-compiled) access to COM objects from within R. It allows R to act as a COM client and invoke methods and access properties in any COM object that implements the IDispatch interface.

This package provides dynamic (i.e. non-compiled) access to COM objects from within R. It allows R to act as a COM client and invoke methods and access properties in any COM object that implements the IDispatch interface. This allows us to access and control applications such as Excel, Word, Power Point, Web browsers, etc.

Information from: http://www.omegahat.org/RDCOMClient/

127 questions
0
votes
0 answers

Deploying shiny app to shinyapp.io with a package not on CRAN or Github

I am trying to deploy my shiny app but it is failing because RDCOMClient is not on CRAN or Github. Well to clarify a version of RDCOMClient is on Github at here but this version does not appear to work with my version of R. I downloaded the binary…
0
votes
0 answers

R packages "rcom" & "RDCOMClient" not available in R 3.4.1

I am using the latest (patched) version of R (3.4.1.) and have been using R2PPT package for some time. Unfortunately, the package doesn't work anymore as rcom & RDCOMClient dependencies don't seem to be available. The error message is: Warning in…
0
votes
1 answer

Is RDCOMClient still available?

I have spent the past several days trying to install RDCOMClient in order to integrate R output in MS Word using R2wd Thanks to SO, I was finally able to wrestle devtools and other required packages into shape (man, that was way more difficult than…
tparrent
  • 1
  • 1
  • 3
0
votes
1 answer

Using Excel Addins with RDCOM R package

I want to use the RDCOMClient to run Excel from R and it works just fine, except that the add-ins, most importantly the "Solver" addin, won't work. Does anyone know how to solve this issue? Thanks in advance! EDIT: To prevent a real wall of text,…
Ma Breidi
  • 11
  • 2
0
votes
1 answer

R: Can the R2wd package be used to iterativly insert a table at the end of a word file? How?

I have a file that I open using wdGet(filename="exOut.doc",visible=FALSE). This file already has images in it that I've inserted using html and cat(img, file=outputDoc, sep="\n", append=TRUE). I need to insert a table at the end of the document, but…
Frikster
  • 2,755
  • 5
  • 37
  • 71
-1
votes
1 answer

How to move an email between folders using RDCOMCLIENT

I'd like to automate the movement of emails from one folder (FolderA) to another folder (FolderB) through R using RDCOMCLIENT. I've written a simple for loop that looks like this: OutApp <- COMCreate("Outlook.Application") outlookNameSpace <- …
Dieu94
  • 371
  • 1
  • 11
1 2 3
8
9