Fíjate en las imágenes. En Gets dentro de folders el fondo no lo pinta completamente.
![Image](http://hyperupload.com/download/0228d13328/BMP1.bmp.html)
![Image](http://hyperupload.com/download/02539f9f69/BMP2.bmp.html)
Saludos
Code: Select all | Expand
#include "FWCE.ch"
//----------------------------------------------------------------------------//
function Main()
local oDlg, cText := "Hello world! "
DEFINE DIALOG oDlg TITLE "Source code Dialog" ;
SIZE 200, 100
@ 0.7, 2 SAY "Name:" SIZE 18, 10
@ 1, 4 GET cText SIZE 50, 10 COLOR "N/R"
@ 1.8, 6 BUTTON "End" ACTION oDlg:End() SIZE 30, 10
ACTIVATE DIALOG oDlg CENTERED ;
ON CLICK MsgInfo( "click!" ) ;
VALID MsgYesNo( "want to end ?" )
return nil