The Ctrl+V game

T

themasterrocker

Guest
I don't see why this got closed so i am reopening it.

back to the game:
can't wait for my domain
 

cased

New Member
Messages
43
Reaction score
0
Points
0
Ninety nine thousand nine hundred and eighty nine green bottles sitting on the wall. (99989) Ninety nine thousand nine hundred and eighty nine green bottles sitting on the wall. (99989) And if one green bottle was to be shot with somebodys laser gun, there would be ninety nine thousand nine hundred and eighty eight green bottles sitting on a wall.

It's obvious, I was just playing the 100000 bottle game.
 

Zangetsu

New Member
Messages
491
Reaction score
1
Points
0
the system idle process is not a process, more a counter which is displayed in WinTasks used for measuring how much idle time the CPU is having at any particular time. This counter will display how much CPU Resources, as a percentage are 'idle' and available for use. Cannot be killed
 

natsuki

New Member
Messages
112
Reaction score
0
Points
0
Option Explicit
Dim AlarmTime
Const conMinimized = 1


Private Sub Form_Click()
AlarmTime = InputBox("Enter alarm time", "VB Alarm", AlarmTime)
If AlarmTime = "" Then Exit Sub
If Not IsDate(AlarmTime) Then
MsgBox "The time you entered was not valid."
Else ' String returned from InputBox is a valid time,
AlarmTime = CDate(AlarmTime) ' so store it as a date/time value in AlarmTime.
End If
End Sub

Private Sub Form_Load()
AlarmTime = ""
End Sub

Private Sub Form_Resize()
If WindowState = conMinimized Then ' If form is minimized, display the time in a caption.
SetCaptionTime
Else
Caption = "Alarm Clock"
End If
End Sub

Private Sub SetCaptionTime()
Caption = Format(Time, "Medium Time") ' Display time using medium time format.
End Sub

Private Sub Timer1_Timer()
Static AlarmSounded As Integer
If lblTime.Caption <> CStr(Time) Then
' It's now a different second than the one displayed.
If Time >= AlarmTime And Not AlarmSounded Then
Beep
MsgBox "Alarm at " & Time
AlarmSounded = True
ElseIf Time < AlarmTime Then
AlarmSounded = False
End If
If WindowState = conMinimized Then
' If minimized, then update the form's Caption every minute.
If Minute(CDate(Caption)) <> Minute(Time) Then SetCaptionTime
Else
' Otherwise, update the label Caption in the form every second.
lblTime.Caption = Time
End If
End If
End Sub

It's a response to someone asking for VB code in another forums. (copy/paste from VB5 example files)
 

alexandgruntz

New Member
Messages
744
Reaction score
0
Points
0
99986 green bottles sitting on a wall.
99986 green bottles sitting on a wall.
and if 1 green bottle was to accidently fall there will be 99985 green bottles sitting on a wa

Yeah.
 
M

Macaws

Guest
Hi Allison--

Will you go out with me?

Mason

---
I had to save that email...:pat:
 

alexandgruntz

New Member
Messages
744
Reaction score
0
Points
0
99983 green bottles sitting on a wall.
99983 green bottles sitting on a wall.
and if 1 green bottle was to accidently fall there will be 99982 green bottles sitting on the wall

Why is that in my clipboard? :p
 

Dahlriku

New Member
Messages
68
Reaction score
0
Points
0
This problem occurs because your computer is unable...

And where did i get this, lol
 

alexandgruntz

New Member
Messages
744
Reaction score
0
Points
0
99972 green bottles sitting on a wall.
99972 green bottles sitting on a wall.
and if 1 green bottle was to accidentally fall there will be 99971 green bottles sitting on the wall.

Again.
 

natsuki

New Member
Messages
112
Reaction score
0
Points
0
if (pre.getErrorCount() || pre.getWarnCount())
{
cerr << pre.getErrorCount() << " errors, ";
cerr << pre.getWarnCount() << " warnings" << endl;
}

aww it's the compiler again
 
Last edited:
Top