I'm using drawstring to get a item from a list to be displayed, but now i would like it to be displayed as a 4 digit number instead of a single digit.
So instead of it displaying 0
i would like it to display 0.000
. If anyone could help me with this that would be nice.
This is the list type used.
List<string> ListVrd = new List<string>();
The code used to fill the list.
c = drART["MVRD"].ToString();
ListVrd.Add(c);
And the line of code used to print the item.
row = ListVrd[itemsPrinted];
e.Graphics.DrawString(row, DefaultFont, Brushes.Black, distance, currentY);//print item