[Ql-Users] Printing numbers in non exponent form

2012-03-05 Thread Michael Bulford
Some weeks ago someone enquired as to how to print numbers in non exponent form.  I believe it was George Gwilt who suggested using CDEC$.  Here is a function that I use ...   750 DEFine FuNction comma$(num) 760 LOCal t, fra 770  IF num 0 : RETurn - comma$(ABS(num)) 780  IF num 1000 : RETurn

Re: [Ql-Users] Printing numbers in non exponent form

2012-03-05 Thread Malcolm Lear
It was I who required a way to do this. Thanks for this. Very well timed since I now need to print unsigned 32 bit integers and unfortunately none of the DEC$ functions can do this. Hopefully a few changes to this will provide a solution. On 05/03/2012 09:59, Michael Bulford wrote: Some

Re: [Ql-Users] Printing numbers in non exponent form

2012-03-05 Thread Michael Bulford
- Original Message - From: Malcolm Lear malc...@essex.ac.uk To: ql-us...@q-v-d.com Cc: Sent: Monday, 5 March 2012, 11:28 Subject: Re: [Ql-Users] Printing numbers in non exponent form It was I who required a way to do this. Thanks for this. Very well timed since I now need to print