Page 1 of 1

Bug in DEFINE WINDOW command

Posted: Fri Jul 28, 2006 3:23 pm
by Enrico Maria Giordano
The following sample seems to uncorrectly create an MDI window instead of a normal one (removing PIXEL clause the window switches back to normal):

Code: Select all

#include "Fivewin.ch"


FUNCTION MAIN()

    LOCAL oWnd

    DEFINE WINDOW oWnd PIXEL

    ACTIVATE WINDOW oWnd

    RETURN NIL
EMG