FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Msginfo Problem
Posts: 50
Joined: Mon Sep 25, 2006 08:38 AM
Msginfo Problem
Posted: Thu Oct 12, 2006 10:41 AM

Hi to all FWH users!!

Test this:
Msginfo(DATE()) .

I've GPF error .

Normally i use dont'use this but today i'm making some test and I've found it.

If you write MSGINFO(dtoc(DATE())) all is ok.

Bye
Giuliano

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Msginfo Problem
Posted: Thu Oct 12, 2006 01:10 PM

I confirm the problem.

EMG

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Msginfo Problem
Posted: Thu Oct 12, 2006 11:39 PM

Giuliano, Enrico,

It works fine with Harbour but GPFs with xHarbour.

We are going to review it, thanks.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Msginfo Problem
Posted: Fri Oct 13, 2006 12:09 AM
Fixed. At source\function\msgs.c:
   #include <hbvm.h>
   ...
      case HB_IT_DATE:
           {
              hb_vmPushSymbol( hb_dynsymSymbol( hb_dynsymFindName( "DTOC" ) ) );	
              hb_vmPushNil();
              hb_vmPush( item );
              hb_vmDo( 1 );  
           }
           break;
regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion