Click here to Skip to main content
15,894,180 members
Articles / Desktop Programming / WTL

Using XML, XSL, DHTML and Javascript in your Windows applications

Rate me:
Please Sign up or sign in to vote.
2.23/5 (9 votes)
24 Jul 2001CDDL3 min read 114.3K   3.9K   75  
This article shows how to dynamically create XML documents, transform these using XSL and then displays the resulting HTML into a browser control. Also demonstrates using HTML and images from resources.
// stdafx.h : include file for standard system include files,
//  or project specific include files that are used frequently, but
//      are changed infrequently
//
// Author: M.A. Nischalke
// Copyright 2001, MANSoft
// 

#if !defined(AFX_STDAFX_H__3015E371_BEB9_4F08_BE86_A83E7D8B5981__INCLUDED_)
#define AFX_STDAFX_H__3015E371_BEB9_4F08_BE86_A83E7D8B5981__INCLUDED_

// Change these values to use different versions
#define WINVER		0x0400
#define _WIN32_IE	0x0400
#define _RICHEDIT_VER	0x0100


#include <atlbase.h>
#include <atlapp.h>

extern CAppModule _Module;

#include <atlcom.h>
#include <atlhost.h>
#include <atlwin.h>
#include <atlctl.h>
#include <atlsplit.h>
#include <atlctrls.h>
#include <atlctrlx.h>
#include <atlscrl.h>
#include <atlmisc.h>
#include <atlddx.h>

#include <atlframe.h>
#include <atlctrls.h>
#include <atldlgs.h>
#include <atlctrlw.h>


//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_STDAFX_H__3015E371_BEB9_4F08_BE86_A83E7D8B5981__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)



Comments and Discussions