<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>web development helpdesk &#187; JScrollPane</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/jscrollpane/feed" rel="self" type="application/rss+xml" />
	<link>http://helpdesk.objects.com.au</link>
	<description>objects quality - the visible difference</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:27:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to scroll to a specific row in a JTable</title>
		<link>http://helpdesk.objects.com.au/java/how-to-scroll-to-a-specific-row-in-a-jtable?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-scroll-to-a-specific-row-in-a-jtable</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-scroll-to-a-specific-row-in-a-jtable#comments</comments>
		<pubDate>Fri, 20 Aug 2010 02:23:37 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[JScrollPane]]></category>
		<category><![CDATA[JTable]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1597</guid>
		<description><![CDATA[There&#8217;s a method in JComponent called scrollRectToVisible() which interacts with the parent scroll pane (if one exists) to change its viewport. It takes a Rectangle as an argument that specifies the area you want to be visible in the viewport. So for example to scroll to a given row in a JTable you would use [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-scroll-to-a-specific-row-in-a-jtable/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change the width of scroll bars in a JScrollPane?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-change-the-width-of-scroll-bars-in-a-jscrollpane?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-change-the-width-of-scroll-bars-in-a-jscrollpane</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-change-the-width-of-scroll-bars-in-a-jscrollpane#comments</comments>
		<pubDate>Sat, 15 Nov 2008 01:33:13 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[swing]]></category>
		<category><![CDATA[JScrollBar]]></category>
		<category><![CDATA[JScrollPane]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=603</guid>
		<description><![CDATA[You need to set the preferred size of the JScrollBar components. scrollpane.getVerticalScrollBar().setPreferredSize( new Dimension(width, Integer.MAX_VALUE)); scrollpane.getHorizontalScrollBar().setPreferredSize( new Dimension(Integer.MAX_VALUE, width)); Related posts: How do I get a JScrollPane to always display scroll bars? You can achieve this by setting the scroll bar policy... How do I add scroll bars to my JList? You need to add [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-change-the-width-of-scroll-bars-in-a-jscrollpane/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I add scroll bars to my JList?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-add-scroll-bars-to-my-jlist?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-add-scroll-bars-to-my-jlist</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-add-scroll-bars-to-my-jlist#comments</comments>
		<pubDate>Wed, 29 Oct 2008 23:57:06 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[swing]]></category>
		<category><![CDATA[JList]]></category>
		<category><![CDATA[JScrollPane]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=482</guid>
		<description><![CDATA[You need to add your JList (or any component) to a JScrollPane. Easiest way to do this is to pass your component to the JScrollPane&#8217;s constructor. You then add the JScrollPane to your component hierarchy (instead of adding your JList). JScrollPane scrollPne = new JScrollPane(mylist); panel.add(scrollPane); Related posts: How do I get a JScrollPane to [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-add-scroll-bars-to-my-jlist/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I determine the location a component in a JScrollPane is currently scrolled to?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-determine-the-location-a-component-in-a-jscrollpane-is-currently-scrolled-to?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-determine-the-location-a-component-in-a-jscrollpane-is-currently-scrolled-to</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-determine-the-location-a-component-in-a-jscrollpane-is-currently-scrolled-to#comments</comments>
		<pubDate>Wed, 01 Oct 2008 12:37:07 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[swing]]></category>
		<category><![CDATA[JScrollPane]]></category>
		<category><![CDATA[JViewport]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=346</guid>
		<description><![CDATA[The JViewport of the JScrollPane provides a method to return the location of top left point showing in the scroll pane. JViewport viewport = myScrollPane.getViewport(); Point scrolledTo = viewport.getViewPosition(); Related posts: How do I get a JScrollPane to always display scroll bars? You can achieve this by setting the scroll bar policy... Add Component to [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-determine-the-location-a-component-in-a-jscrollpane-is-currently-scrolled-to/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I get a JScrollPane to always display scroll bars?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-get-a-jscrollpane-to-always-display-scroll-bars?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-get-a-jscrollpane-to-always-display-scroll-bars</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-get-a-jscrollpane-to-always-display-scroll-bars#comments</comments>
		<pubDate>Sun, 28 Sep 2008 23:56:10 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[swing]]></category>
		<category><![CDATA[JScrollPane]]></category>
		<category><![CDATA[scrollbar]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=270</guid>
		<description><![CDATA[You can achieve this by setting the scroll bar policy on both the verical and horizontal scroll bars. ScrollPane scrollPane = new JScrollPane(panel); // Force the scrollbars to always be displayed scrollPane.setHorizontalScrollBarPolicy( JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS); scrollPane.setVerticalScrollBarPolicy( JScrollPane.VERTICAL_SCROLLBAR_ALWAYS); Related posts: How to change the width of scroll bars in a JScrollPane? You need to set the preferred size [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-get-a-jscrollpane-to-always-display-scroll-bars/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

