Page 1 of 1

Strange effect on Folderex

Posted: Sun May 24, 2020 4:43 pm
by Silvio.Falconi
Today I 'm creating a easy dialog with folderex

If Not USE Font on Dialog

Code: Select all

DEFINE DIALOG oDlg SIZE nWidth, nHeight  OF oParent;
   TITLE "Configurazione" PIXEL ;
   STYLE nOR(  WS_CAPTION, WS_MAXIMIZEBOX, WS_MINIMIZEBOX, WS_THICKFRAME )

   @ 3, 3 FOLDEREX oFolder PIXEL LEFT;
          PROMPT  "&Generale", "&Stampe","Spiaggia", "Planning" ;
                  TAB HEIGHT 110   ;
          BITMAPS aBitmaps  ;
          ALIGN FLDBMP_CENTER, FLDBMP_CENTER,FLDBMP_CENTER, FLDBMP_CENTER;
FONT oBold
I have this situation


Image

If I use Font on Dialog

Code: Select all

DEFINE FONT oFont NAME "Segoe UI" SIZE 0,-16
    DEFINE FONT oBold NAME "Segoe UI" SIZE 0,-16 BOLD

DEFINE DIALOG oDlg SIZE nWidth, nHeight  OF oParent;
   TITLE "Configurazione" PIXEL FONT oFont;
   STYLE nOR(  WS_CAPTION, WS_MAXIMIZEBOX, WS_MINIMIZEBOX, WS_THICKFRAME )
I have this situation
Image

You can see the Titles of Tab of each folder on different position ...why ?