Page 1 of 1

checkres.txt

PostPosted: Thu Aug 31, 2023 9:08 pm
by D.Fernandez
Hola amigos, revisé todo el programa y creo que los Brush los eliminé a todos.

Pero el checkres.txt me sigue saliendo esto
31/08/2023 18:01:13: C:\Fuentes\Alfainmo\alfainmo.Exe -- BRUSH,286265516,TDIALOG:SETCOLOR(2900)->TDIALOG:NEW(219)->MSGRUN(38)->MSGWAIT(64)->MAIN(0)

31/08/2023 18:01:13: C:\Fuentes\Alfainmo\alfainmo.Exe -- ====================================================================================================


Alguna idea?

Saludos y Gracias
Ruben Fernandez

Re: checkres.txt

PostPosted: Fri Sep 01, 2023 7:02 am
by Antonio Linares
Estimado Dario,

Con que parámetros estás llamando a MsgWait() desde tu PRG ?

Re: checkres.txt

PostPosted: Fri Sep 01, 2023 6:14 pm
by D.Fernandez
Antonio,gracias por contestar.
lo uso así
Msgwait("Esperando finalización del proceso", "Aguarde", 0.5)

Gracias y saludos

Dario Fernandez

Re: checkres.txt

PostPosted: Fri Sep 01, 2023 7:27 pm
by Antonio Linares
Estimado Dario,

Estás usando la versión más reciente de FWH ?

En un simple ejemplo aqui no sucede eso:
Code: Select all  Expand view
DEFINE WINDOW oWnd
   oWnd:bRClicked := { || MsgWait( "test", "msg", 0.5 ) }
   ACTIVATE WINDOW oWnd CENTERED

or
Code: Select all  Expand view
local oWnd

MsgWait( "test", "msg", 0.5 )
/*
   DEFINE WINDOW oWnd
   oWnd:bRClicked := { || MsgWait( "test", "msg", 0.5 ) }
   ACTIVATE WINDOW oWnd CENTERED
*/

Re: checkres.txt

PostPosted: Fri Sep 01, 2023 8:52 pm
by D.Fernandez
No Antonio, uso la 22.12.

Veré como lo soluciono.

Saludos
Gracias.
Dario Fernandez