Posted 15 September 2021, 6:15 pm EST
Is there a way to synchronize two spreads?
To explain my self, I got two instances of a Fspread and I need that if I modify a cell or set a value to a cell is replicated in the other Fspread. For example, if in the fspread1 I do fspread1.ActiveSheet.Cells[2,2].value = “something” that something will be also assigned to fspread2.ActiveSheet.Cells[2,2]. So in both fspreads the position 2,2 is assigned with “something” and so du on if I change the style of the cell.
I did find the method Attach() but I used it in this way:
fspread1.Attach(fspread2.AsWorkbook())
But it did not work.
Is there something to accomplish this?