Freeze a computer
Ever want to freeze a computer? Well, here is some code to do it. It manipulates the API 'setparent'
Side Effects
Well, Duh. your computer will freeze
Rate Freeze a computer
(9(9 Vote))
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
Freeze a computer Comments
No comments yet — be the first to post one!
Post a Comment