Hi,
I have an application with the sfspreadsheetcontrol. I load an excel-file with multiple worksheets. The active sheet at start is the firsdt worksheet which is also displayed in the control. Now I need to switch by code to another worksheet, so that the user sees those new worksheet (e.g. because as a result of a search, I know that the wanted cell is on sheet 2).
I can change the active sheet: spreadsheetControl.ActiveSheet = spreadsheetControl.Workbook.Worksheets[worksheetname];
Now the active sheet has changed, but still the old worksheet is displayed by the control. I have tried something like: spreadsheetControl.ActiveSheet.Activate();
But the old worksheet is still active.
So what do I need to change, worksheet?
Thanks,
Michael