Thanky to the user who submited this problem I was aware of
this problem and i am trying to find a way to overide it. The
PazzWord team will put this problem above any others that
may arise, the reason beign is that this is a huge vulnribility.
Thanks again,
reallyhugenet
The PazzWord Team
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2003-10-13
Logged In: YES
user_id=394613
Does this problem still arise with the latest version of the
program? If so, it may be possible to solve it similarly to
the Ctrl-Alt-Tab problem, by ignoring keystrokes beginning
with Alt.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
To get rid of Ctrl+Alt+Del.
And i have tried this other code:
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'This variable is used for ignoring alt+tab keypresses.
'Done by Dmitriy Shnayder <wiht@users.sourceforge.net>
'edited by reallyhugenet <reallyhuge@hotmail.com>
Dim ignoreKey As Boolean
'End of code
'This function was written by Dmitriy
Shnayder<wiht@users.sourceforge.net> Edited by
reallyhugenet <reallyhuge@hotmail.com>
Private Sub Form_KeyDown(KeyCode As Integer, Shift As
Integer)
'Ignore all keypresses starting with Ctrl+Alt.
If (Shift = 6) Then
ignoreKey = True
End If
End Sub
'This function was written by Dmitriy
Shnayder<wiht@users.sourceforge.net> Edited by
reallyhugenet <reallyhuge@hotmail.com>
Private Sub Form_KeyPress(KeyAscii As Integer)
If (ignoreKey = True) Then
'Cancel the keypress.
KeyAscii = 1
Logon.Hide
Logon.Show
ignoreKey = False
End If
'end of code
End Sub
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=806437
Thanky to the user who submited this problem I was aware of
this problem and i am trying to find a way to overide it. The
PazzWord team will put this problem above any others that
may arise, the reason beign is that this is a huge vulnribility.
Thanks again,
reallyhugenet
The PazzWord Team
Logged In: YES
user_id=394613
Does this problem still arise with the latest version of the
program? If so, it may be possible to solve it similarly to
the Ctrl-Alt-Tab problem, by ignoring keystrokes beginning
with Alt.
Logged In: YES
user_id=806437
No it will nut work because i have tried
App.TaskVisible = False
RegisterServiceProcess GetCurrentProcessId, 1
To get rid of Ctrl+Alt+Del.
And i have tried this other code:
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'This variable is used for ignoring alt+tab keypresses.
'Done by Dmitriy Shnayder <wiht@users.sourceforge.net>
'edited by reallyhugenet <reallyhuge@hotmail.com>
Dim ignoreKey As Boolean
'End of code
'This function was written by Dmitriy
Shnayder<wiht@users.sourceforge.net> Edited by
reallyhugenet <reallyhuge@hotmail.com>
Private Sub Form_KeyDown(KeyCode As Integer, Shift As
Integer)
'Ignore all keypresses starting with Ctrl+Alt.
If (Shift = 6) Then
ignoreKey = True
End If
End Sub
'This function was written by Dmitriy
Shnayder<wiht@users.sourceforge.net> Edited by
reallyhugenet <reallyhuge@hotmail.com>
Private Sub Form_KeyPress(KeyAscii As Integer)
If (ignoreKey = True) Then
'Cancel the keypress.
KeyAscii = 1
Logon.Hide
Logon.Show
ignoreKey = False
End If
'end of code
End Sub