Search found 24 matches: cerrorlog

Return to advanced search

Re: Help with HB_REALLOC ERROR 9009

nAvailMem() seems not to be standard. These seems to be ok. cErrorLog += " Dynamic memory consume:" + CRLF cErrorLog += " Actual Value: " + Str( MemUsed() ) + " bytes" + CRLF cErrorLog += " Highest Value: " + Str( ...
by Marc Venken
Wed Mar 20, 2024 8:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help with HB_REALLOC ERROR 9009
Replies: 5
Views: 135

Re: Mostrar version BCC en Error.log

Implementado así para la próxima versión de FWH:

cErrorLog += " C compiler version: " + hb_Compiler() + CRLF

gracias
by Antonio Linares
Sun Dec 25, 2016 7:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mostrar version BCC en Error.log
Replies: 3
Views: 783

Re: Mostrar version BCC en Error.log

hola alert(hb_compiler()) in: FWH\source\function\errsysw.prg search for: FWVERSION cErrorLog += " Compiler version: " + Version() + CRLF cErrorLog += " FiveWin Version: " + FWVERSION + CRLF add cErrorLog += " bcc version: " + hb_compiler() ...
by Sistem
Sat Dec 24, 2016 11:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mostrar version BCC en Error.log
Replies: 3
Views: 783

Re: SET ERRORLOG TO <filename> [ADDITIVE] ...

xhb_ErrorLog( cErrorLog, lErrorLogAppend )
by hmpaquito
Thu Apr 16, 2015 8:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SET ERRORLOG TO <filename> [ADDITIVE] ...
Replies: 9
Views: 1504

Re: Inestabilidad de la Aplicacion

... .. se aborta al ejecutar : ParamCount( n ) y LocalCount( n ) !! Por ahora las comente y ya reporta el error for j = 1 to ParamCount( n ) cErrorLog += " Param " + Str( j, 3 ) + ": " + ; ValType( GetParam( n, j ) ) + ; " " + cGetInfo( GetParam( n, j ) ) + CRLF ...
by russimicro
Wed Aug 27, 2014 4:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inestabilidad de la Aplicacion
Replies: 19
Views: 3704

Re: errsysw FWH1308

... de eliminación => /* */ :) eliminando el código abajo: /* for j = 1 to 8 if ! Empty( ( nTarget := ( Alias( n ) )->( DbRSelect( j ) ) ) ) cErrorLog += Space( 8 ) + Str( j ) + ": " + ; "TO " + ( Alias( n ) )->( DbRelation( j ) ) + ; " INTO " + Alias( nTarget ...
by Sistem
Tue Oct 15, 2013 4:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: errsysw FWH1308
Replies: 12
Views: 1781

Re: eMail cErrorLog

Uuuuuupppppsssss Mi error...

Code: Select all  Expand view
cHtml := cErrorLog
cHtml := STRTRAN(cHtml, CRLF , '<br \>')
by Bayron
Mon Apr 01, 2013 11:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: eMail cErrorLog (SOLUCIONADO)
Replies: 1
Views: 355

eMail cErrorLog (SOLUCIONADO)

Intento modificar ErrSysW.prg, para enviar el archivo de error por eMail en formato HTML pero STRTRAN no detecta el valor de CRLF cHtml := cErrorLogSTRTRAN(cHtml, Chr(13)+Chr(10) , '<br \>') He intentado con CRLF y Chr(13)+Chr(10)... Alguien podria sugerirme otra forma de ...
by Bayron
Mon Apr 01, 2013 10:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: eMail cErrorLog (SOLUCIONADO)
Replies: 1
Views: 355

Re: recompilar fiveh.lib

... pero lamentablemente no hay forma el error de errorsys, que tenía era el realtado en rojo ( mis fuentes de fwh712 vino así) #ifdef __CLIPPER__ cErrorLog += " Windows and MsDos versions: " + ; AllTrim( Str( aVersions[ 1 ] ) ) + "." + ; AllTrim( Str( aVersions[ 2 ] ) ) + ", ...
by surGom
Sun Sep 23, 2012 1:48 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: recompilar fiveh.lib
Replies: 47
Views: 15002

Re: recompilar fiveh.lib

La que esta en rojo #ifdef __CLIPPER__ cErrorLog += " Windows and MsDos versions: " + ; AllTrim( Str( aVersions[ 1 ] ) ) + "." + ; AllTrim( Str( aVersions[ 2 ] ) ) + ", " + ; AllTrim( Str( aVersions[ 3 ] ) ) + "." ...
by surGom
Sat Sep 22, 2012 9:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: recompilar fiveh.lib
Replies: 47
Views: 15002

errorsysw.prg

... <> NIL cErrorFile := M->cUte_dos + "_error.log" ELSE cErrorFile := "error.log" ENDIF MemoWrit( cErrorFile, cErrorLog )
by MarcoBoschi
Fri Oct 15, 2010 8:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: errorsysw.prg
Replies: 1
Views: 440

proposal / request

... errsysw.prg // Generates a file with an Error Log BEGIN SEQUENCE oOldError = ErrorBlock( { || DoBreak() } ) // MemoWrit( "error.log", cErrorLog ) MemoWrit( M->cErrorFile, cErrorLog ) END SEQUENCE ErrorBlock( oOldError ) In a multi user scenario I obtain an error file for every user ...
by MarcoBoschi
Tue Nov 10, 2009 3:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: proposal / request
Replies: 5
Views: 932

Pequeño aporte: ¿Qué hacer con Error.log?

... y en la función static function ErrorDialog( e ) : : BEGIN SEQUENCE oOldError = ErrorBlock( { || DoBreak() } ) MemoWrit( "Error.log", cErrorLog ) //Si la carpeta es read-only no habrá error.log // Agregado IF ValType(bStaticOnError)="B" Eval(bStaticOnError,cErrorLog) ENDIF ...
by César E. Lozada
Fri Nov 06, 2009 5:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pequeño aporte: ¿Qué hacer con Error.log?
Replies: 3
Views: 653

... arbitrarily saving only the the most recent 5k chars from the prior error info, we can just cut out the oldest info equal to the size of the new cErrorlog. This minimizes the loss of useful prior error info. So here it is again (to be inserted just above Memowrit() section)... LOCAL cText := ...
by Roger Seiler
Sat Jun 28, 2008 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Suggested addition to Errsysw.prg
Replies: 12
Views: 2781

Suggested addition to Errsysw.prg

... to my version of Errsysw.prg that I find very helpful. This addition retains info from any prior error.log, adding it to the end of the current cErrorlog, until the error.log file exceeds 50 K in size. If over 50 K, then just the most recent 5k chars of info are retained, and the file builds ...
by Roger Seiler
Sat Jun 28, 2008 3:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Suggested addition to Errsysw.prg
Replies: 12
Views: 2781
Next

Return to advanced search