Strange effect on Folderex
Posted: Sun May 24, 2020 4:43 pm
Today I 'm creating a easy dialog with folderex
If Not USE Font on Dialog
I have this situation
If I use Font on Dialog
I have this situation
You can see the Titles of Tab of each folder on different position ...why ?
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
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 )
You can see the Titles of Tab of each folder on different position ...why ?