Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. krussell1711

    How to get Monitor Information

    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
  2. krussell1711

    BIOS Info

    Thanks. ArkM, do you know of any third party routines or components that I could use? Thanks again. Krussell1711
  3. krussell1711

    BIOS Info

    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
  4. krussell1711

    Assembly language in VC++?

    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
  5. krussell1711

    cstring to char*

    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 ...
  6. krussell1711

    cstring to char*

    uolj, you are right. it should be iSize = str.GetLength() + 1; //get size of string Thanks for the correction. Krussell1711
  7. krussell1711

    How can I get a list of my installed programs?

    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
  8. krussell1711

    cstring to char*

    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.
  9. krussell1711

    How can I get a list of my installed programs?

    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

Part and Inventory Search

Back
Top