Tagged Questions
1
vote
2answers
199 views
highlighting the word in java
I am triying to highlight a word, but only .length()-2 at 1st time,delay and then last 2 words.The first words are highlighted but it is not highlighting the last two words after delay.please help.
...
0
votes
1answer
87 views
Java : getting the proper StartOffset for multiple text color in JTextPane
I need to create a program that accepts a string input and will highlight certain words that is in my String List.
Example:
String MyList[] = {"Dog","Cat","Lion"};
Sample Input Text: I have a Dog ...
2
votes
1answer
506 views
JTextPane: Highlighting Comment Lines
Please have a look the following three files.
Form.java
package Normal;
import Keywords.JavaKeywords;
import java.awt.Color;
import java.awt.Dimension;
import ...
2
votes
2answers
929 views
How to implement find text mechanism in JTextPane?
I want to implement Find mechanism (like text editors or word) in my JTextPane.
I want it to have next / previous options (up/down arrows) and highlighting to all the words it found.
Is there a simple ...
