Displaying 1 result from an estimated 1 matches for "newwb".
Did you mean:
newbb
2009 Sep 15
0
chinese character support issue of rcom
...rting.
comGetPropery() always get the part of the Chinese character.
Any suggestion would be appreciated.
Thanks.
Michael
> library(rcom)
Loading required package: rscproxy
> txe<-comCreateObject("Excel.Application")
> comSetProperty(txe,"Visible",TRUE);
NULL
> newwb <- comInvoke(comGetProperty(txe,"Workbooks"),"Add")
> ws <- comGetProperty(newwb,"Worksheets",1)
> e<-comGetProperty(ws,"Range","A1")
> comSetProperty(e,"Value","abc defg hijl agfasdg")
NULL
> comGetProperty(...