So the title says it all, Ive got a problem when trying to type out a larg number using the g.drawstring but im just getting an E in my number.
What can i do to prevent this?
Thanks / Code
static double TOC=14214111;
.....
f = new Font("Arial", Font.BOLD, 16);
.....
protected void paintComponent ( Graphics g ) {
super.paintComponent ( g );
g.setFont(f);
g.drawString(""+ TOC, 280, 34);
repaint();
}
....
Basicaly some code, just ask and i will upload the whole code if u need see it.