PSSpreadsheet Class
Hi,
i´m using the new PSSpreadsheet Class API (Tools 8.55). Works fine with some classes but others throw me out of the session (like a time-out but just about a few seconds).
This is part of the code i´m using:
Local string &outFileName = "some name";
&ss = CreateObject("PSSpreadsheet");
&ss.Open(&outFileName, True);
...
(create and fill a rowset named &rsx)
...
&ss.SetRowSetData(&rsx); this line works fine! Fill my excel file with my rowset, in sheet "1" (a default active sheet when workbook created)
&ss.CreateSheet("3"); this line works fine too. It creates sheet "3" on my excel workbook
&ss.SetSheetActivate("3"); this line DOESN´T work. No error message shown,...just logs me out of my session.