• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Question on Scrolling in a JTextArea

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Could someone help me with this problem?
I have a JTextArea inside a JScrollPane so that I can scroll the text. My program reads a files and populated the textarea. When it is done, the textarea is scrolled all the way down. How can I scroll it all the way up programmatically?
Thanks,
Arsalan
------------------
 
Ranch Hand
Posts: 1492
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HI,
You could set the JTextArea caret position to 0. The top ...
textArea.setCaretPosition( 0 );
That should make the scrollbars back to top of textarea.
Regards,
Manfred.
 
Arsalan Madjd
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Manfred,
That worked. Thanks for your help.
Arsalan

Originally posted by Manfred Leonhardt:
HI,
You could set the JTextArea caret position to 0. The top ...
textArea.setCaretPosition( 0 );
That should make the scrollbars back to top of textarea.
Regards,
Manfred.


 
Remember to always leap before you look. But always take the time to smell the tiny ads:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic