13 Unanswered Topics

Remove Filter
Member Avatar for
Member Avatar for Akshay7

Basically i'm looking for tutorials on how to create your own pert char in java (applet) to show dependencies? Any tutorials on that please?

0
99
Member Avatar for mcoliver88

Hi I am creating a java applet for an assignment, but if hit a snag. I have had to create a sales table for different sales people. I have made it that people can click "sales person 1" and it will display his sales. The issue is when you click …

0
109
Member Avatar for Zatara7

So this is going to be the last project for my java class. Any input is appreciated and I'm generally posting it here because someone else might benefit from it. It is not done yet but when it is I'm going to post the full code. I made a video …

0
384
Member Avatar for aspundir

I want all three applets conaitning this site http://www.planetarypositions.com/ can anybody help me?

0
92
Member Avatar for Bahirji Naik

This may be old error but I stuck here.. I created java database applet for oracle database. I am going to put this applet in Local Network. My applet works fine in Eclipse and Netbeans but when I run through 'appletviewer' it showing an error : [ICODE]Error e java.security.AccessControlException: access …

0
71
Member Avatar for ea25

Hi all, my first post here :) I'm new to java so please bare with me. I'm writing a very simple applet to get my skills going in Java. Practically my applet fetches an image from an external URL (using java.net.URL) and paints it in my applet. So far so …

0
85
Member Avatar for kingofdrew

I want in java applet if a user clicks on a rectangle another one is draw. [CODE]import javax.swing.; import java.awt.; import java.awt.event.*; public class stuff extends JApplet { public void paint(Graphics g) { super.paint(g); g.drawRect(40, 40, 200, 200); if(g.isSelected()) { g.drawRect(20, 20, 50, 50); } } }[/CODE]

0
96
Member Avatar for Progr4mmer

i need help drawing an image in an applet for some reason it doesn't show up but there are no errors [CODE]package Game; import java.applet.*; import java.awt.event.*; import java.awt.*; import javax.swing.ImageIcon; public class AppletOne extends Applet implements Runnable, KeyListener{ int x_pos = 10; int y_pos = 100; int x_speed = …

0
89
Member Avatar for Alex86fire

Hey guys, I have a problem I can't seem to figure out properly: I have to implement a mirror in a java applet. For the mirror I used a second window. what I don't know: -how to rotate the second window -how to make it mirror what's in front of …

0
127
Member Avatar for josiefrut

Hi guys! I need to have a PDF viewer that wont allow users to save, copy, print, email& share online.. plainly just for viewing. any suggestion is appreciated. Thanks.

0
75
Member Avatar for pateldeep454

I want to put everything into one applet. How do I do that? Please HELP :( [CODE] import java.applet.Applet; import java.awt.*; import javax.swing.JOptionPane; public class HelloWorld extends Applet { public void paint (Graphics g) { g.drawString ("Name" , 50, 25); String first; first = JOptionPane.showInputDialog (null, "Enter first number: "); …

0
51
Member Avatar for JasonDoyle

Is it possible to remove the animated gif from view once it had played once, i am using[CODE] tr = new MediaTracker(this); img = getImage(getCodeBase(),"test.gif"); tr.addImage(img,0); g.drawImage(img, 0, 0, this);[/CODE] to display it but it just keeps playing over and over again. Is there a way to remove it after …

0
79
Member Avatar for sree22_happy

Hi friends, I am facing a problem with Signed jar file. I have two jar files.One contains applet class and other jar file contains supportive classes used by that applet.I was able to self sign the applet jar file let name it as "ScreenApplet.jar" using jarsigner tool. The supportive jar …

0
116

The End.