1. List in JScrollPane painting outside the viewport stackoverflow.comI have a list, each item of which has several things in it, including a JProgressBar which can be updating a lot. Each time one of the items updates its ... |
2. JScrollPane usage stackoverflow.comI have a JScrollPane and JPanel inside it(I want to draw on JPanel). Also I have a method that draws lines with parametre of length of the line. I want my ... |
3. JScrollPane-Painting coderanch.com |
4. problem in paint() method when using ScrollPane coderanch.comHi, I am having problem in using paint() method . i have an ScrollPane component, which uses paint method to write contents into it. i am calling the paint method in an different (PaneWriter) class. and i am calling PaneWriter in 2 different instances. it works fine in the first instance, but in the second instance when i call, paint() retains ... |
5. Problem in ScrollPane's paint() method coderanch.comHi, I am trying to write a file in to a ScrollPane, i had given a option that user uses FileDialog to choose. everything is working fine. but the problem is, the user has to drag the scrollpane's scrollbar to display the file first. i dont know why this happens. i found that ,whenever i chose a file from menubar, the ... |
6. ScrollBar problem in painting coderanch.comHi all, I am using a jpanel, which is added to a scroll pane which in turn added to jDialog. In the jpanel i am drawing some 441 squares and some texts. Everything is fine. But the scrolling is extreamly slow. Is there any way to make the scrolling normal. Please help me soon. It is very urgent. Thanking all. |
7. JPanel scroll paint problems coderanch.comI have a JPanel with several objects embedded in it for which I have overwritten paint(). When I scroll the view port, the portions of the objects that used to be outside the view port are painted in the correct positions in the JPanel, but they also are painted in the header. ??? What have I done wrong? Here is the ... |
8. JScrollPane and paint coderanch.com |
9. JScrollPane and paint method problems coderanch.com |
10. paint with JScrollBar java-forums.orgHi, Im new to this forum and i need to use a jscrollbar on an image painted in a frame using paint (Graphics g) method. Here is my code: XML Code: public class Warping extends javax.swing.JFrame { private BufferedImage image; public Warping() { initComponents(); } private void initComponents() { setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); setTitle("IMAGE WARPING"); setBackground(new java.awt.Color(255, 255, 255)); setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR)); jMenuBar1 = new ... |
11. JscrollPane problem when paint() is called forums.oracle.comHello to everyone, I am new in Java and I have this problem: I am drawing on a jPanel which is inside a jScrollPane. I want to give the user the opportunity to zoom in and zoom out in my drawing (it's not an image). In order to do that I resize the jPanel and all the shapes on it respectevily ... |