Thanks, but it didn't work it just displayed a little 'box' character instead of aligning things. In C++ I have created menus in the resource file
MENUITEM "&UndotCtrl+Z", ID_EDIT_UNDO, GRAYED
MENUITEM "&RedotCtrl+Y", ID_REDO, GRAYED
MENUITEM SEPARATOR
MENUITEM "Cu&ttCtrl+X", ID_CUT, GRAYED
MENUITEM "&CopytCtrl+C", ID_COPY, GRAYED
MENUITEM "&PastetCtrl+V", ID_PASTE, GRAYED
MENUITEM SEPARATOR
MENUITEM "Options...", ID_OPTIONS
that do not include the 'a' just a tab character and are right aligned for the hotkey references. It may not be possible to do this through blue (it may have to be through a resource file). I know the code for the 'tab' character (9) and have tried that, but it simply tabs the text over (left aligned still). I am wondering if the '&' character might affect this, however I do not really know the purpose of it or where to place it as I did not originally write the above code but simply modified it from a website.