Hey
I want to update only the cell after set value to actual date
spreadsheet1.LoadFromFile(Datei)
dim Sheet As Spire.Spreadsheet.Forms.IWorksheet = spreadsheet1.ActiveWorksheet
Dim ColRow As CellAdressInfo = Sheet.ActiveCellAdressInfo
Sheet.Item(ColRow.Row, ColRow.Column).SetCellValue(Format(Now, "HH:mm"))
'spreadsheet1.Refresh()
the problem is if I use 'spreadsheet1.Refresh() the spreasheetviewer scrolls to the first row.
thank you GH