Freeze a computer!

By | 2002-06-01

Ever want to freeze a computer? Well, here is some code to do it. It manipulates the API ‘setparent’

Original Author: Brian Molidor

Side Effects

Well, Duh. your computer will freeze

Code

Public Declare Function SetParent Lib "user32" Alias "SetParent" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long
function freeze_computer(frm as form)
call SetParent(frm.hwnd, frm.hwnd)
end function

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.