Hi,
In the code
JPanel statusLabel = new JPanel();
statusLabel.setBounds(5,105,450,50);
JLabel status = new JLabel("Your message has been sent successfully. Please send it to another contact.");
statusLabel.add(status);
How can I add a hyperlink in
Please send it to another contact.
Also, I need to have a listener for that hyperlink so that I can call other constructors/methods from there.
Please help.
Regards,
Anees