Forum: Java Oct 6th, 2009 |
| Replies: 5 Views: 253 You should some books on java programming.
For the beginner refer to this location: java looping statements (http://euler.vcsu.edu:7000/13521/)
Let me give you some tips about programming:
... |
Forum: Java Aug 20th, 2009 |
| Replies: 0 Views: 187 Hi,
i successfully created the JAVA
Applet and embedded it in the HTML page.
The applet class is as follows:
import javax.swing.JApplet;
import java.awt.Graphics;
public class HelloWorld... |
Forum: Java Aug 20th, 2009 |
| Replies: 6 Views: 316 The problem was in HTML file while embedding the applet. In the applet tag i had to use both the combination of code and codebase attribute and set it to proper value. I still exactly don't know what... |
Forum: Java Aug 19th, 2009 |
| Replies: 6 Views: 316 Hi harsh
I solved the problem.
Thanks for taking interest in my problem anyway. |
Forum: Java Aug 19th, 2009 |
| Replies: 6 Views: 316 if i do this i get the error message as FileNotFoundException. My class file is in different location than the html file so i used codebase instead of code.
when i debug the HelloWorld.java i can... |
Forum: Java Aug 19th, 2009 |
| Replies: 6 Views: 316 Hi,
I am new to java programming.
I have been creating a simple applet. Which is as follows:
public class HelloWorld extends JApplet
{
public void paint(Graphics g)
{... |