KnowHowLangs
(Unterschied zwischen Versionen)
(→FAQs) |
(→FAQs) |
||
| Zeile 17: | Zeile 17: | ||
* [http://www.research.att.com/~bs/bs_faq.html Bjarne Stroustrup's FAQ] | * [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] | * [http://www.research.att.com/~bs/bs_faq2.html Bjarne Stroustrup's C++ Style and Technique FAQ] | ||
| + | * [http://www.mpdvc.de/html.htm FAQ: 'Microsoft Visual C++' (18.12.2004)] | ||
=== Foren === | === Foren === | ||
Version vom 13:57, 14. Sep. 2009
Inhaltsverzeichnis |
C++
Referenzen
Tutorials
FAQs
- C++ FAQ Lite
- Bjarne Stroustrup's FAQ
- Bjarne Stroustrup's C++ Style and Technique FAQ
- FAQ: 'Microsoft Visual C++' (18.12.2004)
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("") );
}