Click here to Skip to main content
15,921,660 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralfuHow make CD ROM autoplay function disable Pin
happywan2-Jul-03 2:18
happywan2-Jul-03 2:18 
GeneralRe: fuHow make CD ROM autoplay function disable Pin
skaanji2-Jul-03 2:33
skaanji2-Jul-03 2:33 
GeneralRe: fuHow make CD ROM autoplay function disable Pin
Ryan Binns2-Jul-03 3:07
Ryan Binns2-Jul-03 3:07 
GeneralRe: fuHow make CD ROM autoplay function disable Pin
happywan2-Jul-03 4:08
happywan2-Jul-03 4:08 
GeneralRe: fuHow make CD ROM autoplay function disable Pin
Toni782-Jul-03 12:28
Toni782-Jul-03 12:28 
GeneralRe: fuHow make CD ROM autoplay function disable Pin
Tim Smith2-Jul-03 3:53
Tim Smith2-Jul-03 3:53 
GeneralRe: fuHow make CD ROM autoplay function disable Pin
John M. Drescher2-Jul-03 5:50
John M. Drescher2-Jul-03 5:50 
GeneralRe: fuHow make CD ROM autoplay function disable Pin
HansonDavid21-Jul-03 18:16
HansonDavid21-Jul-03 18:16 
Hi, Sir:
I saw your answer about disable CDROM autoplay function . and I think so that It is a very bad idea to change people's registry. And I have sawn the "Enable and Disable AutoPlay" in MSDN. I do it that:

UINT g_uQueryCancelAutoPlay = 0;
BOOL DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch (uMsg) {
...
default:
if (!g_uQueryCancelAutoPlay)
{
g_uQueryCancelAutoPlay = RegisterWindowMessage(TEXT("QueryCancelAutoPlay"));
}
if (uMsg == g_uQueryCancelAutoPlay)
{
SetWindowLong(hDlg, DWL_MSGRESULT, TRUE);
return 1;
}
}
}

but I can't success. Can you tell me How to do it? I wish to get your reply? Thanks
GeneralProperty sheet in MDI project Pin
d_kilshtein2-Jul-03 0:30
d_kilshtein2-Jul-03 0:30 
GeneralRe: Property sheet in MDI project Pin
jhwurmbach2-Jul-03 1:46
jhwurmbach2-Jul-03 1:46 
GeneralRe: Property sheet in MDI project Pin
Mil102-Jul-03 2:19
Mil102-Jul-03 2:19 
Generalhelp : tab ctrl Pin
marelluswallace1-Jul-03 23:49
marelluswallace1-Jul-03 23:49 
GeneralRe: help : tab ctrl Pin
eridan2-Jul-03 1:25
eridan2-Jul-03 1:25 
GeneralRe: help : tab ctrl Pin
marelluswallace2-Jul-03 1:34
marelluswallace2-Jul-03 1:34 
GeneralRe: help : tab ctrl Pin
RChin2-Jul-03 3:36
RChin2-Jul-03 3:36 
GeneralRe: help : tab ctrl Pin
Ryan Binns2-Jul-03 4:20
Ryan Binns2-Jul-03 4:20 
GeneralRe: help : tab ctrl Pin
RChin2-Jul-03 4:24
RChin2-Jul-03 4:24 
GeneralRe: help : tab ctrl Pin
Ryan Binns2-Jul-03 5:17
Ryan Binns2-Jul-03 5:17 
Generalpdf.ocx Pin
eridan1-Jul-03 23:34
eridan1-Jul-03 23:34 
GeneralRe: pdf.ocx Pin
Ryan Binns2-Jul-03 3:11
Ryan Binns2-Jul-03 3:11 
GeneralRegExp Search in VS6.0 Part II Pin
Bernhard1-Jul-03 23:01
Bernhard1-Jul-03 23:01 
GeneralRe: RegExp Search in VS6.0 Part II Pin
ZoogieZork2-Jul-03 1:37
ZoogieZork2-Jul-03 1:37 
GeneralRe: RegExp Search in VS6.0 Part II Pin
Ryan Binns2-Jul-03 1:39
Ryan Binns2-Jul-03 1:39 
GeneralHelp.Transfer data. Pin
Svin1-Jul-03 23:00
Svin1-Jul-03 23:00 
GeneralRe: Help.Transfer data. Pin
AlexO2-Jul-03 3:30
AlexO2-Jul-03 3:30 

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.