Click here to Skip to main content
15,903,203 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Get IP address of computer Pin
waxie22-Jan-06 18:52
waxie22-Jan-06 18:52 
GeneralRe: Get IP address of computer Pin
Owner drawn22-Jan-06 18:57
Owner drawn22-Jan-06 18:57 
GeneralRe: Get IP address of computer Pin
waxie22-Jan-06 19:50
waxie22-Jan-06 19:50 
GeneralRe: Get IP address of computer Pin
Owner drawn22-Jan-06 19:59
Owner drawn22-Jan-06 19:59 
GeneralRe: Get IP address of computer Pin
waxie22-Jan-06 20:11
waxie22-Jan-06 20:11 
GeneralRe: Get IP address of computer Pin
Owner drawn22-Jan-06 20:18
Owner drawn22-Jan-06 20:18 
GeneralRe: Get IP address of computer Pin
waxie22-Jan-06 20:27
waxie22-Jan-06 20:27 
QuestionRetrieving Hardware Information (e.g. Gfx Card Memory) Pin
AmorphisOne20-Jan-06 0:05
AmorphisOne20-Jan-06 0:05 
Hi!
Can anyone point me to the solution of the following problem :
i want to retrieve information about the gfx card installed in the system (driver, driverversion, physical ram, chip type, etc) as well as information about other hardware-components and drivers.

For the display i currently use

INT cnt = 0;
FLAG ret = TRUE;
while (ret)
{
DISPLAY_DEVICE ddev;
ddev.cb = sizeof(DISPLAY_DEVICE);
ret = EnumDisplayDevices(NULL, cnt,&ddev,0);
if ((ret) && (!(ddev.StateFlags & DISPLAY_DEVICE_MIRRORING_DRIVER)))
{ // no need for mirroring drivers (ex. netmeeting driver)
DEVMODE devMode;
devMode.dmSize = sizeof(DEVMODE);
EnumDisplaySettings(ddev.DeviceName,ENUM_CURRENT_SETTINGS,&devMode);

/*
Process device Info
*/

} // if (ret)
cnt++;
} // while (ret)

but the gathered information here is insufficient...

My application is a non-MFC application, so i am looking for plain SDK mechanisms Smile | :)

Thanks in advance

-- modified at 6:07 Friday 20th January, 2006
AnswerRe: Retrieving Hardware Information (e.g. Gfx Card Memory) Pin
Toby Opferman20-Jan-06 7:45
Toby Opferman20-Jan-06 7:45 
GeneralRe: Retrieving Hardware Information (e.g. Gfx Card Memory) Pin
AmorphisOne24-Jan-06 1:36
AmorphisOne24-Jan-06 1:36 
QuestionGet EXE Path API Pin
Axonn Echysttas19-Jan-06 23:50
Axonn Echysttas19-Jan-06 23:50 
AnswerRe: Get EXE Path API Pin
khan++20-Jan-06 0:04
khan++20-Jan-06 0:04 
GeneralRe: Get EXE Path API Pin
Axonn Echysttas20-Jan-06 0:15
Axonn Echysttas20-Jan-06 0:15 
Questioninline method Visual C++ 6 Pin
RadioOpa19-Jan-06 23:48
RadioOpa19-Jan-06 23:48 
AnswerRe: inline method Visual C++ 6 Pin
Cedric Moonen19-Jan-06 23:58
Cedric Moonen19-Jan-06 23:58 
GeneralRe: inline method Visual C++ 6 Pin
RadioOpa20-Jan-06 0:01
RadioOpa20-Jan-06 0:01 
GeneralRe: inline method Visual C++ 6 Pin
Cedric Moonen20-Jan-06 0:04
Cedric Moonen20-Jan-06 0:04 
GeneralRe: inline method Visual C++ 6 Pin
RadioOpa20-Jan-06 0:12
RadioOpa20-Jan-06 0:12 
AnswerRe: inline method Visual C++ 6 Pin
RadioOpa20-Jan-06 0:44
RadioOpa20-Jan-06 0:44 
GeneralRe: inline method Visual C++ 6 Pin
toxcct20-Jan-06 0:04
toxcct20-Jan-06 0:04 
GeneralRe: inline method Visual C++ 6 Pin
Owner drawn20-Jan-06 1:21
Owner drawn20-Jan-06 1:21 
AnswerRe: inline method Visual C++ 6 Pin
Michael Dunn20-Jan-06 6:58
sitebuilderMichael Dunn20-Jan-06 6:58 
AnswerRe: inline method Visual C++ 6 Pin
RadioOpa20-Jan-06 21:34
RadioOpa20-Jan-06 21:34 
GeneralRe: inline method Visual C++ 6 Pin
Michael Dunn21-Jan-06 22:15
sitebuilderMichael Dunn21-Jan-06 22:15 
Questionhow to deselect all the previous selected item in listctrl Pin
baldha rakesh19-Jan-06 23:44
baldha rakesh19-Jan-06 23:44 

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.