KnowHowLangs
(Unterschied zwischen Versionen)
(→Tutorials) |
(→FAQs) |
||
| Zeile 14: | Zeile 14: | ||
=== FAQs === | === FAQs === | ||
| + | * [http://www.parashift.com/c++-faq-lite/ C++ FAQ Lite] | ||
| + | * [http://www.research.att.com/~bs/bs_faq.html Bjarne Stroustrup's FAQ] | ||
| + | * [http://www.research.att.com/~bs/bs_faq2.html Bjarne Stroustrup's C++ Style and Technique FAQ] | ||
| + | |||
=== Foren === | === Foren === | ||
=== Snippets === | === Snippets === | ||
Version vom 13:56, 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("") );
}