Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8433091
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T06:17:38+00:00 2026-06-10T06:17:38+00:00

I am trying to create a simple GUI that simulates a record store. I

  • 0

I am trying to create a simple GUI that simulates a record store. I am still in the beginning stages.

I am running into trouble when I try to add text to describe what the user is expected to enter in the text field.

In addition, I am also having trouble positioning every textfield on its own line. In other words if there is space for two textfields in one line, then it displays in one line, and I am trying to display every text field on its own line.

This is what I tried so far:

item2 = new JTextField("sample text");

However the code above just adds default text within the text field, which is not what I need :/

I appreciate all the help in advance.

public class MyClass extends JFrame{
        private JTextField item1;
        private JTextField item2;

        public MyClass(){
            super("Matt's World of Music");
            setLayout(new FlowLayout());

            item1 = new JTextField();
            item2 = new JTextField();

            add(item1);
            add(item2);

            thehandler handler = new thehandler();

            item1.addActionListener(handler);
            item2.addActionListener(handler);   

        }

    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T06:17:40+00:00Added an answer on June 10, 2026 at 6:17 am

    For your first problem, you need to use a JLabel to display your text. The constructor is like this:

    JLabel label = new JLabel("Your text here");
    

    Works really well in GUI.

    As for getting things on their own lines, I recommend a GridLayout. Easy to use.

    In your constructor, before adding anything, you do:

    setLayout(new GridLayout(rows,columns,x_spacing,y_spacing));
    

    x_spacing and y_spacing are both integers that determine the space between elements horizontally and vertically.

    Then add like you have done. Fiddle around with it and you’ll get it worked out.

    So your final would look like:

    setLayout(new GridLayout(2,2,10,10));
    add(new JLabel("Text 1"));
    add(text1);
    add(new JLabel("text 2"));
    add(text2);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a simple GUI. I have a menu bar that
I am trying to create a simple GUI form which has only 2 elements
I'm trying to create simple script that subscribes a user to a company calendar.
I am trying to create a simple about page that uses JQuery click to
I'm trying to create a simple web page that resembles the following: I've got
I am trying to create a simple GUI with table containing x and y
I am new to Qt, and I am trying to create a simple GUI
I'm trying to create a simple GUI application (so far) in Qt with C++
I am trying to create this simple GUI where the number of clicks is
I'm trying to create a GUI program, simple LOGIN maintenance. I have 4 gui

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.