KnowHowLangs
(Unterschied zwischen Versionen)
(→Referenzen) |
(→Delphi) |
||
| (Der Versionsvergleich bezieht 24 dazwischenliegende Versionen mit ein.) | |||
| Zeile 3: | Zeile 3: | ||
* [http://www.cppreference.com/wiki/ C++ Reference] | * [http://www.cppreference.com/wiki/ C++ Reference] | ||
* [http://www.cplusplus.com/reference/ C++ Library Reference] | * [http://www.cplusplus.com/reference/ C++ Library Reference] | ||
| - | |||
* [http://www.cppreference.com/wiki/stl/start STL Reference] | * [http://www.cppreference.com/wiki/stl/start STL Reference] | ||
| + | * [http://msdn.microsoft.com/en-us/library/60k1461a(VS.80).aspx Microsoft Visual C++ (MSDN)] | ||
| + | ** [http://msdn.microsoft.com/en-us/library/3bstk3k5.aspx C++ Reference] | ||
| + | ** [http://msdn.microsoft.com/en-us/library/52cs05fz(VS.80).aspx Library Reference] | ||
| + | |||
| + | === 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 === | ||
| + | * [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] | ||
| + | * [http://www.mpdvc.de/html.htm FAQ: 'Microsoft Visual C++' (18.12.2004)] | ||
| + | |||
=== Foren === | === Foren === | ||
| + | === Snippets === | ||
| + | <pre class='console'> | ||
| + | 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("") ); | ||
| + | } | ||
| + | </pre> | ||
== PHP == | == PHP == | ||
| + | === Know how === | ||
| + | [[PHPMemoryUsage|PHP Speicherverbrauch]] | ||
| + | |||
| + | [[PHPClasses|PHP Klassen für die Webentwicklung]] | ||
| + | |||
=== Referenzen === | === Referenzen === | ||
=== Tutorials === | === Tutorials === | ||
=== FAQs === | === FAQs === | ||
=== Foren === | === Foren === | ||
| + | |||
| + | == JavaScript == | ||
| + | === Tutorial === | ||
| + | *[[OOP mit JavaScript]] | ||
| + | *[[Spieleentwicklung mit JavaScript - Einleitung|Spieleentwicklung mit JavaScript]] | ||
| + | === Library === | ||
| + | *[[Vectors]] | ||
| + | == Delphi == | ||
| + | * [http://www.delphipraxis.net/dp_portal.php Delphi Praxis Forum] | ||
| + | * [http://www.destructor.de/xmlparser/index.htm Fast XML Parser] | ||
| + | * [http://www.itwriting.com/blog/304-sqlite-wrapper-for-delphi.html Wrapper for sqlite] | ||
| + | |||
| + | == Basic == | ||
| + | * [[HTML5-Basic]] | ||
Aktuelle Version vom 20:21, 23. Mär. 2011
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("") );
}
PHP
Know how
PHP Klassen für die Webentwicklung