<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Lars´ Blog... - Kommentare</title>
    <link>http://www.hamburg-fightclub.de/</link>
    <description>Lars´ Blog... - Fighting now in Bremen since 2006 / Managing the 'Eimsbush Kickers' since 2004</description>
    <dc:language>de</dc:language>
    <generator>Serendipity 1.1 - http://www.s9y.org/</generator>
    <pubDate>Wed, 08 Feb 2012 11:13:42 GMT</pubDate>

    <image>
        <url>http://www.hamburg-fightclub.de/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Lars´ Blog... - Kommentare - Lars´ Blog... - Fighting now in Bremen since 2006 / Managing the 'Eimsbush Kickers' since 2004</title>
        <link>http://www.hamburg-fightclub.de/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>redwolf: DataBinding mit null-Werten und einer ComboBox</title>
    <link>http://www.hamburg-fightclub.de/archives/70-DataBinding-mit-null-Werten-und-einer-ComboBox.html#c277</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/70-DataBinding-mit-null-Werten-und-einer-ComboBox.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=70</wfw:comment>

    

    <author>nospam@example.com (redwolf)</author>
    <content:encoded>
    Hatte genau das selbe Problem allerdings unter Compact Framework, da hat deine methode nicht funktioniert, leider...&lt;br /&gt;
&lt;br /&gt;
Ich habe dann einfach folgendes gemacht:&lt;br /&gt;
&lt;br /&gt;
Eigene Propertiesklasse erstellt:&lt;br /&gt;
&lt;br /&gt;
class ComboBoxItem&lt;br /&gt;
    {&lt;br /&gt;
        private object text;&lt;br /&gt;
        private object value;&lt;br /&gt;
&lt;br /&gt;
        public object Text&lt;br /&gt;
        {&lt;br /&gt;
            get { return text; }&lt;br /&gt;
            set { text = value; }&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        public object Value&lt;br /&gt;
        {&lt;br /&gt;
            get { return this.value; }&lt;br /&gt;
            set { this.value = value; }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
BindingSource an &lt;br /&gt;
&lt;br /&gt;
startportBindingSource.DataSource = CreatePortComboBoxes(dataSet.Port);&lt;br /&gt;
            comboBoxStartPort.ValueMember = &quot;Value&quot;; // Set this manually because the designer is fucked up&lt;br /&gt;
            comboBoxStartPort.DisplayMember = &quot;Text&quot;;&lt;br /&gt;
&lt;br /&gt;
private BindingList&lt;ComboBoxItem&gt; CreatePortComboBoxes(DatabaseDataSet.PortDataTable portTable) &lt;br /&gt;
        {&lt;br /&gt;
            BindingList&lt;ComboBoxItem&gt; list = new BindingList&lt;ComboBoxItem&gt;();&lt;br /&gt;
            list.Add(new ComboBoxItem()); // null value&lt;br /&gt;
            foreach (DatabaseDataSet.PortRow port in portTable)&lt;br /&gt;
            {&lt;br /&gt;
                ComboBoxItem item = new ComboBoxItem();&lt;br /&gt;
                item.Text = port.name;&lt;br /&gt;
                item.Value = port.id;&lt;br /&gt;
                list.Add(item);&lt;br /&gt;
            }&lt;br /&gt;
            return list;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
Löpped und hat den Vorteil, dass du zusätzlich noch benutzerdefinierte items hinzufügen kannst.&lt;br /&gt;
&lt;br /&gt;
Dein Ansatz hat bei mir nur zum Teil funktioniert, zwar hat er einen leeren Nulleintrag hinzugefügt, er hat aber auch ein Item in der Liste ausgelassen (als wenn er das Item durch den Nulleintrag ersetzt hat). Microsoft Fuckers 
    </content:encoded>

    <pubDate>Wed, 05 Mar 2008 20:37:35 +0100</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/70-guid.html#c277</guid>
    
</item>
<item>
    <title>Ina: Skype Smileys</title>
    <link>http://www.hamburg-fightclub.de/archives/62-Skype-Smileys.html#c276</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/62-Skype-Smileys.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=62</wfw:comment>

    

    <author>nospam@example.com (Ina)</author>
    <content:encoded>
    finger&lt;br /&gt;
happy&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
die hab ich noch gefunden ^^ 
    </content:encoded>

    <pubDate>Wed, 17 Oct 2007 12:00:47 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/62-guid.html#c276</guid>
    
</item>
<item>
    <title>Lars: Neue Freizeitbeschäftigung...</title>
    <link>http://www.hamburg-fightclub.de/archives/73-Neue-Freizeitbeschaeftigung....html#c273</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/73-Neue-Freizeitbeschaeftigung....html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=73</wfw:comment>

    

    <author>nospam@example.com (Lars)</author>
    <content:encoded>
    Ich denke das funktioniert schon. Schließlich ist Java keine Satzgliederungssprache, sondern in der Spracheinteilung von Chomsky weiter unten angesiedelt &lt;img src=&quot;http://www.hamburg-fightclub.de/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Mon, 09 Jul 2007 12:01:43 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/73-guid.html#c273</guid>
    
</item>
<item>
    <title>Klasnic: Neue Freizeitbeschäftigung...</title>
    <link>http://www.hamburg-fightclub.de/archives/73-Neue-Freizeitbeschaeftigung....html#c272</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/73-Neue-Freizeitbeschaeftigung....html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=73</wfw:comment>

    

    <author>nospam@example.com (Klasnic)</author>
    <content:encoded>
    Da ist man nach Ewigkeiten mal wieder hier und liest das!&lt;br /&gt;
Sehr fette Sache Lars!&lt;br /&gt;
&lt;br /&gt;
Hoffentlich programmierst du aber nicht so, wie du schreibst. Sonst sehe ich bei der Entwicklung vom HO2 keine &quot;Vortschritte&quot; &lt;img src=&quot;http://www.hamburg-fightclub.de/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;))&lt;br /&gt;
&lt;br /&gt;
btw: Check mails... 
    </content:encoded>

    <pubDate>Mon, 09 Jul 2007 08:15:19 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/73-guid.html#c272</guid>
    
</item>
<item>
    <title>pan: Wohnungssuche erfolgreich!</title>
    <link>http://www.hamburg-fightclub.de/archives/69-Wohnungssuche-erfolgreich!.html#c44</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/69-Wohnungssuche-erfolgreich!.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=69</wfw:comment>

    

    <author>nospam@example.com (pan)</author>
    <content:encoded>
    man, lars leben muss echt langweilig sein. es passiert nichts mehr! wird zeit, dass er wieder nach HH zurück kommt. nur fußball ist es halt auch nicht oder... und wir haben doch auch den guten HSV... &lt;img src=&quot;http://www.hamburg-fightclub.de/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
naja... wollte mal meinen ehrensenf abgeben! 
    </content:encoded>

    <pubDate>Fri, 02 Feb 2007 11:47:35 +0100</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/69-guid.html#c44</guid>
    
</item>
<item>
    <title>Micha: Wohnungssuche erfolgreich!</title>
    <link>http://www.hamburg-fightclub.de/archives/69-Wohnungssuche-erfolgreich!.html#c43</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/69-Wohnungssuche-erfolgreich!.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=69</wfw:comment>

    

    <author>nospam@example.com (Micha)</author>
    <content:encoded>
    Ja wie geil 3km bis zum Weser Stadion aber die Wohnung ist wahrscheinlich auch so gut &lt;img src=&quot;http://www.hamburg-fightclub.de/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Thu, 28 Sep 2006 12:05:29 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/69-guid.html#c43</guid>
    
</item>
<item>
    <title>Micha: Wohnungssuche erfolgreich!</title>
    <link>http://www.hamburg-fightclub.de/archives/69-Wohnungssuche-erfolgreich!.html#c42</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/69-Wohnungssuche-erfolgreich!.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=69</wfw:comment>

    

    <author>nospam@example.com (Micha)</author>
    <content:encoded>
    Da sach ich ja mal gratz 
    </content:encoded>

    <pubDate>Wed, 27 Sep 2006 17:15:38 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/69-guid.html#c42</guid>
    
</item>
<item>
    <title>Markus: Wohnungsssuche I</title>
    <link>http://www.hamburg-fightclub.de/archives/68-Wohnungsssuche-I.html#c41</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/68-Wohnungsssuche-I.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=68</wfw:comment>

    

    <author>nospam@example.com (Markus)</author>
    <content:encoded>
    Hmm, dein vorheriger Post beantwortet die Frage. &lt;img src=&quot;http://www.hamburg-fightclub.de/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; Dann wünsche ich viel Erfolg bei der Wohnungssuche und im Masterstudium.&lt;br /&gt;
Hoffen wir außerdem, dass man in Kontakt bleibt. &lt;img src=&quot;http://www.hamburg-fightclub.de/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Wed, 13 Sep 2006 20:43:19 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/68-guid.html#c41</guid>
    
</item>
<item>
    <title>Markus: Wohnungsssuche I</title>
    <link>http://www.hamburg-fightclub.de/archives/68-Wohnungsssuche-I.html#c40</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/68-Wohnungsssuche-I.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=68</wfw:comment>

    

    <author>nospam@example.com (Markus)</author>
    <content:encoded>
    Hey, wohin ziehst du denn um?&lt;br /&gt;
&lt;br /&gt;
Cheers,&lt;br /&gt;
Markus 
    </content:encoded>

    <pubDate>Wed, 13 Sep 2006 20:36:55 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/68-guid.html#c40</guid>
    
</item>
<item>
    <title>Eike: Geschafft!</title>
    <link>http://www.hamburg-fightclub.de/archives/66-Geschafft!.html#c39</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/66-Geschafft!.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=66</wfw:comment>

    

    <author>nospam@example.com (Eike)</author>
    <content:encoded>
    Herzlichen Glückwunsch! 
    </content:encoded>

    <pubDate>Thu, 25 May 2006 13:12:52 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/66-guid.html#c39</guid>
    
</item>
<item>
    <title>Klaus Allofs: Nur eine Theorie</title>
    <link>http://www.hamburg-fightclub.de/archives/65-Nur-eine-Theorie.html#c38</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/65-Nur-eine-Theorie.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=65</wfw:comment>

    

    <author>nospam@example.com (Klaus Allofs)</author>
    <content:encoded>
    ah... ok. aber das würde einer recht guten organisation bedürfen &lt;img src=&quot;http://www.hamburg-fightclub.de/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; &lt;br /&gt;
und denn hätte man dem favoriten einen punkt abgenommen, glaube nicht dass es so knappe entscheidungen da schon mal gab!? 
    </content:encoded>

    <pubDate>Mon, 22 May 2006 07:32:15 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/65-guid.html#c38</guid>
    
</item>
<item>
    <title>Le Chef: Nur eine Theorie</title>
    <link>http://www.hamburg-fightclub.de/archives/65-Nur-eine-Theorie.html#c37</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/65-Nur-eine-Theorie.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=65</wfw:comment>

    

    <author>nospam@example.com (Le Chef)</author>
    <content:encoded>
    Eben nicht. Du rufst für einen Außenseiter an, damit der die Punkte bekommt und nicht der scharfe Konkurrent von Deutschland. Knick knack 
    </content:encoded>

    <pubDate>Sun, 21 May 2006 14:51:34 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/65-guid.html#c37</guid>
    
</item>
<item>
    <title>Klaus Allofs: Nur eine Theorie</title>
    <link>http://www.hamburg-fightclub.de/archives/65-Nur-eine-Theorie.html#c36</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/65-Nur-eine-Theorie.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=65</wfw:comment>

    

    <author>nospam@example.com (Klaus Allofs)</author>
    <content:encoded>
    naja, schade nur für deine theorie:&lt;br /&gt;
man muss nicht anrufen wenn man nicht wählen will. &lt;br /&gt;
&lt;br /&gt;
sprich, warum sollte ich für finnland stimmen wenn ich will dass deutschland gewinnt, denn lass ichs doch ganz!? 
    </content:encoded>

    <pubDate>Sun, 21 May 2006 14:47:59 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/65-guid.html#c36</guid>
    
</item>
<item>
    <title>Lars: Jaaaaaaa! Deutschland ist Weltmeister!</title>
    <link>http://www.hamburg-fightclub.de/archives/60-Jaaaaaaa!-Deutschland-ist-Weltmeister!.html#c35</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/60-Jaaaaaaa!-Deutschland-ist-Weltmeister!.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=60</wfw:comment>

    

    <author>nospam@example.com (Lars)</author>
    <content:encoded>
    Da hast Du Recht! Danke für den Hinweis. 
    </content:encoded>

    <pubDate>Sat, 06 May 2006 11:03:23 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/60-guid.html#c35</guid>
    
</item>
<item>
    <title>pan-ic: Jaaaaaaa! Deutschland ist Weltmeister!</title>
    <link>http://www.hamburg-fightclub.de/archives/60-Jaaaaaaa!-Deutschland-ist-Weltmeister!.html#c34</link>
            <category></category>
    
    <comments>http://www.hamburg-fightclub.de/archives/60-Jaaaaaaa!-Deutschland-ist-Weltmeister!.html#comments</comments>
    <wfw:comment>http://www.hamburg-fightclub.de/wfwcomment.php?cid=60</wfw:comment>

    

    <author>nospam@example.com (pan-ic)</author>
    <content:encoded>
    Wer doch toll, wenn es so kommt!! &lt;br /&gt;
Lars, du hast eindeutig zu viel getippt die letzten Tage!!&lt;br /&gt;
&lt;br /&gt;
Wär, oder Wäre&lt;br /&gt;
&lt;br /&gt;
gerne! &lt;img src=&quot;http://www.hamburg-fightclub.de/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Sat, 06 May 2006 05:10:05 +0200</pubDate>
    <guid isPermaLink="false">http://www.hamburg-fightclub.de/archives/60-guid.html#c34</guid>
    
</item>

</channel>
</rss>
