hi,
i was wondering weather there is a way to send multiple keys
i want a program that when someone preses a command button it brings up the ctrl - alt- del dialog box, pref using sed keys
please include code
Printable View
hi,
i was wondering weather there is a way to send multiple keys
i want a program that when someone preses a command button it brings up the ctrl - alt- del dialog box, pref using sed keys
please include code
Maybe this?
(I don't have vb on this computer, so I can't test it)Code:SendKeys "%^{DELETE}"
cheers for the help, but it doesn't do anything do you have any other suggestions ?
It is not possible to synthesize a call to CTRL+ALT+DEL,
because pressing these keys on a keyboard does not send a
normal keyboard message--it generates a hardware interrupt
which is then handled by the OS. This is the reason Microsoft
used this key sequence to bring up the login dialog, because
there's no way a program which is trying to extract a user's
password can react to it without modifying the OS at a very low level.
Damn,
do you know of any other way to get this box to appear in vb,
thanks to all
Can't find that one anywhere. If I ever come across it I'll remember you.