2
votes
2answers
31 views

Scroll bar not visible in JPanel

I have created a GUI in Java which looks as shown below - 'panel_mid' is the white panel in the middle. I have added it to a scrollpane called 'panel_mid_scrollpane'. Apart from 'panel_mid' there ...
0
votes
1answer
27 views

Scrollbars in JScrollPane don't refresh

I have a JPanel in a JScrollPane. When JPanel changes (in my case, I draw an image inside), the scroll bars are not refreshing accordingly. I need to move them sligthly or resize the whole frame and ...
1
vote
1answer
43 views

JScrollPane containing a JPanel won't scroll

I have a JScrollPane which contains a JPanel which contains a collection of JPanels. The collection size can be changed which is why I have it in a JScrollPane. For some reason, no matter what I do, ...
3
votes
1answer
36 views

My Swing GUI does not update. Why?

So, I am making a GUI in which the user has the ability to add or remove panels. To simulate that, I made a TimerTask which takes the name of the target JPanel and the parent which contains the ...
0
votes
1answer
29 views

How to immediately show scroll bar in the JScrollPane

I added JScrollPane to my JPanel but I wanted to make scroll bar visible at the start of the program not only when the text is going out of the screen is that possible? jpMiddle = new JPanel(); ...
-4
votes
1answer
49 views

scroll JPanel when there is only background image

I have Swing frame. and JPanel on the frame. I have only background image on Jpanel. everything works well. but when background image is too large, I don't manage to scroll it. import ...
0
votes
1answer
43 views

java - register parent JPanel to MouseEvent

Consider I have the following code: public LSUIEditingPanel(LSView view) { super(); parent = view; controller = view.getController(); LayoutManager overlay = new ...
-3
votes
3answers
72 views

Prevent scrollbars disappearing when exiting component inside the JScrollPane

I made a JPanel that contains a JScrollPane that surrounds a JTextArea. I want to hide the scrollbars when the mouse exits the JScrollPane. If I set the MouseListener on the JScrollPane, then nothing ...
-1
votes
2answers
44 views

Java JPanel & JScrollPane

I working on a application that manage image's filters etc. I want to have scroll bars when the image is to big to be display. I put my customize panel that extend JPanel in a JScrollPane and I add ...
0
votes
1answer
36 views

Zooming in and out a panel using jscrollbar in java

Input :- ArrayList of point2d of a geometrical shape and transformin it as: private void SetScale1(Graphics2D gr, int gr_width , int gr_height, double left_x , double right_x , double top_y , double ...
0
votes
1answer
101 views

JScrollPane inside JPanel inside a JTabbedPane is not scrolling

I have this JPanel called CatalogPane, which is of size 800 by 600, which is inside a JTabbedPane inside a JFrame called BookFrame. So inside the CatalogPane, I created a JPanel called bookDisplay ...
0
votes
1answer
70 views

JTextArea Doesn't Show Up on JPanel inside JTabbedPane

I have a JTextArea that sits inside a JScrollPane which in turn sits inside a JPanel and that in turn sits inside a Tab of a JTabbedPane. I know that text gets added to my JTextArea, but when I move ...
0
votes
1answer
48 views

JPanel for GUI Application

So im teaching myself Java and ran into a bit of a stall. For one of the exercises, here is the instructions which I can't get my head around. Any help with explanation would be appreciated. Here is ...
0
votes
0answers
29 views

Flickering JPanel with JScrollPane when JDialog exist

I have a gallery application is made of Java Swing. I display each image using a JLabel. I use a JDialog to display a preview of the selected image. But, when there are a lot of pictures, and I try ...
0
votes
1answer
42 views

Can't see all the text in a java frame

I have a problem I can't fix. I am really new in programming. The main frame (glavnoOkno) opens normal. When the button on the main frame is clicked new frame opens. And you can't see all the text or ...
-1
votes
2answers
77 views

Scroll a JScrollBar in WindowBuilder Pro

I'm building a JDialog with WindowBuilder Pro for Eclipse and I have put a JPanel in that's surrounded by a JScrollPane which does allow me to scroll through the JPanel. But now What I want to do is ...
0
votes
3answers
78 views

Why doesn't my JScrollPane shows my JPanel?

I have a JPanel and I want it to be able to be scrolled, so I am adding it to a JScrollPane, but my JScrollPane doesn't show my Panel completely. just a very small corner of it is shown and it ...
0
votes
0answers
29 views

Drawing on top of IcePDF

I'm using icepdf to view a PDF document inside a JPanel, but I also need to be able to select an area (rectangle) from the document. I made a class JPanel2 that overrides the paint method. I tried ...
-1
votes
1answer
101 views

Java Swing : Make a Scrollable list of JPanel

so i'm making an interface using NetBeans, and here's what I want to do : I've created a JPanel class, wich shows some informations on objects (labels, texFields and buttons). I want to add several ...
1
vote
1answer
55 views

Setting the Box's size

This may seem like a stupid question, but I would like to change the size of a 'box' in my jFrame. I will include the code and a picture. Here is the JTableResultSet class: import java.sql.*; ...
1
vote
2answers
130 views

Dynamically adding JPanels to a JScrollPane

I have a GUI that looks as follow: When I push on the button addComponent there are new JPanels added to the scrollPane(1), the JPanels are added but the scrollpane is not scrolling, what happens is ...
0
votes
1answer
117 views

Dynamically changing content visibility in JPanel inside JScrollpane

I have a JPanel inside JScrollPane. Inside the JPanel are numerous JButtons. However, these JButtons are set to NOT VISIBLE (jbutton.setVisible(false)) when the JPanel and JScrollPanel are ...
0
votes
1answer
77 views

Second row of gridbaglayout scrolling out of container

I am trying to achieve a layout similar to that of a carousel. It needs to have images added horizontally with a checkbox field in the second row. I have a panel within a jscrollpane and individual ...
0
votes
2answers
40 views

Java error declaring serialVersionUID inside JPanel

I'm getting this error that's really frustrating me from this bit of script... JPanel menu = new JPanel() { private static final long serialVersionUID = 1L; JTextArea ...
0
votes
0answers
42 views

how to call an instance of another JPanel in a JScrollPane

i have a jscrollpane inserted in the CENTER of borderlayout of JFrame i have a JPANEL named "UI" already inserted into jscrollpane i want to insert a new JPanel name "OUTPUTPAGE1" into the ...
5
votes
2answers
209 views

JPanel with grid painted on it, causing high CPU usage when scrolled

I have JSrollPane with a JPanel as the ViewPort component. On this JPanel I use paintComponent to draw a grid, of 64x64px squares. The JPanel is quite large, 28'672px by 14'336px, still the grid is ...
2
votes
2answers
164 views

How to reset a JTable

I have a question with respect to JScrollPane and a JTable. I have added a JTable to a JScrollPane, and added the JScrollPane to the JPanel. When I click on 'show' button, the JTable will be filled ...
1
vote
1answer
137 views

JTextArea width stretches with input even when using setLineWrap(true) & setWrapStyleWord(true)

When the frame appears the JTextArea stetches horizontally until it reaches the frame width size and on resize of the frame the JTextArea will stretch again to match the width of the frame. If input ...
0
votes
1answer
84 views

Java: Freezing components on a JFrame

Long time lurker, second time poster (it's got that desperate) I have a frame that needs to display twelve components next to each other (as if each component is its own column). The first component ...
0
votes
2answers
62 views

can not add panel to scrollPane, application has no change

I add panel4 to scrollPane, but my application wasn't change. This is my code: public class Bill extends JPanel { //some Jlabels, JComboBox...... public Bill(){ JPanel panel1 = ...
2
votes
0answers
98 views

Java printing full scrollpane not only the visible part

I have a class to print a component at a time. The things I want to print I, I group in JPanel. I therefore have a JPanel (inside a jframe to display it on the screen) with 4 JScrollPanes (syncronized ...
0
votes
2answers
118 views

JPanel of larger size than the Scrollpane

I have implemented a dialog in which I add a number of checkboxes in a JPanel that also has a scroll bar. The number of check boxes isn't fixed for each run of my program but I know it before I create ...
4
votes
2answers
278 views

Convert a JPanel to an image in a JScrollPane

I want to convert an JPanel to an image. I used the following method: public BufferedImage createImage(){ int w = getWidth(); int h = getHeight(); BufferedImage bi = new BufferedImage(w, ...
0
votes
1answer
159 views

Java working with jpanel and jscrollpane while drawing lines

I developed a software solution to connect Java components visually and it works fine. My only problem now is that my dashboard is surrounded by a jscrollpane and thats good. But if i get out of the ...
0
votes
2answers
81 views

JTable and JScrollPane issue

table.setPreferredScrollableViewportSize(table.getPreferredSize()); JScrollPane scrollPane = new JScrollPane(table); panel.add(scrollPane); The scrollPane is not visible. If I add the ...
0
votes
1answer
114 views

Java Swing: Error when dynamically adding JScrollpane to JPanel

Update: If I move the code to be within the mouseclick event (i.e. instead of calling initMarksScreen() I just put the code directly in) it works as expected. So my problem is calling the code in its ...
1
vote
3answers
76 views

Scrolls not appears

I want add JScrolpane to JPanel, but that not appears. In JLabel works fine and its very easy. I am using JPanel beacuse I'll add some image proccessing stuff to my program. There is my code: public ...
0
votes
1answer
77 views

Updating JPanel's within a JScrollPane not working

I created a JScrollPane and want to display a different JPanel within that JScrollPane depending on input I get from the user. For some reason, my JScrollPane remains blank and never paints what is ...
2
votes
1answer
160 views

Java GUI - JTextArea expanding but not contracting

MAIN PROBLEM: In a JScrollPane with JPanel which contains a JTextArea, text wraps up if GUI is expanded but text does not wrap back when GUI is contracted. See example below Okay I am building the ...
0
votes
0answers
42 views

JScrollPane works with Buttons not with Panel

I created a Window with two Panels. A small one on the bottom for navigation buttons and a bigger one for the content on the top. Because the content can grow I made the top panel scrollable with a ...
1
vote
1answer
114 views

Java JScrollPane Not Working as Expected

I have a JScrollPane with a JPanel inside of it. The JPanel is "zoomed" using the following code in the paintComponent method: g2d.translate(this.getWidth()/2, this.getHeight()/2); g2d.scale(scaleX, ...
0
votes
2answers
314 views

JScrollPane In JFrame with two panels

I want to add a scroll bar to my JTextArea but it just won't show up. I have read a lot of stuff on forums but all in vain. Any suggestions are highly appreciated. Thanks in advance. Below is my ...
1
vote
1answer
111 views

I can't get my JTable to show anything

I cant get my gui to show the Jtable, why i dont know and i dont get any error and when i print something to the screen i get 9 colum. so i get data. but what i'm doing wrong i have no idea about ...
-1
votes
2answers
719 views

JScrollPane does not update scrollbar

I am trying to create a JScrollPane that contains a JPanel that will be increasing and decreasing in height. When it becomes larger than the size of the JScrollPane, it should create a vertical scroll ...
-1
votes
2answers
130 views

How does one add a JScrollPane to a JPanel

I have been searching around for an easy way to implement a JScrollPlane. I am trying to add it to a JPanel, and it will contain a dynamic number of JPanels (which will be filled with other stuff). ...
0
votes
1answer
57 views

How to get JPanels to vertically align?

This is my first time really using graphics with Java. I have a problem where I'm trying to populate a JScrollPane with an undefined number of panels (The following code is just a test; I know it's ...
0
votes
2answers
381 views

How to dynamically add jPanels to a JScrollPane that has been added to the JFrame using NetBeans GUI creator?

This may be a silly question, and I'd rather not use the NetBeans inbuilt GUI editor, but I've been asked to. The problem I'm having is I'm attempting to add a JPanel (itself containing a few ...
1
vote
2answers
179 views

java huge BufferedImage in JScrollPane

I need to fit a huge image (BufferedImage to access colors etc) into a JScrollPane derived class. Nothing very hard until there. The image is a JPG scan of an A3 sample of material, its size is ...
2
votes
2answers
182 views

MouseEvent lost in JScrollPane

This is the code I am using to show the issue which I am facing in another project. I am not getting any line like this if I use JScrollPane as a wrapper for panel2. Why? I want to click on ...
1
vote
1answer
82 views

JScrollPane is not changing value to ListEvents

I have write a program which is suppose the set the application property. I am using JSplit Pane with JScrollPane. Program is loading fine but it is not changing the value of the right panel in ...

1 2 3