Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- FiveWin 1.9.2 - January 97 - fivewin 1.8 c http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 FiveWin 1.8 c
 =============

* Bug: Class TDialog METHOD Command(), we were not working properly processing
  pushbuttons commands under many, many existing windows/dialog/boxes
  circunstances. It was something very easy to fix: ( dialog.prg Line 268 )
  ( a < for a != ).

* Enhancement: There was a problem with Clipper 5.2 A and latest FW 1.8
  versions. It has been corrected, so Clipper 5.2 A may be used (though
  we strongly recommend to use CA-Clipper 5.2 D).

* Bug: Class TMdiChild has been modified to work properly when implementing
  a MsgBar in a MdiChild.

* Enhancement: DLL.CH and DllCall.c have been modified to admit working
  with numeric variables used by reference:

  We do not provide a working sample as it depends on the external DLL
  you plan to use and also this only apply when using a DLL at a run-time
  and not at linking time.

  Anyhow, we provide here a Clipper sample for those who may need
  working this way:

     #include "FiveWin.ch"

     //--------------------------------------------------------------------//

     function Main()

       local nValue := 10

       ChangeNum( @nValue )

       MsgInfo( nValue )         // nValue has been modified to 40 !!!
                                 // from inside DLL.dll
     return nil

     //--------------------------------------------------------------------//

     DLL FUNCTION ChangeNum( @nValue AS PTR ) AS VOID PASCAL LIB Dll.dll

     //--------------------------------------------------------------------//


Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson