This worked in formatting the 0 value to display 0.00: (thanx guys)
Dim Price as String = ""
Price = NumberFormat2(cr.GetDouble("ItemPrice"),1,2,2,False)
The above I'm now using.
This did not format the 0 value to a display of 0.00:
Dim Price as String = ""
Price = NumberFormat(cr.GetDouble("ItemPrice"),1,2)
The above function arguments are misleading as I'd expect the display format to be a minimum of 1 placing in the integer position (in this case would be a 0) and a minimum of 2 placings in the decimal positions - 00
Is this a bug? Seems to me it may be, or very misleading/confusing.
If it worked, I wouldn't be submitting to the forum for answers. I think it needs to be looked at by the products developers.
Thanx,
Mark S.