Something different over here :P
idk where's the right section for that one but anyways...it's kind of an argument so don't be mad xD
I've tried to basically annoy my friends with something little i made but some weird WEIRD bug appeared
idk how to explain it so it's kinda up to you guys to understand
Code:
private void timer1_Tick(object sender, EventArgs e)
{
while (true)
{
MessageBox.Show("U NOOB!");
}
}
c#
i don't think it would be a good idea to upload it so just make it your self ><
EDIT:the thread has been moved to here by disturbed :P
You can not create an infinite loop on a GUI app, you are stopping the application from painting and "locking" it on that specific piece of code.
Remove the loop and you are good to go.