Select All
To connect your FormattedTextControl to the Edit->SelectAll Menu is relatively easy. Add a menu handler for your EditSelectAll menu command in the window where your control resides. Then, if your control is named ftc1 you’d have something like this:
Function EditSelectAll() As Boolean
ftc1.selectAll
return true
End Function