FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index Bugs report & fixes / Informe de errores y arreglos Bug in TDialog [Fixed]
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Bug in TDialog [Fixed]
Posted: Sat Mar 10, 2018 11:48 AM
Default value for lResizable parameter is missing:

Code (fw): Select all Collapse
METHOD New( nTop, nLeft, nBottom, nRight, cCaption, cResName, hResources,;
            lVbx, nStyle, nClrText, nClrBack, oBrush, oWnd, lPixels,;
            oIco, oFont, nHelpId, nWidth, nHeight, lTransparent, aNewGradColors,;
            cVarName, lUnicode, lTruePixel, lResizable ) CLASS TDialog

   DEFAULT hResources := GetResources(), lVbx := .f.,;
           nClrText   := GetSysColor( COLOR_BTNTEXT ), nClrBack := GetSysColor( COLOR_BTNFACE ),;
           lPixels    := .f., nTop := 0, nLeft := 0, nBottom := 10, nRight := 40,;
           nWidth     := 0, nHeight := 0, lTransparent := .f.,;
           nStyle     := nOR( DS_MODALFRAME, WS_POPUP, WS_CAPTION, WS_SYSMENU, ;
                         If( lResizable == .t., WS_MAXIMIZEBOX + WS_MINIMIZEBOX + WS_THICKFRAME, 0 ) ),;


EMG
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Bug in TDialog
Posted: Sat Mar 10, 2018 12:33 PM

It does not seem to cause any error, sorry.

EMG

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Bug in TDialog
Posted: Sat Mar 10, 2018 02:01 PM

Anyway, the new clause RESIZEABLE is missing in dialog.ch.

EMG

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Bug in TDialog
Posted: Thu Mar 15, 2018 10:22 AM
Enrico Maria Giordano wrote:Anyway, the new clause RESIZEABLE is missing in dialog.ch.

EMG


Any news?

EMG
Posts: 6755
Joined: Wed Feb 15, 2012 08:25 PM
Re: Bug in TDialog
Posted: Thu Mar 15, 2018 11:43 PM

Fixed for next version

Cristobal Navarro

Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo

El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM

Continue the discussion