• 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

How to add components in applet programme

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Any body can Explain how to add components to appear on browser at first display?
I added components in init() method in applet, but the components are not displayed at first display. However it appears only after actuating the paint() method by minimising or maximising the applet viewer!
can anyone explaine in the forum why it is so ?
Thaning u in advance!
s.a.kugan
 
"The Hood"
Posts: 8521
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you giving the Applet size in the html?
< HTML>< HEAD>< BODY>
< APPLET code=AppletTest.class width=300 height=300>
< /APPLET>< /BODY>< /HTML>
The worlds most simple Applet-


[This message has been edited by Cindy Glass (edited July 19, 2001).]
 
reply
    Bookmark Topic Watch Topic
  • New Topic