The 01.01.2002 Bugs (=errors) Report on Demo02

Here are some bugs (=errors) found in the Demo02 files, after it has been
published on the web.

- In tEx012.pp, line 397, just after the 'WM_SIZE : begin', the following
  lines are missing :
      // must be called to have the right default handling.
      WindowProc := inherited WindowProc(hWindow, wMsg, wPar, lPar);
  Without these lines, when a child window is maximized, we cannot minimise it
  again.

- In tEx012.pp, line 400 is :
   WM_SETFOCUS : begin
      // The status line must change
      with  PMyMDIWindow(poGrParent)^ do begin
         oRichEdit.SetModifyState(oRichEdit.fModified);
         end;
      end;

   Should be :

   WM_SETFOCUS : begin
      // The status line must change
      with  PMyMDIWindow(poGrParent)^ do begin
         oRichEdit.SetModifyState(oRichEdit.fModified);
         end;

      // give the focus to the rich text.
      SetFocus(oRichEdit.hWin);
      end;

   The "SetFocus(..." has been added.

What I can't resolve !!!!!!!
""""""""""""""""""""""""""""
To come


If YOU want to help and plans for the futur.
""""""""""""""""""""""""""""""""""""""""""""
   Actually the library is growing quickly, many new  object - units are comming.
Later it will be easier to help.

See  PlanFutur02.pp  if you want to help, or want to see what is planned to come.


Information published on the web by  Bernard.Gisin@Infomaniak.ch  at the URL :
http://www.perso.ch/Bernard.Gisin/FreePascal/demo02/index.html
See also improvements in :
http://www.perso.ch/Bernard.Gisin/FreePascal/index.html

Last modified : The 27th of december 2001, by Bernard Gisin.
