Hello Detlef,
thank you.
But the lenght should be 3 like it was with version 8.12, etc.
If you look into the append method in database.prg from the old and the new versions there have been changes.
VERSION 8
METHOD Blank( nRecNo ) INLINE ( ::nArea )->( nRecNo := RecNo(),;
DBGoBottom(), ;
DBSkip( 1 ), ;
::Load(),;
DBGoTo( nRecNo ) )
VERSION 9
METHOD Blank() CLASS TDataBase
if ::lBuffer
AEval( ::aBuffer, { |u,i| ::aBuffer[ i ] := uValBlank( u ) } )
endif
return .f.
//----------------------------------------------------------------------------//
Regards,
Otto