Hey all, long time no type

I was in college and our teacher mentioned about the Beep() for the system beeping, and i was like shall i do a do while loop :P


So i made a button on a form and wrote this

Dim count as byte = 1

Do While count = 1
Beep()
Me.visible = False
Loop



Now that was mistake in its self but hey i was bored at college.

Now i know i crash the program etc but what would happen if i just leave the loop to run?

Ben