Hello, I need some sample code to get information about the monitor connect to local pc, like name, serial number, etc..
Any help would be greatly appreciated.
Krussell1711
Hi All,
I need to get specific hardware info from the bios like motherboard, chasis, chipset, bus, etc.
Other than wmi, is there a way for me to retrieve this information? If it is in the registry, let me know where to look.
Any help would be greatly appreciated.
Krussell1711
Hi all,
has anyone written x86 assembly code using vc++? I need to use smbios to get info about my pc. I am writing a program in which i need to get that information.
Thanks
Krussell1711
This how your code should look.
void chatAboutDlg::OnBnClickedSend()
{
int iSize;
char* p;
iSize = ipAddress.GetLength() + 1; //get size of string
p = (char*)malloc(iSize); //initialize char* to size of string
strcpy(p,ipAddress);
winChat = new winChatApp( 1200 ...
Thanks PerFnurt, that is what I needed. Can you also tell me how to get the icons associated with each program? Just like in the control panel.
Thanks
Krussell1711
A1METALHEAD, this is how I do my conversions.
CString str;
int iSize;
char p*;
str = "Hello";
iSize = str.GetLength(); //get size of string
p = (char*)malloc(iSize); //initialize char* to size of string
strcpy(p,str);
free(p);
I hope this helps.
Hi all,
I want to know how to get a list of all installed programs on my PC. Basically, I want to duplicate the add/remove program list and get the icon for each program in the list.
Any help would be greatly appreciated.
Thanks
Krussell1711
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.