CodeGuru
Earthweb Search
Login Forums Wireless Jars Gamelan Developer.com
CodeGuru Navigation
RSS Feeds

RSSAll

RSSVC++/C++

RSS.NET/C#

RSSVB

See more EarthWeb Network feeds

follow us on Twitter

Member Sign In
User ID:
Password:
Remember Me:
Forgot Password?
Not a member?
Click here for more information and to register.

Become a Marketplace Partner

jobs.internet.com

internet.commerce
Partners & Affiliates
















Home >> Visual C++ / C++ >> Data >> Miscellaneous >> XML


Serializing All Data in a Window into XML
Rating:

Bassam Abdul-Baki (view profile)
November 1, 2001


(continued)




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

Tools:
Add www.codeguru.com to your favorites
Add www.codeguru.com to your browser search box
IE 7 | Firefox 2.0 | Firefox 1.5.x
Receive news via our XML/RSS feed







RATE THIS ARTICLE:   Excellent  Very Good  Average  Below Average  Poor  

(You must be signed in to rank an article. Not a member? Click here to register)

Latest Comments:
Restoring data - Legacy CodeGuru (11/09/2001)
Maintaining state - Legacy CodeGuru (11/04/2001)
good practice - Legacy CodeGuru (11/01/2001)

View All Comments
Add a Comment:
Title:
Comment:
Pre-Formatted: Check this if you want the text to display with the formatting as typed (good for source code)



(You must be signed in to comment on an article. Not a member? Click here to register)

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs