Here's an interesting function that will crash windows. No crunching, no hourglass, no message. Just immediately completely freezes. If you try it (i did ), make sure u save all your work first!!!! I take no responsibility!

VB Code:
  1. Public Declare Function GetParent Lib "user32" (ByVal hWnd As Long) As Long
  2. Public Declare Function SetParent Lib "user32" (ByVal hWndChild As Long, _
  3.     ByVal hWndNewParent As Long) As Long
  4.  
  5. Public Sub crashMe(hWnd As Long)
  6.     Call SetParent(GetParent(hWnd), hWnd)
  7. End Sub