Click here to Skip to main content
15,923,083 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Function IsDestinationReachable Pin
Alan Martinis6-Oct-03 5:52
Alan Martinis6-Oct-03 5:52 
GeneralRe: Function IsDestinationReachable Pin
David Crow6-Oct-03 6:26
David Crow6-Oct-03 6:26 
GeneralRe: Function IsDestinationReachable Pin
Alan Martinis6-Oct-03 7:07
Alan Martinis6-Oct-03 7:07 
GeneralRe: Function IsDestinationReachable Pin
David Crow6-Oct-03 7:27
David Crow6-Oct-03 7:27 
GeneralRe: Function IsDestinationReachable Pin
Alan Martinis6-Oct-03 21:35
Alan Martinis6-Oct-03 21:35 
GeneralRe: Function IsDestinationReachable Pin
Mike Dimmick7-Oct-03 0:07
Mike Dimmick7-Oct-03 0:07 
GeneralRe: Function IsDestinationReachable Pin
Anonymous7-Oct-03 3:53
Anonymous7-Oct-03 3:53 
GeneralRe: Function IsDestinationReachable Pin
Alan Martinis6-Oct-03 5:58
Alan Martinis6-Oct-03 5:58 
GeneralRe: Function IsDestinationReachable Pin
Mike Dimmick6-Oct-03 4:37
Mike Dimmick6-Oct-03 4:37 
QuestionWhich file is internet option saved in? Pin
ray_li6-Oct-03 3:23
ray_li6-Oct-03 3:23 
AnswerRe: Which file is internet option saved in? Pin
David Crow6-Oct-03 4:38
David Crow6-Oct-03 4:38 
GeneralRe: Which file is internet option saved in? Pin
ray_li6-Oct-03 5:38
ray_li6-Oct-03 5:38 
GeneralRe: Which file is internet option saved in? Pin
David Crow6-Oct-03 6:21
David Crow6-Oct-03 6:21 
GeneralRe: Which file is internet option saved in? Pin
ray_li6-Oct-03 6:59
ray_li6-Oct-03 6:59 
GeneralRe: Which file is internet option saved in? Pin
David Crow6-Oct-03 7:28
David Crow6-Oct-03 7:28 
GeneralOpen File Pin
Anonymous6-Oct-03 2:39
Anonymous6-Oct-03 2:39 
GeneralRe: Open File Pin
David Crow6-Oct-03 3:01
David Crow6-Oct-03 3:01 
GeneralRe: Open File Pin
Anonymous6-Oct-03 3:06
Anonymous6-Oct-03 3:06 
GeneralRe: Open File Pin
Anonymous6-Oct-03 3:08
Anonymous6-Oct-03 3:08 
GeneralRe: Open File Pin
David Crow6-Oct-03 3:26
David Crow6-Oct-03 3:26 
GeneralRe: Open File Pin
Anonymous6-Oct-03 4:10
Anonymous6-Oct-03 4:10 
GeneralRe: Open File Pin
jhwurmbach6-Oct-03 4:25
jhwurmbach6-Oct-03 4:25 
Generalc praogramms to disabling CTRL ALT Del keys in windows 2000 Pin
AzNain6-Oct-03 1:17
sussAzNain6-Oct-03 1:17 
hi! i want to read c source code sample to diable ctrl+alt+del keys combinations in windows 2000. because i have a sample programms listed below but it does not work in windows 2000. hope to hear from u soon.
the sample programms is as :


************************************************start


#include <windows.h>

int WINAPI WinMain (HINSTANCE, HINSTANCE, LPSTR ,int)
{
BOOL old;
SystemParametersInfo( SPI_SCREENSAVERRUNNING, 1, &old, 0);
MessageBox(NULL, "Ctrl-Alt-Del, Alt-Tab, and some other system keys are now disabled. "
"Test this for yourself by pressing some of these key combinations. "
"Note that you can still switch to other applications using the Taskbar buttons. "
"For more precise control over the system keys and task switching operation, get "
"KeyBlock from http://members.aol.com/phord (You can also find the source code to "
"this demo there.)", "Poor Man's KeyBlock demo", MB_OK);
SystemParametersInfo( SPI_SCREENSAVERRUNNING, 0, &old, 0);
return 0;
}
*****************************************************end
GeneralRe: c praogramms to disabling CTRL ALT Del keys in windows 2000 Pin
Rickard Andersson206-Oct-03 1:31
Rickard Andersson206-Oct-03 1:31 
GeneralRe: c praogramms to disabling CTRL ALT Del keys in windows 2000 Pin
David Crow6-Oct-03 3:02
David Crow6-Oct-03 3:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.