|
Friday, 17 June 2011 20:51 |
// Opens a browser on a specific site when clicking on the JLabel
link = new JLabel(" Click here to find the PUID \n");
link.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
link.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
if (e.getClickCount() > 0) {
if (Desktop.isDesktopSupported()) {
Desktop desktop = Desktop.getDesktop();
try {
URI uri = new URI("http://www.nationalarchives.gov.uk/PRONOM/Format/proFormatSearch.aspx?status=new");
desktop.browse(uri);
} catch (IOException ex) {
// do nothing
} catch (URISyntaxException ex) {
//do nothing
}
} else {
//do nothing
}
}
}
});
 Read more: |
|
Monday, 02 May 2011 09:00 |
|

" With your feet in the air and your head on the ground Try this trick and spin it, yeah Your head will collapse But there's nothing in it And you'll ask yourself...... Where is my mind Read more: |