|
-
Jan 5th, 2006, 05:59 AM
#1
Thread Starter
New Member
Disable the Mouse and Keyboard of the Client by the server
Pls. help me! I need to make a system for our Research Project that could disable the mouse and keyboard of the client through the server computer. I am a beginner for this program.
Can anyone give me a detailed procedure on how to establish/make the system.
-
Jan 5th, 2006, 08:49 AM
#2
Re: Disable the Mouse and Keyboard of the Client by the server
Welcome to the forums. 
My one question is: why?
-
Jan 10th, 2006, 11:26 AM
#3
Member
Re: Disable the Mouse and Keyboard of the Client by the server
that would be kick arse i second that question.
-
Jan 10th, 2006, 11:49 AM
#4
Re: Disable the Mouse and Keyboard of the Client by the server
You can use the BlockInput API.
Done in Visual Studio 2003
VB Code:
Private Declare Function BlockInput Lib "user32" (ByVal fBlock As Long) As Long
Private WithEvents timer1 As New Timer
Sub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
timer1.Interval = 5000
timer1.Start()
BlockInput(True)
End Sub
Private Sub timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles timer1.Tick
BlockInput(False)
timer1.Stop()
End Sub
As far as executing the code remotely, you're on your own. We don't make programs that can be used for exploitation or annoyance.
Besides, if you've done client/server programming before, you should be able to figure this one out on your own.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|