The Ctrl+V game

AJradio

New Member
Messages
39
Reaction score
0
Points
0
Code:
<center><script type="text/javascript" src="http://x10hosting.com/adserve.js?kmhb"></script></center>
 

Smith6612

I ate all of the x10Pizza
Community Support
Messages
6,518
Reaction score
48
Points
48
99914 green bottles sitting on a wall
99914 green bottles sitting on a wall
And if 1 green bottle was to accidentally fall
There'd be 99913 green bottles sitting on the wall
 

AJradio

New Member
Messages
39
Reaction score
0
Points
0
The e-mail account jacob[at]ajradio[dot]x10hosting[dot]com was successfully modified.

EDIT; he hates spam :)
 
Last edited:

AJradio

New Member
Messages
39
Reaction score
0
Points
0
99911 green bottles sitting on a wall
99911 green bottles sitting on a wall
And if 1 green bottle was to accidentally fall
There'd be 99910 green bottles sitting on the wall
 

alexandgruntz

New Member
Messages
744
Reaction score
0
Points
0
http://www.infonews.co.nz/news.cfm?l=1&t=0&id=30484
http://www.infonews.co.nz/news.cfm?l=1&t=0&id=30013

Emma Daken is walking from Cape Reinga to Bluff for cystic fibrosis. She is walking the equivalentof a marathon 6 days a week for the next 5 weeks, and has given up all of her holidays to do the walk.

It is not without trouble, as she has been troubled by a stomach virus, blisters and possibilities of losing toenails.

Did I mention she's my second cousin?

I had to quote myself on PressF1.
 

Smith6612

I ate all of the x10Pizza
Community Support
Messages
6,518
Reaction score
48
Points
48
99908 green bottles sitting on a wall
99908 green bottles sitting on a wall
And if 1 green bottle was to accidentally fall
There'd be 99907 green bottles sitting on the wall
 

wiegie007

New Member
Messages
1
Reaction score
0
Points
0
In order to use the Ad-Enhanced hosting account management panel, you must have your forum account linked to your hosting account.
Please enter your cPanel username below, you will receive an E-mail with further instructions. Be sure to have the same E-mail address registered with your cPanel account that your forum account has!
 

j4k3s7a

New Member
Messages
10
Reaction score
0
Points
0
'Declare Varibles
Dim intCount, intInput, intTotal As Integer
Dim sngOccupied, sngOverall As Single

'Clear controls
sngOverall = 0
lstOutput.Items.Clear()
lblOverall.Text = String.Empty
lblTotalOccupied.Text = String.Empty

'Start Loop
For intCount = 1 To 8 Step 1
'Get input
intInput = InputBox("Enter rooms occupied", "", "0")

If CInt(intInput) >= 0 And CInt(intInput) <= 30 Then
'Calculate occupancy rate
sngOccupied = CInt(intInput) / 30
sngOccupied = sngOccupied * 100

intTotal += intInput
sngOverall += sngOccupied

'Output Data
lstOutput.Items.Add("Floor: " + intCount.ToString() + " Room Occupied: " + intInput.ToString() + " Occupancy Rate: " + sngOccupied.ToString("N2") + "%")

Else
lstOutput.Items.Clear()
lstOutput.Items.Add("Use number between 0 and 30")
Exit For
End If

Next

lblTotalOccupied.Text = intTotal.ToString()
lblOverall.Text = CSng(sngOverall / 8).ToString("N1") + "%"
 
Top