hi,
for Debug i use
and Function
but when call onDummy() under FiveWin i got a
and nothing is redirect to _LOGIT2.TXT
so how under FiveWin
for Debug i use
 SET ALTER TO "_LOGIT2.TXT"
  onDummy("Hello World")
  SET ALTER TOand Function
FUNCTION onDummy()
LOCAL iMax  := PCOUNT()
LOCAL i
LOCAL cText  := ""
LOCAL xValue
* Â IF lDebug = .T.
   FOR i := 1 TO iMax - 1
     cText += Var2Char( PValue( i ) ) + CHR( 9 )
   NEXT
   cText += Var2Char( PValue( iMax ) )
   SET CONSOLE OFF
   SET ALTER ON
   ? cText
   SET ALTER OFF
   SET CONSOLE ON
* Â ENDIF
RETURN NILbut when call onDummy() under FiveWin i got a
Messagebox(cText, "Alert")and nothing is redirect to _LOGIT2.TXT
so how under FiveWin
greeting,
Jimmy
Jimmy