KnowHowLangs
(Unterschied zwischen Versionen)
(→Snippets) |
(→Tutorials) |
||
| Zeile 8: | Zeile 8: | ||
** [http://msdn.microsoft.com/en-us/library/52cs05fz(VS.80).aspx Library Reference] | ** [http://msdn.microsoft.com/en-us/library/52cs05fz(VS.80).aspx Library Reference] | ||
| - | === Tutorials === | + | === Tutorials === |
| + | * [http://www.cplusplus.com/doc/tutorial/ C++ Tutorial] | ||
| + | * [http://tutorial.schornboeck.net/inhalt.htm C++ Tutorial (deutsch)] | ||
| + | * [http://www.onlinetutorials.de/cpp-index.htm Liste mit weiteren Tutorials] | ||
| + | |||
=== FAQs === | === FAQs === | ||
=== Foren === | === Foren === | ||
Version vom 13:53, 14. Sep. 2009
Inhaltsverzeichnis |
C++
Referenzen
Tutorials
FAQs
Foren
Snippets
CString CXmlNodeList::GetAttribute( int iItem, LPCTSTR strAttributeName )
{
CXmlElementPtr pElement = m_pNodeList->Getitem( iItem );
VARIANT varValue = pElement->getAttribute( _bstr_t( strAttributeName ) );
if( varValue.bstrVal != NULL )
return CString( varValue );
else
return CString( _T("") );
}