Alaska Software Inc. - it is possible to put an XbpStatic over a GraBox ()
Username: Password:
AuthorTopic: it is possible to put an XbpStatic over a GraBox ()
Jorge L. Borlandoit is possible to put an XbpStatic over a GraBox ()
on Sat, 03 Nov 2018 19:50:36 -0300
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()