lt;Q:04.03> - How can I disable Ctrl-C/Ctrl-Break and/or Ctrl-Alt-Del?
comp.os.msdos.programmer FAQIn that directory, cadel.zip contains a TSR (with source code) to disable those keys. Also, keykill.arc contains two utilities: keykill.com lets you disable up to three keys of your choice, and deboot.com changes the boot key to leftShift-Alt-Del. C programmers who simply want to make sure that the user can't Ctrl-Break out of their program can use the ANSI-standard signal() function; the Borland compilers also offer ctrlbrk() for handling Ctrl-Break.
Related QuestionsHow can I send Ctrl-Alt-Del to the remote computer?
Radmin - PC Remote Control Software - Radmin 3 - Frequently ...If you want to send Ctrl-Alt-Del key to a remote computer you can use 'Send Ctrl-Alt-Del' entry from the Remote Screen window menu. This feature will work in 'Full control' connection type. You can also use Ctrl-Alt-F12 hotkey for a quick sending.
Related QuestionsWhy doesn't ctrl+alt+del work on secondary screens?
Synergy Frequently Asked QuestionsSynergy isn't able to capture ctrl+alt+del on PC compatible primary screens because it's handled completely differently than other keystrokes. However, when the mouse is on a client screen, pressing ctrl+alt+pause will simulate ctrl+alt+del on the client. (A client running on Windows NT, 2000, or XP must be configured to autostart when the computer starts for this to work.) On a primary screen running on an OS X system, you can use ctrl+command+del.
Related QuestionsHow do I intercept CTRL-ALT-DEL?
Win32 FAQBlocking or intercepting CTRL-ALT-DEL is completely different in Windows NT and Win9x. In Win9x, pressing CTRL-ALT-DEL twice reboots the machine; on NT, pressing CTRL-ALT-DEL twice (or three, four, etc. times) gives you the login prompt. The difference is security; in the platform documentation, CTRL-ALT-DEL is referred to as the Secure Attention Sequence.
Related QuestionsOnScreen does not do a Ctrl-Alt-Del! Why & what options do I have?
IMG Frequently Asked QuestionsThe Ctrl-Alt-Del used in PCs is a system level hardware signal - it is impossible to generate this without hardware. OnScreen includes a CTALTDEL.EXE program with capabilities of handling resets and communication with the NT/2000/XP Logon module. You may also review the commercial Developer's Kit in our Developer's Corner for utilities that restart / reboot the system. Finally, review the TASKMAN.
Related QuestionsWhen pressing CTRL-ALT-DEL I've noticed loadqm.exe. What is it and why is it there?
FAQMicrosoft has tried really hard to prevent you from uninstalling MSN or Windows Messenger. Below we collect various methods to remove the software, different from the one here. Now go to the Add and Remove programs applet in the Control Panel and you will be able to uninstall windows messenger. Note: You will be able to uninstall other unneeded programs by removing hide from the sysoc.
Related QuestionsHow can I prevent users from using Ctrl+Alt+Del?
Bardon Data Systems: Full Control Internet FAQIn Windows 9x and NT, Full Control Internet can completely disable Ctrl+Alt+Del, or password-protect it. In Windows 2000 and XP, the Windows Security (Ctrl+Alt+Del) screen which appears has all functions grayed out. Either way, to disable Ctrl+Alt+Del, select the group to which you want to add this protection. On the Input Control tab, check the box to disable Ctrl+Alt+Del.
Related QuestionsWhy Ctrl+Alt+Del combination is disabled in the toolbar of the Remote Screen Window?
FAQCurrently you work in the "View Only" mode. You can send Ctrl+Alt+Del combination to the remote computer in "Full Control Mode" only. Please, click on the "Full Control" button, which is on the tool bar of the Remote Control window. (If "Full control" mode is blocked you can do the following to unblock it the Host module->Settings->Security->Access->check "All features field") If Host PC has Vista OS you are unable to run our program as system service.
Related QuestionsWhy does my Windows XP computer crash when I press Ctrl+Alt+Del to unlock the computer?
English Windows FAQs 2003When you unlock your computer by pressing Ctrl+Alt+Del, XP can crash if both of the following conditions are true: To work around this problem, move the Language bar away from the upper left corner of the screen before you lock the computer. Corrupt information in the Windows Management Instrumentation (WMI) repository causes this error. To resolve it, perform the following steps: WinMgmt could not initialize the core parts.
Related QuestionsHow can I send Ctrl+Alt+Del combination to the remote PC?
FAQYou can send Ctrl+Alt+Del combination to the remote computer in "Control Mode" only. Also the Host Module must run as a system service on that remote PC. Press Ctrl+Alt+F12 or use "Send Keystroke" button in the toolbar of Remote Screen Window.
Related QuestionsHow can i initiate a shutdown (CTRL+ALT+DEL) without using JNI on my Windows box?
jGuru: JNI FAQ Home PageYou can call Runtime.exec() and execute rundll32.exe with a few parameters. rundll32.exe shell32.dll,SHExitWindowsEx (to close the session) rundll32.exe...
Related QuestionsQ:When using windows, how do I press CRTL ALT DEL ?
The real Keyless Ergonomic Keyboard with an Integrated mouseA:You can do this in one of two ways. You could type the character sequence CTRL-ALT-DEL-ALT-CTRL. This turns on CTRL and ALT modes, puts in the DEL character, and then turns off CTRL and ALT modes. Or..., you can type the orbiTouch®'s special "CTRL ALT DEL" character--this single character is shown on the Character Guide. Back to Top A:The domes are very easy to move. The force required is approximately 7 N (1.6 pounds).
Related QuestionsA program appears to be hung up in a calculation. How can I get it to stop - Ctrl-Alt-Del?
FactSage 5.3 - FAQYou can run FactSage by clicking on the FactSage short-cut that appears on the screen. To add this short-cut to the 'Start > Programs > FactSage Thermo ... ' group: then click on 'Start > Programs > FactSage Thermo ... ' and then click with the mouse right button and select 'paste' The '(empty)' will be replaced by the FactSage short-cut.
Related QuestionsWhy should I use D- for Ctrl and O- for Alt - I thought C stood for Ctrl and A stood for alt?
NetBeans Master Developer FAQThere should be no Alt-bound keyboard shortcuts on the mac ever - it is used on international keyboards as the compose key (for a long time, we didn't know it, but Norwegian and French users could not type } or { in NetBeans - kind of limits the usefuless of a Java IDE). All standard shortcuts should be bound with wildcard keys - e.g., in the layer, not AS-P for Alt-Shift-P, but OS-P, which will map to Alt-Shift-P on PC and Ctrl-Shift-P on mac.
Related Questionslt;Q:04.04> - How can I disable the print screen function?
comp.os.msdos.programmer FAQThere are really two print screen functions: 1) print current screen snapshot, triggered by PrintScreen or Shift- PrtSc or Shift-gray*, and 2) turn on continuous screen echo, started and stopped by Ctrl-P or Ctrl-PrtSc. The BIOS uses INT 5 for this. Fortunately, you don't need to mess with that interrupt handler. The standard handler, in BIOS versions dated December 1982 or later, uses a byte at 0040:0100 (= 0000:0500) to determine whether a print screen is currently in progress.
Related Questionslt;Q:05.05> - How can I disable access to a drive?
comp.os.msdos.programmer FAQReader Eric DeVolder writes that he has made available a program to do this. I haven't tried it, but it's downloadable from <http://www.simtel.net/pub/pd/44403.html> Reader Igor Karp reports that MS-DOS version 5.0 and greater provides two interrupts to do this.
Related QuestionsShouldn't xscreensaver disable Ctrl-Alt-Backspace while the screen is locked?
XScreenSaver FAQYes, it probably should; unfortunately, that's not possible with current versions of XFree86/XOrg. If you want to disable the Ctrl-Alt-Backspace keystroke permanently, you can set the DontZap flag in your /etc/X11/XF86Config or XF86Config-4 file. See the manual for XF86Config for more details.
Related QuestionsHow do I send a Ctrl-Alt-Del command remotely using Screen Control?
Desktop Scout Spy Software - Frequently Asked QuestionsIn the Screen Control window, right-click the system menu (top-left corner) and select "Send Ctrl-Alt-Del". This will allow you to get around certain windows such as "Press Ctrl-Alt-Del to login" and to lock workstations. How do I connect to an Agent when it is behind a router? I am trying to connect to my computer which is behind my Internet router.
Related Questionslt;Q:01.07> - Is comp.os.msdos.programmer just for C programmers?
comp.os.msdos.programmer FAQNo, it is for all programmers who want to share information about programming in MS-DOS and DOS replacements like 4DOS. Programs and questions are also posted in Pascal, assembly, and other languages (including MS-DOS batch programming). Why does the newsgroup seem to be so C-oriented sometimes? There are two reasons. First, comp.lang.c and comp.lang.pascal have evolved in different directions. Comp.lang.pascal has split into discussions about individual Pascal compilers. comp.lang.pascal.
Related Questionslt; back to top > Q: How is cement made?
Ready Mixed Concrete FAQsRaw materials such as limestone, shale, clay, iron ore, and sand are heated in a rotary kiln to approximately 2700 oF to form a partially molten mass. This partially molten mass is called Å'clinker¹. The clinker is cooled and ground into a fine powder called portland cement. The raw materials that feed the kiln have to be carefully proportioned to contain the desired amount of calcium oxide, silica, alumina, and iron oxide.
Related Questionslt;Q:03.03> - Will Borland C code and Microsoft C code link together?
comp.os.msdos.programmer FAQTypically someone who owns compiler A and is trying to write code to link with a third-party library that was compiled under compiler B asks this question. Helper" functions (undocumented functions for stack checking, floating-point arithmetic, and operations on longs) differ between the two compilers. Extended dictionaries are not compatible between the 2 formats.
Related QuestionsThe option -nounixkill has no effect. How can i prevent the server shutdown an Ctrl-Alt-BackSpace?
Cygwin/X Frequently Asked QuestionsThere is a keybinding to Ctrl-Alt-BackSpace which is named TerminateServer. Remove this binding and Ctrl-Alt-BackSpace will have no effect.
Related QuestionsHow can I record an Alt or Ctrl key by itself?
Technical SupportYou can disable keyboard normalization to have the Alt, Ctrl and Shift keys appear in the macro commands list. See the "Macro keyboard and mouse normalization" topic under the Voice Macros section in the online help for details on this.
Related QuestionsHow easy is it to do Ctrl-C, Ctrl-X and Ctrl?V?
Frequently Asked Questions about AlphaGrip, a Handheld USB C...Relatively easy. You reach over with your right thumb to press the Ctrl key and you press the C or V key with your left thumb. For Ctrl-X, you reach down with your left thumb and press the Ctrl key and press the X key with your right thumb. Yes. There is an Fn Lock key on the lower right front portion of the AlphaGrip which remaps the keys on the back to generate the F1-F12 keys. The F1-F10 keys are associated with the keys that have the red numbers 1 through 0.
Related Questionslt;Q:03.05> - How can I change the stack size in Borland's C compilers?
comp.os.msdos.programmer FAQIn Turbo C, Turbo C++, and Borland C++, you may not find "stack size" in the index but the global variable _stklen should be there. The manual will instruct you to put a statement like extern unsigned _stklen = 54321U; in your code, outside of any function. You must assign the value right in the extern statement; it won't work to assign a value at run time. The linker may give you a duplicate symbol warning, which you can ignore.
Related Questionslt;Q:05.07> - Why won't my C program open a file with a path?
comp.os.msdos.programmer FAQYou've probably got something like the following code: char *filename = "c:\foo\bar\mumble.dat"; FILE *fptr; /*.*/ fptr = fopen(filename, "r"); The problem is that \f is a form feed, \b is a backspace, and \m is m. Whenever you want a backslash in a string constant in C, you must use two backslashes: This is a feature of every C compiler, because Dennis Ritchie designed C this way.
Related Questionslt;Q:07.02> - How can a C program send control codes to my printer?
comp.os.msdos.programmer FAQIf you just fprintf(stdprn, ...), C will translate some of your control codes. The way around this is to reopen the printer in binary mode: prn = fopen("PRN", "wb"); You must use a different file handle because stdprn isn't an lvalue. By the way, in DOS 5.0 a colon must not follow PRN or LPT1. There's one special case, Ctrl-Z (ASCII 26), the DOS end-of- file character. If you try to send an ASCII 26 to your printer, DOS simply ignores it.
Related Questionslt;Q:08.10> - What's this 'null pointer assignment' after my C program executes?
comp.os.msdos.programmer FAQSomewhere in your program, you assigned a value through a pointer without first assigning a value to the pointer. (This might have been something like a strcpy() or memcpy() with a pointer as its first argument, not necessarily an actual assignment statement.) Your program may look like it ran correctly, but if you get this message you can be certain that there's a bug somewhere.
Related Questionslt; back to top > Q: What is "compressive strength"?
Ready Mixed Concrete FAQsCompressive strength is expressed as force per unit cross-sectional area. In other words, a load of 50265 lb. applied axially to a concrete test specimen whose cross sectional area is 12.5664 square inch (in2), then the compressive strength calculates to 4000 in2. Concrete is very strong in compression, but is comparatively weak in tension. For this reason, concrete is often reinforced with steel.
Related Questions