My Images does not show in group. even group is Transparent. If I remove group its ok.
Is there any solution for my problem?
- Code: Select all Expand view
- #include "FiveWin.ch"
function Main()
LOCAL oDlg
xVB_FILE:="SAMPLE.JPG"
DEFINE DIALOG oDlg SIZE 400, 500
oDlg:SetColor(,9425383)
@ 2, 3 GROUP oGrp TO 100, 100 PROMPT " Group Text " OF oDlg PIXEL TRANSPARENT
@ 10,10 IMAGE oBmp OF oDlg PIXEL FILENAME xVB_FILE SCROLL SIZE 150,212 Update
ACTIVATE DIALOG oDlg CENTERED //ON INIT (oBmp:LoadImage(,xVB_FILE),oBmp:Refresh())
return nil