Hi to all
Could you tell me if it is possible to put text with an XbpStatic() over of
a GraBox(,,,, GRA_FILL),
because in the code that I show below, GraBox() does not allow to see the
XbpStatic()
is possible the combination of these 2 elements and how?
thank you very much and best regards
**********************************
oDlg := XbpDialog():New( AppDesktop(), , { 10, 50 }, { 800, 600 }, , )
oDlg:Create()
oDla := oDlg:drawingArea
oPS := oDla:lockPS()
GraBox( oPS, { 70, 100 }, { 500, 400 }, GRA_FILL )
oDla:unLockPS()
oXbp := XbpStatic():New( oDla,, { 70, 120 }, { 100, 20 }, )
oXbp:caption := 'Proveedores'
oXbp:type := XBPSTATIC_TYPE_TEXT
oXbp:options := XBPSTATIC_TEXT_VCENTER
oXbp:Create()