Forum: Visual Basic 4 / 5 / 6 May 27th, 2009 |
| Replies: 1 Views: 310 G'Day.
If I use:
aTemp=Array(Array(0,1),Array(2,3))
I can reference the elements as:
aTemp(0)(0) etc.
How can I create an assignment statement so that I can address the array elements as:... |
Forum: Visual Basic 4 / 5 / 6 May 27th, 2009 |
| Replies: 4 Views: 1,533 This is really a job for Scientific Notation
As you point out Format(a,"0.0000") or Format(a,"0.####")
means that you lose digits you want to keep.
If you want, you can use:... |