what does it do in 5 sentances or less?

The ListViews support typing. E.g., when you click in the Artists pane (to set focus) and type F, then the selection will go to the first artist with the letter F. If you want to see the group Fayunda, then simply type it when the artists pane has focus.@Steegy - a nice Xtra option would be first character of the artist (A-Z...)
Code: Select all
someVariable = SDB.localize("Quality")
Code: Select all
'*****************************************************
'**** GLOBAL DECLARATIONS ****
'*****************************************************
Option Explicit
'Localizable strings
Const stringMenuItemCaption = "Show Library Panes"
Const stringAlbums = "Albums"
Code: Select all
ViewMenuItem.Caption = stringMenuItemCaption
...
LastSelection = stringAlbums
Code: Select all
ViewMenuItem.Caption = SDB.localize(stringMenuItemCaption)
...
LastSelection = SDB.localize(stringAlbums)