Click here to Skip to main content
16,005,149 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionLook for:source code for Database table design Pin
wxshzf8-Dec-05 14:57
wxshzf8-Dec-05 14:57 
AnswerRe: Look for:source code for Database table design Pin
wxshzf8-Dec-05 20:11
wxshzf8-Dec-05 20:11 
AnswerRe: Look for:source code for Database table design Pin
kakan8-Dec-05 21:06
professionalkakan8-Dec-05 21:06 
QuestionCEdit transparent background - text gets screwy Pin
Christian Graus8-Dec-05 11:48
protectorChristian Graus8-Dec-05 11:48 
AnswerRe: CEdit transparent background - text gets screwy Pin
Christian Graus8-Dec-05 12:02
protectorChristian Graus8-Dec-05 12:02 
GeneralRe: CEdit transparent background - text gets screwy Pin
PJ Arends8-Dec-05 12:34
professionalPJ Arends8-Dec-05 12:34 
GeneralRe: CEdit transparent background - text gets screwy Pin
Christian Graus8-Dec-05 12:42
protectorChristian Graus8-Dec-05 12:42 
QuestionWindows Enumeration Pin
Manu_818-Dec-05 9:52
Manu_818-Dec-05 9:52 
Hi,
I am doing a project in win32. When I start the app, I want to find out the details of all the monitors that are connected to the system. ie. the windows monitor number, if it a usb or serial monitor, etc...
I am doing the following...
<br />
 hDevInfo = SetupDiGetClassDevs(NULL,<br />
        REGSTR_VAL_DISPLAY, // Enumerator<br />
        0,<br />
        DIGCF_PRESENT | DIGCF_ALLCLASSES );<br />
<br />
    DeviceInfoData.cbSize = sizeof(SP_DEVINFO_DATA);<br />
    for (i=0;SetupDiEnumDeviceInfo(hDevInfo,i,<br />
        &DeviceInfoData);i++)<br />
    {<br />
        DWORD DataT = REG_SZ;<br />
        LPTSTR buffer = NULL;<br />
        DWORD buffersize = 0;<br />
	    while (!SetupDiGetDeviceRegistryProperty(<br />
            hDevInfo,<br />
            &DeviceInfoData,<br />
            SPDRP_LOCATION_INFORMATION ,//, SPDRP_DEVICEDESC SPDRP_FRIENDLYNAME <br />
            &DataT,<br />
            (PBYTE)buffer,<br />
            buffersize,<br />
            &buffersize))<br />
        .........<br />


but how can I find out the windows monitor number, and some other details like serial/usb of model number etc...
Questionclass subclass instance problem Pin
tbrake8-Dec-05 9:14
tbrake8-Dec-05 9:14 
AnswerRe: class subclass instance problem Pin
Bob Stanneveld8-Dec-05 9:41
Bob Stanneveld8-Dec-05 9:41 
GeneralRe: class subclass instance problem Pin
tbrake8-Dec-05 9:52
tbrake8-Dec-05 9:52 
GeneralRe: class subclass instance problem Pin
Bob Stanneveld8-Dec-05 10:44
Bob Stanneveld8-Dec-05 10:44 
QuestionCannot hook FindNextFile Pin
gamitech8-Dec-05 6:37
gamitech8-Dec-05 6:37 
AnswerRe: Cannot hook FindNextFile Pin
Chris Losinger8-Dec-05 7:51
professionalChris Losinger8-Dec-05 7:51 
GeneralRe: Cannot hook FindNextFile Pin
gamitech8-Dec-05 8:46
gamitech8-Dec-05 8:46 
GeneralRe: Cannot hook FindNextFile Pin
Chris Losinger8-Dec-05 8:56
professionalChris Losinger8-Dec-05 8:56 
GeneralRe: Cannot hook FindNextFile Pin
ThatsAlok8-Dec-05 20:06
ThatsAlok8-Dec-05 20:06 
GeneralRe: Cannot hook FindNextFile Pin
gamitech10-Dec-05 4:27
gamitech10-Dec-05 4:27 
GeneralRe: Cannot hook FindNextFile Pin
ThatsAlok11-Dec-05 19:27
ThatsAlok11-Dec-05 19:27 
GeneralRe: Cannot hook FindNextFile Pin
gamitech15-Dec-05 3:16
gamitech15-Dec-05 3:16 
GeneralRe: Cannot hook FindNextFile Pin
ThatsAlok15-Dec-05 17:11
ThatsAlok15-Dec-05 17:11 
QuestionHalt processing until button is clicked Pin
Simon Cornish8-Dec-05 5:40
Simon Cornish8-Dec-05 5:40 
AnswerRe: Halt processing until button is clicked Pin
toxcct8-Dec-05 5:55
toxcct8-Dec-05 5:55 
GeneralRe: Halt processing until button is clicked Pin
Simon Cornish8-Dec-05 6:40
Simon Cornish8-Dec-05 6:40 
GeneralRe: Halt processing until button is clicked Pin
toxcct8-Dec-05 21:09
toxcct8-Dec-05 21:09 

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.