Click here to Skip to main content
15,909,566 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionGetting CXX0030: Error: expression cannot be evaluated Pin
zahid_ash9-Feb-06 7:34
zahid_ash9-Feb-06 7:34 
QuestionRe: Getting CXX0030: Error: expression cannot be evaluated Pin
David Crow9-Feb-06 7:42
David Crow9-Feb-06 7:42 
AnswerRe: Getting CXX0030: Error: expression cannot be evaluated Pin
Rage9-Feb-06 7:44
professionalRage9-Feb-06 7:44 
Questionminimizing or hiding the DOS window in VC++ exe application Pin
sashabkvs9-Feb-06 6:32
sashabkvs9-Feb-06 6:32 
AnswerRe: minimizing or hiding the DOS window in VC++ exe application Pin
Rage9-Feb-06 7:11
professionalRage9-Feb-06 7:11 
QuestionRe: minimizing or hiding the DOS window in VC++ exe application Pin
David Crow9-Feb-06 7:12
David Crow9-Feb-06 7:12 
QuestionCatch USB-Events Pin
BruteF0rce9-Feb-06 5:41
BruteF0rce9-Feb-06 5:41 
AnswerRe: Catch USB-Events Pin
Dr. Russell9-Feb-06 6:31
Dr. Russell9-Feb-06 6:31 
Set the GUID ( DEV_BROADCAST_DEVICEINTERFACE.dbcc_classguid ) to the class of devices that you want to monitor. That will take some digging on your part to discover the proper GUIDs

DEV_BROADCAST_DEVICEINTERFACE devBroadcastDeviceInterface;
ZeroMemory( &devBroadcastDeviceInterface, sizeof( devBroadcastDeviceInterface ));
devBroadcastDeviceInterface.dbcc_size = sizeof(DEV_BROADCAST_DEVICEINTERFACE);
devBroadcastDeviceInterface.dbcc_devicetype = DBT_DEVTYP_DEVICEINTERFACE;
devBroadcastDeviceInterface.dbcc_classguid = GUID_DEVINTERFACE_USB_DEVICE;//GUID_DEVINTERFACE_HID
m_hDevNotify = RegisterDeviceNotification ( g_hWnd, &devBroadcastDeviceInterface, DEVICE_NOTIFY_WINDOW_HANDLE );


GeneralRe: Catch USB-Events Pin
Requiem Sollar9-Feb-06 9:23
Requiem Sollar9-Feb-06 9:23 
Questionhow to retrieve primary keys from Ms.Access with ODBC connection Pin
Issa Salama9-Feb-06 5:25
Issa Salama9-Feb-06 5:25 
AnswerRe: how to retrieve primary keys from Ms.Access with ODBC connection Pin
David Crow9-Feb-06 7:19
David Crow9-Feb-06 7:19 
QuestionHow to create Two Dimensional Array Pin
zahid_ash9-Feb-06 4:47
zahid_ash9-Feb-06 4:47 
AnswerRe: How to create Two Dimensional Array Pin
toxcct9-Feb-06 4:51
toxcct9-Feb-06 4:51 
GeneralRe: How to create Two Dimensional Array Pin
zahid_ash9-Feb-06 5:48
zahid_ash9-Feb-06 5:48 
GeneralRe: How to create Two Dimensional Array Pin
zahid_ash9-Feb-06 6:10
zahid_ash9-Feb-06 6:10 
GeneralRe: How to create Two Dimensional Array Pin
Rage9-Feb-06 7:17
professionalRage9-Feb-06 7:17 
GeneralRe: How to create Two Dimensional Array Pin
zahid_ash9-Feb-06 7:26
zahid_ash9-Feb-06 7:26 
GeneralRe: How to create Two Dimensional Array Pin
Rage9-Feb-06 7:37
professionalRage9-Feb-06 7:37 
AnswerRe: How to create Two Dimensional Array Pin
David Crow9-Feb-06 7:41
David Crow9-Feb-06 7:41 
GeneralRe: How to create Two Dimensional Array Pin
Rage9-Feb-06 8:18
professionalRage9-Feb-06 8:18 
AnswerRe: How to create Two Dimensional Array Pin
ThatsAlok10-Feb-06 0:16
ThatsAlok10-Feb-06 0:16 
QuestionUrgent help required!!! Pin
NeerajN9-Feb-06 4:47
NeerajN9-Feb-06 4:47 
QuestionListBox Pin
Mike Winter9-Feb-06 4:11
Mike Winter9-Feb-06 4:11 
AnswerRe: ListBox Pin
#realJSOP9-Feb-06 4:19
professional#realJSOP9-Feb-06 4:19 
GeneralRe: ListBox Pin
Mike Winter9-Feb-06 5:02
Mike Winter9-Feb-06 5: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.