• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Embedding JApplet vs Applet

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey Ranchers,

I am fairly new at creating JApplets and I am having a problem embedding my JApplet into a web page.

For testing, I just have a plain JApplet created from netbeans form builder that displays a textbox and a button.

When I try to embed the class file into a web page it doesn't show up..

Then I tried to embed a simple Applet without any user interface, just text, and it worked.

Is there a different way to imbed an applet over JApplet?

Code From Netbeans That Will Not Show up in my Web page



Code that works when embeded into a web page


HTML Page



Any Suggestions..?
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try adding width and height attributes to the APPLET tag.
 
Joe Deluca
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ya I had that originally but there was still a problem. It's strange to me seeing that the code works fine with Netbeans applet viewer.
 
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
Strange. After adding those attributes appletviewer ran it just fine.
 
reply
    Bookmark Topic Watch Topic
  • New Topic