Tagged Questions
4
votes
4answers
531 views
.NET Simulate Ctrl+Alt+Del Sendkeys
all is said in the title, how can I simulate the combination Ctrl+Alt+DEL?
I tried this:
SendKeys.Send("^(%({DEL}))")
SendKeys.Send("^(%{DEL})")
SendKeys.Send("^%{DEL}")
But none worked. I am ...
2
votes
2answers
180 views
How do I hook in to a double-press of the Ctrl key?
What I'm looking for is functionality similar to Google desktop. When you hit Ctrl twice rapidly, a little search box pops up.
I've tried using a fairly heavy keyboard hook class that I found ...
2
votes
2answers
690 views
How can I set and restore FPU CTRL registers?
I can reset FPU's CTRL registers with this:
http://support.microsoft.com/kb/326219
But how can I save current registers, and restore them later?
It's from .net code..
What I'm doing, is from ...