Página 1 de 1

Not Able to Print Big Number

Publicado: Mié May 13, 2015 8:21 am
por Milan Mehta
Dear Sir,

I am trying to Print a number 2920687188 it prints -1374280108. I am using default %2.2f display format.
Can you suggest me proper display format so that it prints properly.

TIA
Milan.

Re: Not Able to Print Big Number

Publicado: Mié May 13, 2015 6:35 pm
por ignacio
Milan Mehta escribió:Dear Sir,

I am trying to Print a number 2,920,687,188 it prints -1374280108. I am using default %2.2f display format.
Can you suggest me proper display format so that it prints properly.

TIA
Milan.
Hello,

It is a numeric type problem. Integer number (without decimal point) are always treated as long. That number exceeds its maximum value which is 2,147,483,647. We are working on the fix. In the mean time I recommend to convert it into string.

Regards

Re: Not Able to Print Big Number

Publicado: Mié May 13, 2015 6:45 pm
por ignacio
Problem fixed. It will available on next Xailer release (next week)

Regards,

Re: Not Able to Print Big Number

Publicado: Lun May 18, 2015 9:26 am
por Milan Mehta
Thanks Ignacio. We are eagerly awaiting the new release.

Milan.