Horacio, te crea un fichero con extensión .LOG ( con el nombre del EXE ), y va guardando lo que tu le pongas después del comando FWLOG, y se usa como alternativa a la depuración, aunque yo suelo utilizar también esta otra "modalidad"
Code: Select all
#include "Fivewin.ch"
Static oWnd
function Main()
//StartFWLog( nTop, nLeft, nHeight, nWidth, lDown, lLines, lCouple, cTitle )
StartFWLog( , , 622, 590, .F., .T., , ) //.F.
DEFINE WINDOW oWnd FROM 0, 0 TO 750, 1365 PIXEL ;
TITLE "FWH Test FWINLOG - " + FWVERSION MENU BuildMenu()
ACTIVATE WINDOW oWnd ON INIT Inicial() MAXIMIZED
return nil
//----------------------------------------------------------------------------//
Static Function BuildMenu()
local oMnu
MENU oMnu
MENUITEM "Options"
MENU
MENUITEM "Option - 1" ACTION Uno()
SEPARATOR
MENUITEM "Exit" ACTION oWnd:End()
ENDMENU
MENUITEM "Others"
MENU
MENUITEM "Others - 2" ACTION Dos()
SEPARATOR
MENUITEM "Others - 3" ACTION Tres()
ENDMENU
ENDMENU
Return oMnu
//----------------------------------------------------------------------------//
Function Inicial()
FWINLOG Len( oWnd:oMenu:aMenuItems )
Return nil
//----------------------------------------------------------------------------//
Function Uno()
FWINLOG oWnd
Return nil
//----------------------------------------------------------------------------//
Function Dos()
FWINLOG oWnd:oMenu
Return nil
//----------------------------------------------------------------------------//
Function Tres()
FWINLOG oWnd:nHeight
Return nil
//----------------------------------------------------------------------------//
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.