- Code: Select all Expand view
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd, oBar, oSay
DEFINE WINDOW oWnd
DEFINE BUTTONBAR oBar OF oWnd 2007
@ 9, 100 SAY oSay PROMPT "This is not transparent " OF oBar PIXEL
oSay:lTransparent = .T.
ACTIVATE WINDOW oWnd
RETURN NIL
EMG