Re: [Gambas-user] How to control the PRINT output in console application

2009-05-17 Thread KhurramM
Well Sir! I used the following: PRINT Format$(TimeVal, -00.00), Format$(height, -0.00), Format$(velocity, -.00) Other options did not got me the result the way I wanted the allignment. C and C++ give us the option to control the position of the cursor before printing. Is there no option

Re: [Gambas-user] How to control the PRINT output in console application

2009-05-16 Thread Sergio A. Hernandez
You can try something like this PRINT Format$(TimeVal, -0.00), Format$(height, -0,000.00), Format$(velocity, -0.00) by doing this you force to insert 0 to make the numbers of the same size, but I think is kind of awkward to see 0220.00 instead of 220.00 If you want to have a nice aligned text