In the following sample the string CHECKLIST is not centered inside its msgitem:
EMG
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd, oFnt
DEFINE FONT oFnt NAME GETSYSFONT() SIZE 0, -8 BOLD
DEFINE WINDOW oWnd
SET MESSAGE OF oWnd;
TO "This is a status bar";
TIME DATE NOINSET 2007
DEFINE MSGITEM OF oWnd:oMsgBar;
SIZE 80;
PROMPT "CHECKLIST";
FONT oFnt
DEFINE MSGITEM OF oWnd:oMsgBar
ACTIVATE WINDOW oWnd
RELEASE FONT oFnt
RETURN NILEMG
