You are viewing our Forum Archives. To view or take place in current topics click here.
The Paste Game! [Extremely Funny]
Posted:

The Paste Game! [Extremely Funny]Posted:

Glxy
  • Rising Star
Status: Offline
Joined: Nov 19, 201310Year Member
Posts: 705
Reputation Power: 29
Status: Offline
Joined: Nov 19, 201310Year Member
Posts: 705
Reputation Power: 29
RULE:

You have to Paste whatever you have copied!


Mine:


thetechgame.com/profile/GlxyOG

Now it's your turn, go!
#2. Posted:
SimbaXe
  • Gold Gifter
Status: Offline
Joined: Dec 22, 201112Year Member
Posts: 2,821
Reputation Power: 143
Status: Offline
Joined: Dec 22, 201112Year Member
Posts: 2,821
Reputation Power: 143
[ Register or Signin to view external links. ]
#3. Posted:
Mario350
  • V5 Launch
Status: Offline
Joined: Mar 27, 201311Year Member
Posts: 4,412
Reputation Power: 174
Status: Offline
Joined: Mar 27, 201311Year Member
Posts: 4,412
Reputation Power: 174
[ Register or Signin to view external links. ]
#4. Posted:
DrGrim
  • Rising Star
Status: Offline
Joined: Dec 18, 201013Year Member
Posts: 791
Reputation Power: 35
Status: Offline
Joined: Dec 18, 201013Year Member
Posts: 791
Reputation Power: 35
[ Register or Signin to view external links. ]
#5. Posted:
Goro
  • Challenger
Status: Offline
Joined: Nov 23, 20149Year Member
Posts: 190
Reputation Power: 10
Status: Offline
Joined: Nov 23, 20149Year Member
Posts: 190
Reputation Power: 10
[ Register or Signin to view external links. ]
#6. Posted:
YGM
  • Challenger
Status: Offline
Joined: Nov 01, 20149Year Member
Posts: 194
Reputation Power: 13
Status: Offline
Joined: Nov 01, 20149Year Member
Posts: 194
Reputation Power: 13
[ Register or Signin to view external links. ]
#7. Posted:
Tend
  • Christmas!
Status: Offline
Joined: Jul 23, 201112Year Member
Posts: 2,661
Reputation Power: 124
Status: Offline
Joined: Jul 23, 201112Year Member
Posts: 2,661
Reputation Power: 124
[ Register or Signin to view external links. ]

I was posting it on a celebrity crush thread.
#8. Posted:
goonbag
  • Summer 2021
Status: Offline
Joined: Jun 06, 201310Year Member
Posts: 1,497
Reputation Power: 7028
Status: Offline
Joined: Jun 06, 201310Year Member
Posts: 1,497
Reputation Power: 7028
Working on my desktop

[AppButton1Passive]
Meter=STRING
x=0
y=0
SolidColor=0,0,0,1
Text=#App1#
FontFace=#FontFace#
FontSize=#FontSize#
FontColor=#FontColorPassive#
StringAlign=LEFT
StringEffect=#StringEffect#
FontEffectColor=#FontEffectColor#
AntiAlias=1
MouseOverAction=!Execute [!ShowMeter AppButton1Active][!HideMeter AppButton1Passive][!Update]
#9. Posted:
TTG-Koolaid
  • Ladder Climber
Status: Offline
Joined: Jun 28, 201013Year Member
Posts: 353
Reputation Power: 15
Status: Offline
Joined: Jun 28, 201013Year Member
Posts: 353
Reputation Power: 15
Private Sub btnDoWhile_Click(sender As Object, e As EventArgs) Handles btnDoWhile.Click
'Declare variables for Do/While Loop
Dim intDistance As Decimal
Dim intSpeed As Decimal = 60
Dim intTime As Decimal
Dim strTime As String
Dim intCount As Integer = 0
'User input.
strTime = InputBox("Please the amount of time that you traveled.", "Time Needed")
'Convert user input to an integer.
If Integer.TryParse(strTime, intTime) Then
'Set time to be greater than 0.
If intTime > 0 Then
'Calculate distance.
Do While intCount <= intTime
intDistance = intSpeed * intTime
intCount += 1


Loop
'Display items in listbox.
lstOutput.Items.Add(intTime & vbTab & vbTab & intDistance)

Else
'Error message.
MessageBox.Show("Please enter a valid travel time")
End If
End If

End Sub

Private Sub btnForNext_Click(sender As Object, e As EventArgs) Handles btnForNext.Click
'Declare variables For/Next loop.
Dim intDistance As Decimal
Dim intSpeed As Decimal = 60
Dim intTime As Decimal
Dim strTime As String
Dim intCount As Integer = 0
'User input.
strTime = InputBox("Please the amount of time that you traveled.", "Time Needed")
'Convert user input to an integer.
If Integer.TryParse(strTime, intTime) Then
'Set time to be greater than 0.
If intTime > 0 Then
'Calculate distance traveled.
For intCount = 0 To intTime
intDistance = intSpeed * intTime
intCount += 1


Next
'Display items in listbox.
lstOutput.Items.Add(intTime & vbTab & vbTab & intDistance)

Else
'Error message.
MessageBox.Show("Please enter a valid travel time")
End If
End If
End Sub

Private Sub btnClear_Click(sender As Object, e As EventArgs) Handles btnClear.Click
'Clear items in listbox.
lstOutput.Items.Clear()
End Sub
End Class
#10. Posted:
XPS
  • TTG Natural
Status: Offline
Joined: Jun 09, 20149Year Member
Posts: 945
Reputation Power: 43
Status: Offline
Joined: Jun 09, 20149Year Member
Posts: 945
Reputation Power: 43
I dont have anything That sucks
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.