Hi Pripal,

We use:
if( hb_itemType( pInfo->pNewVal ) & HB_IT_NUMERIC )

Now if pInfo->pNewVal is an array, then what it should be like ...
if( hb_itemType( hb_arrayGetCPtr->pNewVal,2 ) & HB_IT_NUMERIC ) // does not

Try:
if( hb_itemType( hb_arrayGetItemPtr( pArray, nIndex ) ) & HB_IT_NUMERIC )

Brgds,
Viktor

_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to