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.4 http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 FiveWin 1.4
===========

 * New: PullDown Menu from resources !!! And also, MenuItems bitmaps
   from resources.


 * Bug: cCtrl2Chr() admits now any length (always less than 64Ks). This
   was detected when doing MemoEdits from source code with char variables
   bigger than 200 characters:

               @ nRow, nCol GET cText DIALOG oDlg MULTILINE


 * Bug: We detect when compiling with /b and avoid errors. We are working on
   the debugger for Windows.


 * WndCenter() now accepts two parameteres:

        1. The hWnd of the Window to be centered.
        2. The hWnd of the Parent Window. GetDesktopWindow By default.

   A new method added to TWindow:  Center( oWnd )


 * Clause ON CHANGE / ON CLICK added to RadioButtons!


 * SET RESOURCES now admits as many DLLs as we need. They automatically
   get freed when application ends. We may select an active RESOURCES DLL
   doing SET RESOURCES TO ...  -previously opened DLL-.


 * New clause for Scrollbars: ON THUMBPOS YourAction( nPos )

     This event is generated when the user moves the Scrollbar Thumb
     and places it into a new position.

     We automatically supply nPos parameter wich is the ScrollBar
     Bar in Range new nPosition. It is responsability of you to let
     the scrollbar updates its thumb:

     REDEFINE SCROLLBAR oScrollBar ...
       ...

     ON THUMBPOS ( DbSkip( nPos - RecNo() ),;     // To move through DBF
                   oScrollBar:SetPos( nPos ) )    // We let the ScrollBar
                                                  // updates its pos

     If you don't clearly understand what means nPos, try this:

     ON THUMBPOS MsgInfo( Str( nPos ) )


 * New and incredible powerfull print methods!!! :

   :Print( oPrint, nRow, nCol, nScale )     // Print any Window on printer oPrn

   :HardCopy( nScale )    // Makes a hardcopy of any Window, Dialog, Control,
                          // Bitmap, etc... to printer

   They admit a nScale factor! to set the desire size we want!

   -try FwBorl.prg and press Print button on Clients Dialog Box! Really hot!


 * New Clause ON CLICK / ON CHANGE for Browses.


 * New Clauses ON [ LEFT ] CLICK and ON RIGHT CLICK for Bitmaps!

   Three parameters are automatically supplied: nRow, nCol, nKeyFlags when
   executing the action you provide for those events.

           ON CLICK MsgInfo( Str( nRow ) + ";" + Str( nCol ) + ";" + ;
                             Str( nKeyFlags ) )




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