seterrorfilename

Post Reply
User avatar
MarcoBoschi
Posts: 1077
Joined: Thu Nov 17, 2005 11:08 am
Location: Padova - Italy
Contact:

seterrorfilename

Post by MarcoBoschi »

Hi,
If I Compile and run this program with last version of Fivewin
I find error.log in current folder and not c:\marco.log
what's wrong?
Bye


Code: Select all | Expand

#include "fivewin.ch"


FUNCTION MAIN()
LOCAL cDbf := "marco->codice"

SetErrorFileName( "c:\marco.log" )

? &(cDbf)

RETURN NIL
 
Marco Boschi
info@marcoboschi.it
User avatar
Enrico Maria Giordano
Posts: 8777
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Has thanked: 1 time
Been thanked: 8 times
Contact:

Re: seterrorfilename

Post by Enrico Maria Giordano »

Marco,

there are two problems:

1. you have to specify the path separately using SetErrorPath()

2. there is an error in the function SetErrorFileName()

This is the fixed sample:

#include "fivewin.ch"


FUNCTION MAIN()

Code: Select all | Expand


LOCAL cDbf := "marco->codice"

SetErrorPath( "c:\" )
SetErrorFileName( "
marco.log" )

? &(cDbf)

RETURN NIL


function SetErrorFileName( cFileName )
   local cOldFileName
   static cErrorFileName := "
error.log"

   cOldFileName = cErrorFileName

   if PCount() == 1 .and. ValType( cFileName ) == "
C"
      cErrorFileName = cFileName
   endif

return cOldFileName


EMG
User avatar
MarcoBoschi
Posts: 1077
Joined: Thu Nov 17, 2005 11:08 am
Location: Padova - Italy
Contact:

Re: seterrorfilename

Post by MarcoBoschi »

Thank You Enrico
Marco Boschi
info@marcoboschi.it
Post Reply