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 6708909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:49:01+00:00 2026-05-26T07:49:01+00:00

For some reason the Jlist will not show up on my applet. It shows

  • 0

For some reason the Jlist will not show up on my applet.

It shows up just right of the slider but only when you click on the individual elements.

I tried this.validate() and this.repaint() with no luck. Can anyone help me out?

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JApplet;
import java.awt.Graphics;
import javax.swing.JList;
import javax.swing.JRadioButton;
import javax.swing.JSlider;
import javax.swing.ListSelectionModel;

public class HeatingHome extends JApplet implements ActionListener
{
        // declare variables here

    JRadioButton switchIt = new JRadioButton();
    JSlider tempControl = new JSlider(JSlider.VERTICAL, 10, 15, 11);


    String[] theRooms = {"Porch", "Kitchen", "Living Room", "Hall", "Bedroom 1", "Bathroom", "Bedroom 2"};   
    JList roomsList = new JList(theRooms);


    public void init()
    {

        setSize(1000,600);


    }

    public void paint(Graphics g)
    {
        super.paint(g);


        roomsList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        roomsList.setBounds(700, 200, 150, 150);
        roomsList.setVisible(true);
        roomsList.setEnabled(true);
        add(roomsList);


               //tempControl.addChangeListener(e);
       tempControl.setMajorTickSpacing(10);
       tempControl.setPaintLabels(true);
       tempControl.setMinorTickSpacing(1);
       tempControl.setPaintTicks(true);
       tempControl.setBounds(600, 200, 100, 200);
       tempControl.setEnabled(true);
       add(tempControl);



    }



    @Override
    public void actionPerformed(ActionEvent e) {
        throw new UnsupportedOperationException("Not supported yet.");
    }
 }
  • 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-05-26T07:49:01+00:00Added an answer on May 26, 2026 at 7:49 am

    Whereas the list & slider are added to the applet every time it is painted, the radiobutton is never added.

    This might get you started:

    Heating Home

    // <applet code='HeatingHome' width=400 height=200></applet>
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    
    public class HeatingHome extends JApplet
    {
        // declare variables here
        JRadioButton switchIt = new JRadioButton();
        JSlider tempControl = new JSlider(JSlider.VERTICAL, 10, 15, 11);
    
        String[] theRooms = {"Porch", "Kitchen", "Living Room", "Hall", "Bedroom 1", "Bathroom", "Bedroom 2"};
        JList roomsList = new JList(theRooms);
    
        public void init()
        {
            // applet size is set by the HTML
            //setSize(1000,600);
            setLayout(new BorderLayout());
    
            JPanel gui = new JPanel(new BorderLayout(5,5));
            gui.setBackground(Color.ORANGE);
            gui.setBorder(new EmptyBorder(20,20,20,20));
    
            roomsList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
            // Use LAYOUTS!!!
            //roomsList.setBounds(700, 200, 150, 150);
            // Becomes visible when added to something!
            //roomsList.setVisible(true);
            // Enabled by default!
            //roomsList.setEnabled(true);
            gui.add(roomsList, BorderLayout.EAST);
    
            //tempControl.addChangeListener(e);
            tempControl.setMajorTickSpacing(10);
            tempControl.setPaintLabels(true);
            tempControl.setMinorTickSpacing(1);
            tempControl.setPaintTicks(true);
            //tempControl.setBounds(600, 200, 100, 200);
            //tempControl.setEnabled(true);
            //add(tempControl);
            gui.add(tempControl, BorderLayout.WEST);
    
            gui.add(switchIt, BorderLayout.NORTH);
    
            add(gui);
            validate();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, I can not get this dialog to show up on the
For some reason my code works for all the 10 digit numbers but not
For some reason, Section 1 works but Section 2 does not. When run in
For some reason beyond me my html page is not finding my stylesheet. I'm
For some reason, I can't add anything to my JList. The JList is visible
For some reason I am getting the number or rows and not the results
For some reason CodeIgniter is not connecting to my SMTP server, anyone have any
For some reason I thought this should work but its eluding me I have
For some reason this code is not checking the current password with the database
For some reason this function is doing something weird just in Firefox function fadeOUT_sect(id)

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.