--- In [email protected], "entropyreduction"
<alancampbelllists+ya...@...> wrote:
>
> > > > ExcelApp.GetSaveAsFileName("TestVariants.xls", "Excel Files
> > > > (*.xls),*.xls", 1, "Hello")
>
> Ok, try comPlugin0.72_091221_no_guesses.zip. Above works okay on
> my system. Yours?
Yes, but this version breaks sub-objects again.
Your Excel demo script doesn't work but maybe this would be faster for testing.
Worked fine in version dated 12/17.
local appRef=com.create_object("Excel.Application")
appRef.visible=1
if (appRef.Workbooks.Count < 1)
appRef.Workbooks.Add
appRef.ActiveSheet.Name="TestSheet"
appRef.Worksheets("TestSheet").Activate
for(local local i=1; i<21; i++)
appRef.ActiveSheet.Cells(i, 2).Value="Number "++ i
endfor
appRef.visible=1
win.debug(appRef.ActiveSheet.Cells(1,2).Value)
;win.debug(appRef.Worksheets("TestSheet").Cells(1,2).Value)
win.show("=excel")
appRef.Release
com.unload
quit
>
> In a hurry tonight. Lemme know about
> comPlugin0.72_091221_no_guesses.zip