Thanks
The Planet Source Code one works great, but I'd like to make the signal indicators the same sort of style as the network connections thing in the Control panel (see attachment).
As I said, I don't know a lot about VB, so thanks in advance
EDIT: I've nabbed the strength indicators from xpsp2res.dll in /system32/mui/0401 using ResHacker, how do I set them as the indicator, eg. something along the lines of:
vbnet code:
If dbl_strength = 0 Then
PictureBox1 = My.Resources.Signal_pic0
End If
If dbl_strength = 1 Then
PictureBox1 = My.Resources.Signal_pic1
End If
And so on...
(They are .icos, I will convert them to .pngs and hope PictureBoxes support .png transparency
)