Re: Executing UNO Dispatcher in VBScript doesn't reflect any changes in ODS file

2012-03-05 Thread F C. Costero
tore() >> oSpreadsheet.Close(True) > Close won't do that for you. > /tj/ > > > On 3/5/2012 05:10, Subodh Asthana wrote: >> >> Executing UNO Dispatcher in VBScript doesn't reflect any changes in ODS >> file >> http://stackoverflow.com/q/9562093/26

Re: Executing UNO Dispatcher in VBScript doesn't reflect any changes in ODS file

2012-03-05 Thread TJ Frazier
Try adding a Store request: > Call UnoObj.executeDispatch(document, ".uno:BackgroundColor", "", 0, > propertyset) oSpreadsheet.Store() > oSpreadsheet.Close(True) Close won't do that for you. /tj/ On 3/5/2012 05:10, Subodh Asthana wrote: Executing UNO Dispatch