Hey guys. The problem is pretty simple. I'm trying to use a font after creating and i keep getting the same error and i don't know why:

Can anyone spot the error in the following code?
Note: I asked the same question in a different site (Progress Customer Community)

Can anyone spot the error in the following code?
Code:
DEFINE TEMP-TABLE tt-test NO-UNDO
FIELD oui AS CHAR
FIELD croissant AS CHAR.
CREATE tt-test.
ASSIGN
tt-test.oui = "2"
tt-test.croissant = "3"
.
DEFINE FRAME cust-bal
tt-test.oui
tt-test.croissant
WITH CENTERED ROW 3 TITLE "hon hon hon" USE-TEXT.
FOR FIRST tt-test NO-LOCK WITH FRAME cust-bal:
DISPLAY
tt-test.oui
tt-test.croissant .
END.
DEFINE VARIABLE i-FontIndex AS INTEGER NO-UNDO INITIAL 249.
PUT-KEY-VALUE SECTION "fonts":U KEY "font":U + STRING(i-FontIndex) VALUE("Arial, size=32") NO-ERROR.
FONT-TABLE:NUM-ENTRIES = i-FontIndex.
MESSAGE 1
SKIP FONT-TABLE:NUM-ENTRIES
VIEW-AS ALERT-BOX INFORMATION BUTTONS OK.
FRAME cust-bal:FONT = FONT-TABLE:NUM-ENTRIES.
Note: I asked the same question in a different site (Progress Customer Community)