Click to See Complete Forum and Search --> : Running Applet from Java Application


Kardi
May 11th, 2000, 06:52 AM
1. I want to make applet windows running from Java application, not from HTML, how to do it? Do you have simple example?
2. Do you know where can I get free examples code of how to use API document of Java?
3. Is there any Java reseorces, on line tutorial on how to use only Java Application. I don't want to learn java applet.

dogbear
May 11th, 2000, 08:08 AM
Kardi,

There are TONS and TONS of free software, tutorials, explanations, comments, tips, tricks, cakes, source code, examples, more cakes, and, did I mention, cakes on the internet.
The one place you can go to get started is http://java.sun.com
On the home page you'll see links to downloading the JDK(Java Development Kit).
Download the latest version.
Install it on your computer.
Write a small program to test your installation(just to make sure it's all hunky-dory)
Then you're flying it!

Here's the first program you should write:public class MyFirstDamnProgram
{
public static void main(String[] args)
{
System.out.println("Hello World!");
System.out.println("Hello Shoe!");
System.out.println("Hello Big Bro!");
}
}

Hope this helps you.

Regards,
[b]dogBear[b]