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
Msginfo Problem
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Fixed. At source\function\msgs.c:
Code: Select all
#include <hbvm.h>
...
case HB_IT_DATE:
{
hb_vmPushSymbol( hb_dynsymSymbol( hb_dynsymFindName( "DTOC" ) ) );
hb_vmPushNil();
hb_vmPush( item );
hb_vmDo( 1 );
}
break;