Re: Converting int to String

2000-10-16 Thread Kari Laipio
> Hi to All! Suppose that I want to show in a label the value of an int > variable, how can I do that? When I try to assign the int as the argument of > the setText method of the Label the compiler complains and argues that they > are not convertible types. What can I do? > Hi! Try: setText("Integ

Re: Converting int to String

2000-10-15 Thread Nathan Meyers
Nicolas, I'd recommend spending some time with a good Java programming book or some of Sun's online tutorials. This list is focused on using Java with Linux, and isn't the best place to find help for beginning programming questions (even if you happen to be doing your beginning programming on a L

Converting int to String

2000-10-15 Thread Nicolas Raitman
Hi to All! Suppose that I want to show in a label the value of an int variable, how can I do that? When I try to assign the int as the argument of the setText method of the Label the compiler complains and argues that they are not convertible types. What can I do? Thanks ---