DevX Home    Today's Headlines   Articles Archive   Tip Bank   Forums   

+ Reply to Thread
Results 1 to 6 of 6
  1. #1
    Join Date
    Jun 2006
    Posts
    4

    How to make a Notepad in Java

    Guys

    I am interested in making a notepad in Java . Please give me some tips and hints .

  2. #2
    Join Date
    Nov 2004
    Location
    Norway
    Posts
    1,560
    eschew obfuscation

  3. #3
    Join Date
    Mar 2004
    Posts
    635
    Code:
    public class Notepad extends JFrame
    {
        private JTextArea textPanel = new JTextArea();
    
        public Notepad()
        {
             this.getContentPane().setLayout(new BorderLayout());
             this.getContentPane().add(textPanel, BorderLayout.CENTER);
        }
    }
    I'll leave the menus up to you.

  4. #4
    Join Date
    Apr 2006
    Posts
    21
    Let me know when u get it done. I would love to try it. And maybe build on it.

  5. #5
    Join Date
    Feb 2009
    Location
    pakistan
    Posts
    2
    sarkar can you give me whole code of java notepade please it is my project

  6. #6
    Join Date
    Feb 2009
    Location
    pakistan
    Posts
    2
    how to make memory game in java>>>>

    Guys

    I am interested in making a making memory gAME in Java . Please give me some tips and hints

Similar Threads

  1. DevX does seem one sideded
    By Rob Abbe in forum Talk to the Editors
    Replies: 44
    Last Post: 01-13-2003, 02:57 PM
  2. Re: C++ vs Java
    By Michael in forum Java
    Replies: 2
    Last Post: 12-31-2002, 04:55 PM
  3. Make C# like Java and dumbing down Visual Basic
    By Eric Schatzschneider in forum .NET
    Replies: 34
    Last Post: 09-02-2001, 06:33 AM
  4. Replies: 0
    Last Post: 10-19-2000, 12:31 AM
  5. Re: VB vs. Visual Age for Java
    By JJ in forum Enterprise
    Replies: 1
    Last Post: 07-06-2000, 04:50 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
HTML5 Development Center
 
 
FAQ
Latest Articles
Java
.NET
XML
Database
Enterprise
Questions? Contact us.
C++
Web Development
Wireless
Latest Tips
Open Source


Top DevX Stories

Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL


Sponsored Links