Tagged Questions
0
votes
2answers
806 views
JTextPane with HTML - local image won't load
I'm trying to load a local image into a JTextPane, and the program relentlessly displays a broken image icon. This is the HTML code:
<img src="file:\\C:\farmostrich.gif" width=77 ...
1
vote
1answer
398 views
Inserting Images into a JTextPane Error
I asked about this before, but, I decided to start a new thread with a SCCE, it compiles sucessfully but it doesn't insert the image. Can anyone troubleshoot as to why it does this? Thanks, Chris.
...
0
votes
1answer
231 views
JTextPane Insert Icon Troubleshooting
public void valueChanged(TreeSelectionEvent event) {
//Add images depending on selection.
String selection = navigation.getLastSelectedPathComponent().toString();
if (selection == "Sigma") ...
1
vote
1answer
137 views
Copy Paste Icon in JTextPanel
I am doing a chat program with Javaswing and I would like to insert smileys in a JtextPanel and be able to select them for copy paste (in the same panel).
I'm doing that at this moment :
Icon ...