search for: swintypelibs

Displaying 6 results from an estimated 6 matches for "swintypelibs".

2009 Feb 11
0
Beginner question about an Error message when loading SWinTypeLibs package
Hi List, I am trying to learn something about the exchange facilities between R and Windows Application with the RDCOMClient package from (http://www.omegahat.org/RDCOMClient/) and I have faced 2 problems: 1. I could not follow the link for the binary version of SWinTypeLibs package on the site, (as it has given me a restricted permission message), but I downloaded it by searching it on google (from http://www.omegahat.org/R/bin/windows/contrib/2.7/) 2. when loading RDCOMClient and then SWinTypeLibs (v 0.5-1) package I get the following error message: library(RDCO...
2004 Nov 08
3
Problems with DCOM client packages under R 2.0
I am trying to use the Windows COM interface under R 2.0, and have encountered the following difficulties: - the package RDCOMClient installs, loads and works under R 1.9.1, installs under R2.0, but does not load or work under R2.0 - the package SWinTypeLibs does not install or load under either R 1.9.1 or under R2.0 For the moment I am concentrating on the RDCOMClient package as it seems to be the most up-to-date one. My questions are: - has anybody else had this problem (and found a solution) - is this something that I should be able to easily f...
2005 Oct 17
1
COM objects with early bindings in R
Dear list member, I am using the packages RDCOMClient and SWinTypeLibs and try to import a COM object (created in Delphi) in R that is of type 'early binding' instead of late 'late binding'. Is there a possibility to do this in R? Currently, the following returns an error message: l1 = LoadTypeLib("c:\\Programme\\INVESCO\\QaCalendar\\Calendar.dl...
2010 Aug 13
1
RDCOMClient interface - problems setting a variable
I try to produce and modify shapes in a PowerPoint presentation but run into a difficulty setting a variable. library(RDCOMClient) # load RDCOMClient package library(SWinTypeLibs) # package SWinTypeLibs from Omegahat to access information about COM libraries ppt = COMCreate("PowerPoint.Application") # create a ppt COM ppt[["Visible"]] <- TRUE # set COM property visible to TRUE pres = ppt$Presentations()$Add() # add a presentation slide...
2003 May 22
0
4 packages for Windows users
...used as arguments in calls from the RDCOMClient package, and can be used to handle events from COM objects such as ActiveX controls, Excel. SWinRegistry - facilities for accessing the Windows registry and its contents. One can read and write values, create keys, and navigate the hierarchy. SWinTypeLibs - R interface to read Windows type libraries describing COM objects, C routines, etc. This allows us to "compile" methods for accessing COM objects from R more efficiently and with better local error-handling. The packages are reasonably stable but could benefit from people using...
2003 Jun 30
2
R as COM client (rather than server)
Hello all Can R be used as a COM client (rather than as a COM server)? The following (Splus) code shows the sort of thing I'd like to do: pMIM <- create.ole.object("mim31.Server") NoOutputLines <- call.ole.method(pMIM, "SendCmdLine", "show w") for (i in 1:NoOutputLines) show(call.ole.method(pMIM, "GetOutputLine")) release.ole.object(pMIM)