I'm trying to use SAY + FONT with Escapement, but the text is not displayed properly! Can anyone help me?
- Code: Select all Expand view
#include "FiveWin.ch"
FUNCTION Main()
LOCAL oWnd,oSay[3],oFont[2]
DEFINE FONT oFont[1] NAME "ARIAL" SIZE 0,20 ;
NESCAPEMENT 900 BOLD
DEFINE WINDOW oWnd FROM 1,5 TO 20,65;
TITLE "Testing SAY"
@ 05,05 SAY oSay[2] PROMPT "THIS DONT SHOW" OF oWnd COLOR 0 ;
SIZE 80,200 FONT oFont[1] CENTER DESIGN UPDATE
ACTIVATE WINDOW oWnd