DCSTATUSBAR WITH PARENT

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
digitsoft
Posts: 461
Joined: Thu Jan 28, 2010 1:33 pm
Location: Republica Dominicana
Contact:

DCSTATUSBAR WITH PARENT

#1 Post by digitsoft »

Hello roger
how I can create a Parent using DCSTATUSBAR

Code: Select all

eXample
@ 0.0,0.0 DCDIALOG oDlg2 DRAWINGAREA oDraWinArea   SIZE 1000,1000 NOTITLEBAR  BORDER XBPDLG_NO_BORDER SCROLLBARS XBP_SCROLLBAR_VERT+XBP_SCROLLBAR_HORIZ

  DCSTATUSBAR oStatTitulo HEIGHT 62 ALIGN DCGUI_ALIGN_TOP
  @ 00.0,00.0 DCTOOLBAR oToolBarTitulo SIZE 62,180 TYPE XBPSTATIC_TYPE_TEXT  PARENT oStatTitulo  COLOR GRA_CLR_BLUE, GRA_CLR_WHITE

@ 01.00,1.0 DCSAY "Prueba" PARENT oStatTitulo  COLOR GRA_CLR_BLUE    FONT '100.Arial Bold'   SAYSIZE 150.0,10.7 

DCREAD GUI FIT
Nolberto Paulino
Regards
Nolberto Paulino
Regards

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: DCSTATUSBAR WITH PARENT

#2 Post by rdonnay »

Try this:

Code: Select all

@ 0.0,0.0 DCDIALOG oDlg2 DRAWINGAREA oDraWinArea   SIZE 1000,1000 NOTITLEBAR  BORDER XBPDLG_NO_BORDER SCROLLBARS XBP_SCROLLBAR_VERT+XBP_SCROLLBAR_HORIZ

  DCSTATUSBAR oStatTitulo HEIGHT 62 ALIGN DCGUI_ALIGN_TOP PARENT oDlg2

  @ 00.0,00.0 DCTOOLBAR oToolBarTitulo SIZE 62,180 TYPE XBPSTATIC_TYPE_TEXT  PARENT oStatTitulo  COLOR GRA_CLR_BLUE, GRA_CLR_WHITE

@ 01.00,1.0 DCSAY "Prueba" PARENT oStatTitulo  COLOR GRA_CLR_BLUE    FONT '100.Arial Bold'   SAYSIZE 150.0,10.7

DCREAD GUI FIT EVAL {||DC_StatusBarRepaint(oDlg2)}
The eXpress train is coming - and it has more cars.

Post Reply