• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Hi,I need to convert applet code to swing code

 
Ranch Hand
Posts: 518
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I want to change the applet buttons to swing buttons in my code.I put j infront of the buttons .but it is working like this if i move the cursor the button appears and then it disappears.I think i have to change the code entirely to swing due to the applet components i used in my code.I am sending my code.please help me what are all the things i have to change.if possible pls alter my code and send me.



pls help me.

Thanks

[ UD: added CODE tags and removed email address ]
[ October 05, 2007: Message edited by: Ulf Dittmer ]
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to JavaRanch.

On your way in you may have missed that we have a policy on screen names here at JavaRanch. Basically, it must consist of a first name, a space, and a last name, and not be obviously fictitious. Since yours does not conform with it -"ppl" isn't really your last name, is it-, please take a moment to change it, which you can do right here.

The purpose of JavaRanch isn't to write someone's code for them, but rather to help people to learn Java, so that they learn how to do it themselves. So, nobody will be sending you code; I've removed the email from your post, because we like to UseTheForumNotEmail.

Also, please UseCodeTags when posting code of any length.

There are many other tips on how to get the most out of JavaRanch at HowToAskQuestionsOnJavaRanch.

As to your question, Swing works a bit differently from AWT, so just replacing AWT components with Swing components is not sufficient. Instead of using the paint method to do the drawing, you should use paintComponent.

The code is too long to try to understand it fully, but I noticed that you use "==" to perform string comparison. That's not going to work, you need to use the String.equals method.
[ October 05, 2007: Message edited by: Ulf Dittmer ]
 
Ranch Hand
Posts: 4632
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
and get rid of all the commented out lines.

if they're not needed in you're code, they're not needed here.
 
reply
    Bookmark Topic Watch Topic
  • New Topic