+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2008
    Location
    PA
    Posts
    1,164
    Points
    2,092,804.25
    Rep Power
    209

    Default Simple GUI Window [Java]

    Shows a simple Gui Window.

    http://fluidcoding.com/javaSimpleGuiWindow.php
    Heres Source:
    Code:
    /**
     *	Application: Simple Gui Window
     *	Author: Brian SonniE
     *	18/10/09
     *     www.fluidcoding.com
     */
     
    import javax.swing.*;
    
    public class SimpleGui extends JFrame{
    	
    	public SimpleGui()
    	{
    		// Set the title(Text on top)
    		setTitle("Simple Gui Window");
    		// Set The size (Width, Height) of the window.
    		setSize(400,200);
    		// Allow the program to close when the Exit Button is clicked.
    		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    		// Make the Gui Visible.
    		setVisible(true);
    	}
        
        public static void main(String[] args) {
    	// Create an instance of the SimpleGui Class.
        	SimpleGui Window = new SimpleGui();
        }
    }


    Get Vip: »Here«
    Donate: »Here«
    >>List of Compilers<<
    >>SFDM Name Generator<<
    [Owner Of FluidCoding]

  2. #2
    Join Date
    May 2009
    Location
    In a place.
    Posts
    596
    Points
    969,640.51
    Rep Power
    187

    Default

    cool, but theres nothing in it :O
    Last edited by demon450; 11-01-2009 at 08:43 PM.

    Check out my psp cheat device DarkFrost!
    Check out my new game Robot Universe!

+ Reply to Thread

Posting Permissions

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