Re: [ql-users] Enhanced Pop

2005-12-27 Thread Claude Mourier 00
: Re: [ql-users] Enhanced Pop gwicks schreef: Even better news. We have another article from Per coming up in issue 4 on using digital sound in your programs. Have already added 'hints' in some of my programs thanks to Per's article. Please let me know of there are other topics on some

Re: [ql-users] Enhanced Pop

2005-12-27 Thread George Gwilt
|Still hoping someone will write a routine to print/display |large |and very small numeric values in a readable way; I can read |'9,876,543,210.00' but not 9.87653954E9 :( The FPU on a Q40 can produce numbers up to about 24 significant digits in BCD format. I used that to print FP numbers of

Re: [ql-users] Enhanced Pop

2005-12-27 Thread Derek Stewart
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la part de François Van Emelen Envoyé : lundi 26 décembre 2005 21:58 À : [EMAIL PROTECTED] Objet : Re: [ql-users] Enhanced Pop gwicks schreef: Even better news. We have another article from Per coming up in issue 4 on using digital sound

Re: [ql-users] Enhanced Pop

2005-12-27 Thread François Van Emelen
Claude Mourier 00 schreef: As far as I remeber, FDEC$() and IDEC$() can do that (up to nine digits, the limit of internal coding on QDOS and SMSQ) SNIP Yes, I know, but that's the problem. consider the following: euro=1599.99 rem euros have to be displayed officially with 2 decimals rem

Re: [ql-users] Enhanced Pop

2005-12-27 Thread Claude Mourier 00
Try this instead : 130 euro = '16' 140 PRINT IDEC$(euro,11,2) And calculation is more accurate to. -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la part de François Van Emelen Envoyé : mardi 27 décembre 2005 13:31 À : [EMAIL PROTECTED] Objet : Re: [ql-users

Re: [ql-users] Enhanced Pop

2005-12-27 Thread François Van Emelen
Claude Mourier 00 schreef: Try this instead : 130 euro = '16' 140 PRINT IDEC$(euro,11,2) And calculation is more accurate to. SNIP Thanks, François Van Emelen ___ QL-Users Mailing List http://www.q-v-d.demon.co.uk/smsqe.htm

Re: [ql-users] Enhanced Pop

2005-12-26 Thread Dilwyn Jones
over the icon for a little while and the 'help' bubble (or 'hint') magically appears to tell you in *words* what that icon does. -- Dilwyn Jones - Original Message - From: P Witte [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, December 25, 2005 10:04 AM Subject: [ql-users

Re: [ql-users] Enhanced Pop

2005-12-26 Thread gwicks
- Original Message - From: Dilwyn Jones [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 26, 2005 11:15 AM Subject: Re: [ql-users] Enhanced Pop The Hinting article was excellent. Thank you very much for that. I hope to use hinting in my programs next year, now that I know how

Re: [ql-users] Enhanced Pop

2005-12-26 Thread François Van Emelen
gwicks schreef: Even better news. We have another article from Per coming up in issue 4 on using digital sound in your programs. Have already added 'hints' in some of my programs thanks to Per's article. Please let me know of there are other topics on some of the newer programming

Re: [ql-users] Enhanced Pop

2005-12-26 Thread P Witte
François Van Emelen writes: Still hoping someone will write a routine to print/display large and very small numeric values in a readable way; I can read '9,876,543,210.00' but not 9.87653954E9 :( Whats wrong with IDEC$, CDEC$ etc or even PRINT_USING? Per