https://bugs.documentfoundation.org/show_bug.cgi?id=93391
--- Comment #15 from Robert Großkopf <[email protected]> --- Tested this: Set cursor in the first field. Moved with arrow key to the right. Text content will be marked completely when arriving the cell for text content. Then moved through the text and get next cell with numeric content. Numeric content wont be marked. Cursor is inside the content. Moving into a numerical field wont mark the content. Have written a macro, which will support this also for numerical fields, because people want to write new values over old values: SUB SelectContent(oEvent AS OBJECT) DIM oField AS OBJECT DIM Sel oField = oEvent.Source Sel = oField.Selection Sel.Min = 0 Sel.Max = Len(oField.Text) oField.Selection = Sel END SUB Setting this on focus for a numerical field and it will mark the content. The buggy behavior still exists special for numeric content. -- You are receiving this mail because: You are the assignee for the bug.
