Serializing All Data in a Window into XML | CodeGuru

Serializing All Data in a Window into XML

Environment: Visual C++ 6.0 SP4 Windows 2000 Create an empty Visual C++ 6.0 dialog-based application using the MFC wizard. Add as many different controls as possible to the application (include edit boxes, drop down list controls, check boxes, radio buttons, date control, etc.). Add a button called IDC_SERIALIZE and double-click on it to add the […]

Written By
CodeGuru Staff
CodeGuru Staff
Nov 1, 2001
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: Visual C++ 6.0 SP4 Windows 2000

Create an empty Visual C++ 6.0 dialog-based application using the MFC wizard. Add as many different controls as possible to the application (include edit boxes, drop down list controls, check boxes, radio buttons, date control, etc.).

Add a button called IDC_SERIALIZE and double-click on it to add the function below. Compile, run and fill in random data. When you click the serialize button, the application will get all data filled from all the controls and copy them into a CString that gets displayed. This is very useful for those times when you need to capture all data in a window.

Note: This method does not handle all the different control types available.

void CTestDlg::OnSerialize()
{
  int nCount = 0;
  CString csText, csXMLReport;
  CWnd* pWndInitial = GetFocus();
  CWnd* pWnd = pWndInitial;
  char Name[51];
  csXMLReport = “<?xml version=’1.0′?>\n”;
  csXMLReport +=
     “<report xmlns_xsi=’http://www.w3.org/2001/XMLSchema-instance’>\n”;
  ::SendMessage(this->m_hWnd, WM_NEXTDLGCTL, 0, 0);
  pWnd = GetFocus();
  GetClassName(pWnd->m_hWnd, Name, 50);
  while (pWnd != pWndInitial)
  {
    pWnd->GetWindowText(csText);
    csText.TrimLeft();
    if (strcmp(Name,”Button”) == 0)
    {
      if (IsDlgButtonChecked(pWnd->GetDlgCtrlID()))
      {
        csXMLReport += “<” + csText + “>”;
        csXMLReport += “1”;
        csXMLReport += “</” + csText + “>\n”;
      }
      else
      {
        CheckDlgButton(pWnd->GetDlgCtrlID(), BST_CHECKED);
        if (IsDlgButtonChecked(pWnd->GetDlgCtrlID()))
        {
          csXMLReport += “<” + csText + “>”;
          csXMLReport += “0”;
          csXMLReport += “</” + csText + “>\n”;
        }
      }
    }
    else if (strcmp(Name,”Edit”) == 0)
    {
      if (csText == “”)
        csText = “NULL”;
      csXMLReport += “<” + csText + “/>\n”;
    }
    else if (strcmp(Name,”SysDateTimePick32″) == 0)
    {
      csXMLReport += “<Date>” + csText + “</Date>\n”;
    }
    ::SendMessage(this->m_hWnd, WM_NEXTDLGCTL, 0, 0);
    pWnd = GetFocus();
    GetClassName(pWnd->m_hWnd, Name, 50);
  }
  csXMLReport += “</report>”;
  MessageBox(csXMLReport, MB_OK, NULL);
}

Downloads

None

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.