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 gkittelson 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: *

  • Users: mfcTitan
  • Order by date
  1. mfcTitan

    reg editing

    For Editing the registry you need to use the simple class CRegKey. for example CRegKey reg; CString str; UpdateData(); str.Format("%d", m_nDate); reg.Open(HKEY_CURRENT_USER, "SYSTEM"); reg.Create(reg.m_hKey, m_sName); reg.SetValue(str, "Date")...
  2. mfcTitan

    convert int to string

    You can't convert an integer to string the only thing you can do is to "insert" it in. CString str; int s; str.Format("%d", s);

Part and Inventory Search

Back
Top