george boddey

Greenhorn
+ Follow
since Feb 16, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by george boddey

just a quick one, are you using JLabel.setText()? or are you using an instance of jlabel that is part of your gui? for example: myLabel.setText()?
15 years ago
Hi,

I have a Jtable with one column that displays text that sometimes include hyperlinks, for example:



What i would like would for the hyperlink to be represnted as a hyperlink and be clickable to open in a browser, but the standard text to remain unchanged.

So far i have only found examples that make the entire cell a hyperlink, which isn't quite what i want.

If anyone could shed some light on this, it would be much appreciated. If it makes any difference, the app only has to run on a windows machine.

Thanks in advance for any help!

gb
15 years ago
when using the server socket and it accepts a connection, you could extend a thread a pass it the socket for processing.
here is a bit of example code:


ServerThread is a thread you have designed to handle the socket request.

Hope this helps
sorry about that, have changed it!
Hi,

I have an application that uploads a file to an ftp server and also downloads. But i am stuggling to work out a way to calculate the time it will take to upload/download.
I am using the Apache Commons Net package. If anyone could shed any light on this i would be greatful, even it was to say it isn't possible to do with this package!

Thanks in advance,

gb