Ok guys
first:
Code for Clock in your Forum

first open yor timer and type in this code
[php] Dim h As String = My.Computer.Clock.LocalTime.Hour
Dim m As String = My.Computer.Clock.LocalTime.Minute
Dim s As String = My.Computer.Clock.LocalTime.Second
If m < 10 Then m = "0" + m
If s < 10 Then s = "0" + s
Label1.Text = h + ":" + m + ":" + s[/php]
What it all means,Dim is the start of a new string, the "h" means hour but you could write "bananas" it dosnt matter,apart from being realivant to your forum. you can see after "Dim h
as string" show you that your creating a new String then what we added after it was "my.computer.clock.localtime.* *"
shows you were they find the infomation they were looking for,like to find out how to show if your online,which is in the next part.-
The next Basic code will show you how to show if you are online or not
[php]Dim online as string = My.Computer.network.Isavailable
label2.text = online
if label2.text = ("True") then
label2.text = ("Online")
else
label2.text = ("Offline")
End if[/php]
this,like the first creates a string called "Online"
it takes infomation from your computer and it users it in your App
thanks guys

i hope i helped

any questions post them here