CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2000
    Posts
    1

    Running Applet from Java Application

    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.


  2. #2
    Join Date
    Mar 2000
    Location
    Dublin, Ireland
    Posts
    124

    Re: Running Applet from Java Application

    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 writeublic 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]


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured