<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:georss="http://www.georss.org/georss" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" version="2.0">
  <channel>
    <title>Levent YILDIZ</title>
    <link>http://www.leventyildiz.net/</link>
    <description>coding @ the speed of thought</description>
    <language>en-us</language>
    <copyright>Levent YILDIZ</copyright>
    <lastBuildDate>Thu, 12 Mar 2009 16:46:52 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.3.9074.18820</generator>
    <managingEditor>levent.yildiz@lgytech.com</managingEditor>
    <webMaster>levent.yildiz@lgytech.com</webMaster>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=177aea5b-c0a6-4123-9fd8-fa7623545659</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,177aea5b-c0a6-4123-9fd8-fa7623545659.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,177aea5b-c0a6-4123-9fd8-fa7623545659.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=177aea5b-c0a6-4123-9fd8-fa7623545659</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Assume you have a base class and another class derived from it. You have events defined
in base class so you wish to use them in the derived class.<br /><br /><span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">    <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">class</span> a<br />
    {<br />
        <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">delegate</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">void</span> Amanindelegate();<br />
        <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">event</span> Amanindelegate
Amanin;<br />
    }<br /><br />
    <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">class</span> b:a<br />
    {<br />
        <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">void</span> hey0()<br />
        {<br />
            <font color="#ff0000">Amanin();<br /></font>        }<br />
    }<br />
    <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">class</span> Program<br />
    {<br />
        <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">static</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">void</span> Main(<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">string</span>[]
args)<br />
        {<br />
            b b1=<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">new</span> b();<br />
            b1.Amanin+=<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">new</span> a.Amanindelegate(b1_Amanin);<br />
            b1.hey0();<br />
        }<br />
        <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">static</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">void</span> b1_Amanin()<br />
        {<br />
            Console.WriteLine(<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"aboovv"</span>);<br />
        }<br />
    }<br /></span></p>
        <p>
Here you have the mentioned error in hey0 method line Amanin();<br />
The best practice is as follows.<br /><br /></p>
        <pre>
          <span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">
            <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">class</span> a
{ <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">delegate</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">void</span> Amanindelegate(); <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">virtual</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">event</span> Amanindelegate
Amanin; } <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">class</span> b:a
{ <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">override</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">event</span> a.Amanindelegate
Amanin; <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">void</span> hey0()
{ Amanin(); } } <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">class</span> Program
{ <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">static</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">void</span> Main(<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">string</span>[]
args) { b b1=<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">new</span> b();
b1.Amanin+=<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">new</span> a.Amanindelegate(b1_Amanin);
b1.hey0(); } <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">static</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">void</span> b1_Amanin()
{ Console.WriteLine(<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"aboovv"</span>);
} } </span>
        </pre>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=177aea5b-c0a6-4123-9fd8-fa7623545659" />
      </body>
      <title>The event 'X' can only appear on the left hand side of += or -= (except when used from within the type 'X')</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,177aea5b-c0a6-4123-9fd8-fa7623545659.aspx</guid>
      <link>http://www.leventyildiz.net/2009/03/12/TheEventXCanOnlyAppearOnTheLeftHandSideOfOrExceptWhenUsedFromWithinTheTypeX.aspx</link>
      <pubDate>Thu, 12 Mar 2009 16:46:52 GMT</pubDate>
      <description>&lt;p&gt;
Assume you have a base class and another class derived from it. You have events defined
in base class so you wish to use them in the derived class.&lt;br&gt;
&lt;br&gt;
&lt;span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;class&lt;/span&gt; a&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;delegate&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;void&lt;/span&gt; Amanindelegate();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;event&lt;/span&gt; Amanindelegate
Amanin;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;class&lt;/span&gt; b:a&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;void&lt;/span&gt; hey0()&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;font color=#ff0000&gt;Amanin();&lt;br&gt;
&lt;/font&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;class&lt;/span&gt; Program&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;static&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;void&lt;/span&gt; Main(&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;string&lt;/span&gt;[]
args)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; b b1=&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; b();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; b1.Amanin+=&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; a.Amanindelegate(b1_Amanin);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; b1.hey0();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;static&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;void&lt;/span&gt; b1_Amanin()&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Console.WriteLine(&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"aboovv"&lt;/span&gt;);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
Here you have the mentioned error in hey0 method line Amanin();&lt;br&gt;
The best practice is as follows.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;pre&gt;&lt;span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;class&lt;/span&gt; a
{ &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;delegate&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;void&lt;/span&gt; Amanindelegate(); &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;virtual&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;event&lt;/span&gt; Amanindelegate
Amanin; } &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;class&lt;/span&gt; b:a
{ &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;override&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;event&lt;/span&gt; a.Amanindelegate
Amanin; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;void&lt;/span&gt; hey0()
{ Amanin(); } } &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;class&lt;/span&gt; Program
{ &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;static&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;void&lt;/span&gt; Main(&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;string&lt;/span&gt;[]
args) { b b1=&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; b();
b1.Amanin+=&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; a.Amanindelegate(b1_Amanin);
b1.hey0(); } &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;static&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;void&lt;/span&gt; b1_Amanin()
{ Console.WriteLine(&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"aboovv"&lt;/span&gt;);
} } &lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=177aea5b-c0a6-4123-9fd8-fa7623545659" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,177aea5b-c0a6-4123-9fd8-fa7623545659.aspx</comments>
      <category>Software</category>
    </item>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=2ef4db20-f7c8-41aa-ae29-62b9a18ad7ec</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,2ef4db20-f7c8-41aa-ae29-62b9a18ad7ec.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,2ef4db20-f7c8-41aa-ae29-62b9a18ad7ec.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=2ef4db20-f7c8-41aa-ae29-62b9a18ad7ec</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
If you are having troubles with installing/registering ReportViewer dll's either using
gacutil.exe or setup file, you can download the Microsoft Report Viewer Redistributable
2008 package from the following link.<br /><br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=CC96C246-61E5-4D9E-BB5F-416D75A1B9EF&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=CC96C246-61E5-4D9E-BB5F-416D75A1B9EF&amp;displaylang=en</a></p>
        <img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=2ef4db20-f7c8-41aa-ae29-62b9a18ad7ec" />
      </body>
      <title>Could not load file or assembly 'Microsoft.ReportViewer.WebForms</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,2ef4db20-f7c8-41aa-ae29-62b9a18ad7ec.aspx</guid>
      <link>http://www.leventyildiz.net/2009/02/03/CouldNotLoadFileOrAssemblyMicrosoftReportViewerWebForms.aspx</link>
      <pubDate>Tue, 03 Feb 2009 16:10:39 GMT</pubDate>
      <description>&lt;p&gt;
If you are having troubles with installing/registering ReportViewer dll's either using
gacutil.exe or setup file, you can download the Microsoft Report Viewer Redistributable
2008 package from the following link.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=CC96C246-61E5-4D9E-BB5F-416D75A1B9EF&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=CC96C246-61E5-4D9E-BB5F-416D75A1B9EF&amp;amp;displaylang=en&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=2ef4db20-f7c8-41aa-ae29-62b9a18ad7ec" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,2ef4db20-f7c8-41aa-ae29-62b9a18ad7ec.aspx</comments>
      <category>Software</category>
    </item>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=4574b16f-45d0-4a9f-aa6d-0d57bf387b29</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,4574b16f-45d0-4a9f-aa6d-0d57bf387b29.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,4574b16f-45d0-4a9f-aa6d-0d57bf387b29.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=4574b16f-45d0-4a9f-aa6d-0d57bf387b29</wfw:commentRss>
      <title>NetBT Error, EventID:4321</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,4574b16f-45d0-4a9f-aa6d-0d57bf387b29.aspx</guid>
      <link>http://www.leventyildiz.net/2009/01/20/NetBTErrorEventID4321.aspx</link>
      <pubDate>Tue, 20 Jan 2009 03:18:39 GMT</pubDate>
      <description>&lt;p&gt;
The name "Donaminname :1d" could not be registered on the Interface with IP address
X.X.X.X (windows 2003 DC or server). The machine with the IP address X.X.X.X (PDC
emulator) did not allow the name to be claimed by this machine.
&lt;/p&gt;
&lt;p&gt;
The solution is simple. type "nbtstat -r" on command prompt &amp; disable computer browser
service. It's an error caused by wins. 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=4574b16f-45d0-4a9f-aa6d-0d57bf387b29" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,4574b16f-45d0-4a9f-aa6d-0d57bf387b29.aspx</comments>
      <category>Server Systems</category>
    </item>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=b5a5b744-0aec-4cc7-8178-e128d5617dc6</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,b5a5b744-0aec-4cc7-8178-e128d5617dc6.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,b5a5b744-0aec-4cc7-8178-e128d5617dc6.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=b5a5b744-0aec-4cc7-8178-e128d5617dc6</wfw:commentRss>
      <title>Installing ESX 3i 3.5.0 to HP Dx2300 microtower with SATA HDD</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,b5a5b744-0aec-4cc7-8178-e128d5617dc6.aspx</guid>
      <link>http://www.leventyildiz.net/2009/01/17/InstallingESX3i350ToHPDx2300MicrotowerWithSATAHDD.aspx</link>
      <pubDate>Sat, 17 Jan 2009 23:39:24 GMT</pubDate>
      <description>&lt;p&gt;
3 system engineers, 1 microtower, 1 esxi cd&lt;br&gt;
Tonight we tried to setup vmware esx 3i 3.5 to a hp dx2300 microtower.&lt;br&gt;
It was a painful night, first we searched for a hdd because original hdd should be
saved as it was containing critical data for one of my project.&lt;br&gt;
So me &amp; Serkan called Arda and asked him to bring a sata hdd.&lt;br&gt;
He came &amp; we setup the hdd and burned out the iso &amp; finally we were ready for the
installation&lt;br&gt;
Whoops we got the first error, memory was not enough.Logistics manager Arda :) took
a ride to his place &amp; brought 2gb ram.&lt;br&gt;
Voila, installation was started, but suddenly we got an error message telling that
esxi did not find any storage device to make the installation.&lt;br&gt;
Anyway we googled a little but we could not find any resource.End of the night :)&lt;br&gt;
&lt;br&gt;
So i decided to download &amp; install esx 3.5 trial, but that attempt was kicked backed
by the "competible nic not found" error :((&lt;br&gt;
I was frustrated.
&lt;/p&gt;
&lt;p&gt;
Late @ the same night while i was coding, i decided to re-google the problem.&lt;br&gt;
Finally i got the solution.I had to change 4 chars in a py file in esxi.&lt;br&gt;
&lt;br&gt;
If esxi could not find your sata drive, do the following&lt;br&gt;
&lt;br&gt;
Press &lt;strong&gt;alt+f1&lt;/strong&gt; and drop to console&lt;br&gt;
type &lt;strong&gt;root&lt;/strong&gt; as the username and leave &lt;strong&gt;blank&lt;/strong&gt; for the
password&lt;br&gt;
edit the /usr/lib/vmware/installer/Core/TargetFilter.py file by entering&lt;br&gt;
&lt;strong&gt;vi /usr/lib/vmware/installer/Core/TargetFilter.py&lt;/strong&gt;
&lt;br&gt;
find the def IDEFilter(lun) proc and change the "return interface.GetInterfaceType()
== ScsiInterface.SCSI_IFACE_TYPE_IDE" line as "return interface.GetInterfaceType()
== ScsiInterface.SCSI_IFACE_TYPE_&lt;strong&gt;ISCSI&lt;/strong&gt;" 
&lt;br&gt;
save and quit by &lt;strong&gt;:wq!&lt;br&gt;
&lt;/strong&gt;type install&lt;br&gt;
&lt;br&gt;
The original help document can be found @&lt;br&gt;
&lt;a href="http://www.vm-help.com/esx/esx3i/ESXi_install_to_IDE_drive/ESXi_install_to_IDE_drive.php"&gt;http://www.vm-help.com/esx/esx3i/ESXi_install_to_IDE_drive/ESXi_install_to_IDE_drive.php&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
What a wonderful night.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=b5a5b744-0aec-4cc7-8178-e128d5617dc6" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,b5a5b744-0aec-4cc7-8178-e128d5617dc6.aspx</comments>
      <category>Virtualization</category>
    </item>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=b9902080-5f07-4259-b9b6-5733b73560f9</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,b9902080-5f07-4259-b9b6-5733b73560f9.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,b9902080-5f07-4259-b9b6-5733b73560f9.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=b9902080-5f07-4259-b9b6-5733b73560f9</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">Having problem with mdichild form size
on form load?<br />
try setting the AutoScaleMode to Inherit on mdi child form.<br /><p></p><img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=b9902080-5f07-4259-b9b6-5733b73560f9" /></body>
      <title>MDI Child form resize problem.</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,b9902080-5f07-4259-b9b6-5733b73560f9.aspx</guid>
      <link>http://www.leventyildiz.net/2009/01/01/MDIChildFormResizeProblem.aspx</link>
      <pubDate>Thu, 01 Jan 2009 21:51:23 GMT</pubDate>
      <description>Having problem with mdichild form size on form load?&lt;br&gt;
try setting the AutoScaleMode to Inherit on mdi child form.&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=b9902080-5f07-4259-b9b6-5733b73560f9" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,b9902080-5f07-4259-b9b6-5733b73560f9.aspx</comments>
      <category>Software</category>
    </item>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=e6874c12-3acf-40e0-a914-e715cac260f3</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,e6874c12-3acf-40e0-a914-e715cac260f3.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,e6874c12-3acf-40e0-a914-e715cac260f3.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=e6874c12-3acf-40e0-a914-e715cac260f3</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img src="http://www.leventyildiz.net/content/binary/images%20(1).jpg" border="0" />
          <br />
A Forecast...<br /><br />
Whenever SaaS and Soa completes their evolution, a new era will rise;<br /><strong>Internet Software Studio<br /></strong>A platform where developers will no longer need a software development studio,<br />
A platform where development &amp; compilation can be done online, where intermediate
software users will able to develop their own software without digging into huge documentations...<br /><br />
Some day...
</p>
        <img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=e6874c12-3acf-40e0-a914-e715cac260f3" />
      </body>
      <title>Internet Software Studio</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,e6874c12-3acf-40e0-a914-e715cac260f3.aspx</guid>
      <link>http://www.leventyildiz.net/2008/10/27/InternetSoftwareStudio.aspx</link>
      <pubDate>Mon, 27 Oct 2008 18:27:02 GMT</pubDate>
      <description>&lt;p&gt;
&lt;img src="http://www.leventyildiz.net/content/binary/images%20(1).jpg" border=0&gt;
&lt;br&gt;
A Forecast...&lt;br&gt;
&lt;br&gt;
Whenever&amp;nbsp;SaaS and Soa completes their evolution, a new era will rise;&lt;br&gt;
&lt;strong&gt;Internet Software Studio&lt;br&gt;
&lt;/strong&gt;A platform where developers will no longer need a software development studio,&lt;br&gt;
A platform where development &amp;amp; compilation&amp;nbsp;can be done online, where intermediate
software users will able to develop their own software without digging into huge documentations...&lt;br&gt;
&lt;br&gt;
Some day...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=e6874c12-3acf-40e0-a914-e715cac260f3" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,e6874c12-3acf-40e0-a914-e715cac260f3.aspx</comments>
      <category>Internet</category>
      <category>Server Systems</category>
      <category>Software</category>
      <category>Virtualization</category>
    </item>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=a630c801-371e-4771-a684-864ff5ecc035</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,a630c801-371e-4771-a684-864ff5ecc035.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,a630c801-371e-4771-a684-864ff5ecc035.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=a630c801-371e-4771-a684-864ff5ecc035</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Dtp nin sitesi hacklendi.<br />
dün akşam saat 22:30 civarında...
</p>
        <img src="http://www.leventyildiz.net/content/binary/dtp.JPG" border="0" width="200px" height="200px" />
        <img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=a630c801-371e-4771-a684-864ff5ecc035" />
      </body>
      <title>Hack</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,a630c801-371e-4771-a684-864ff5ecc035.aspx</guid>
      <link>http://www.leventyildiz.net/2008/10/23/Hack.aspx</link>
      <pubDate>Thu, 23 Oct 2008 06:47:15 GMT</pubDate>
      <description>&lt;p&gt;
Dtp nin sitesi hacklendi.&lt;br&gt;
dün akşam saat 22:30 civarında...
&lt;/p&gt;
&lt;img src="http://www.leventyildiz.net/content/binary/dtp.JPG" border=0 width="200px" height="200px"&gt;&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=a630c801-371e-4771-a684-864ff5ecc035" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,a630c801-371e-4771-a684-864ff5ecc035.aspx</comments>
      <category>Genel</category>
      <category>Server Systems</category>
    </item>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=6df08a87-d62a-437f-b812-27f95f708486</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,6df08a87-d62a-437f-b812-27f95f708486.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,6df08a87-d62a-437f-b812-27f95f708486.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=6df08a87-d62a-437f-b812-27f95f708486</wfw:commentRss>
      <title>Suicide of a hacker.</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,6df08a87-d62a-437f-b812-27f95f708486.aspx</guid>
      <link>http://www.leventyildiz.net/2008/09/04/SuicideOfAHacker.aspx</link>
      <pubDate>Thu, 04 Sep 2008 22:32:50 GMT</pubDate>
      <description>My description for a hacker is the expert of all tech systems including coding.My description for the best hacker is the one tht has never been cought.But this guy is different, he exposes himself &amp;amp; his hack.&lt;br&gt;
&lt;br&gt;
But i must confess, this is the best &amp;amp; funniest hack event i've seen for the past
year.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;div style="width:465px;"&gt;&lt;embed src="http://www.izlesene.com/player2.swf?video=254696" wmode="window" bgcolor="#000000" allowfullscreen="true" scale="noScale" width="100%" height="355" type="application/x-shockwave-flash"&gt;&lt;/embed&gt;
&lt;div style="background:#000000; padding:7px 0px  7px 7px;"&gt;&lt;span style="color:#CCCCCC; font-family:Tahoma; font-size:12px"&gt;İlgili
aramalar: &lt;a style="color:#FF9900; font-family:Tahoma; font-size:12px" href="http://www.izlesene.com/video/komik_videolar-komik-----canli-yayinda-kanali-hackliyo/254696/ref=embednew" target="_blank" title="komik  -  canlı yayında kanalı hackliyo:)"&gt;komik
- canlı yayında kanalı hackliyo:)&lt;/a&gt; - &amp;nbsp;&lt;a style="color:#FF9900;text-decoration:underline" href="http://search.izlesene.com/?vse=canlı&amp;ref=embedv2link" target="_blank" title="canlı"&gt;canlı&lt;/a&gt; -
&amp;nbsp;&lt;a style="color:#FF9900;text-decoration:underline" href="http://search.izlesene.com/?vse=yayında&amp;ref=embedv2link" target="_blank" title="yayında"&gt;yayında&lt;/a&gt; -
&amp;nbsp;&lt;a style="color:#FF9900;text-decoration:underline" href="http://search.izlesene.com/?vse=kanalı&amp;ref=embedv2link" target="_blank" title="kanalı"&gt;kanalı&lt;/a&gt; -
&amp;nbsp;&lt;a style="color:#FF9900;text-decoration:underline" href="http://search.izlesene.com/?vse=kacliyo:) &amp;ref=embedv2link" target="_blank" title="kacliyo:) "&gt;kacliyo:) &lt;/a&gt; -
&amp;nbsp;&lt;a style="color:#FF9900;text-decoration:underline" href="http://search.izlesene.com/?vse=nasah132&amp;ref=embedv2link" target="_blank" title="nasah132"&gt;nasah132&lt;/a&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=6df08a87-d62a-437f-b812-27f95f708486" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,6df08a87-d62a-437f-b812-27f95f708486.aspx</comments>
      <category>Security</category>
      <category>Server Systems</category>
    </item>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=2b540027-6f1f-45c9-b38d-ae0a6d4fee22</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,2b540027-6f1f-45c9-b38d-ae0a6d4fee22.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,2b540027-6f1f-45c9-b38d-ae0a6d4fee22.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=2b540027-6f1f-45c9-b38d-ae0a6d4fee22</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <img src="http://www.leventyildiz.net/content/binary/veeam.gif" border="0" />
        <br />
        <br />
Great &amp; wondeful tool for copying files to/from Esx servers to your windows environment.<br /><a href="http://www.veeam.com/veeam_fast_scp.asp">http://www.veeam.com/veeam_fast_scp.asp</a><br /><br />
It also has "evaluate to root" option which allows u to access to yr vmfs volumes
&amp; copy powered off vm's to local drive.<br /><img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=2b540027-6f1f-45c9-b38d-ae0a6d4fee22" /></body>
      <title>Fast SCP for Esx Servers</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,2b540027-6f1f-45c9-b38d-ae0a6d4fee22.aspx</guid>
      <link>http://www.leventyildiz.net/2008/08/15/FastSCPForEsxServers.aspx</link>
      <pubDate>Fri, 15 Aug 2008 14:59:08 GMT</pubDate>
      <description>&lt;img src="http://www.leventyildiz.net/content/binary/veeam.gif" border="0"&gt;
&lt;br&gt;
&lt;br&gt;
Great &amp;amp; wondeful tool for copying files to/from Esx servers to your windows environment.&lt;br&gt;
&lt;a href="http://www.veeam.com/veeam_fast_scp.asp"&gt;http://www.veeam.com/veeam_fast_scp.asp&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
It also has "evaluate to root" option which allows u to access to yr vmfs volumes
&amp;amp; copy powered off vm's to local drive.&lt;br&gt;
&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=2b540027-6f1f-45c9-b38d-ae0a6d4fee22" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,2b540027-6f1f-45c9-b38d-ae0a6d4fee22.aspx</comments>
      <category>Virtualization</category>
    </item>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=f774f2c2-018d-45d2-98b5-d5d21a83a3e6</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,f774f2c2-018d-45d2-98b5-d5d21a83a3e6.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,f774f2c2-018d-45d2-98b5-d5d21a83a3e6.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=f774f2c2-018d-45d2-98b5-d5d21a83a3e6</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">AKP'nin sitesi hacklendi...<br /><br />
Bu akşam saat 21:00 civarında...<br /><br /><p></p><img src="http://www.leventyildiz.net/content/binary/hackakepe.jpg" border="0" height="200" width="300" /><img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=f774f2c2-018d-45d2-98b5-d5d21a83a3e6" /></body>
      <title>Hack</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,f774f2c2-018d-45d2-98b5-d5d21a83a3e6.aspx</guid>
      <link>http://www.leventyildiz.net/2008/08/14/Hack.aspx</link>
      <pubDate>Thu, 14 Aug 2008 21:16:38 GMT</pubDate>
      <description>AKP'nin sitesi hacklendi...&lt;br&gt;
&lt;br&gt;
Bu akşam saat 21:00 civarında...&lt;br&gt;
&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img src="http://www.leventyildiz.net/content/binary/hackakepe.jpg" border="0" height="200" width="300"&gt;&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=f774f2c2-018d-45d2-98b5-d5d21a83a3e6" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,f774f2c2-018d-45d2-98b5-d5d21a83a3e6.aspx</comments>
      <category>Genel</category>
    </item>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=dd88c4aa-5234-46ca-b34e-d05ca2b9f4b2</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,dd88c4aa-5234-46ca-b34e-d05ca2b9f4b2.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,dd88c4aa-5234-46ca-b34e-d05ca2b9f4b2.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=dd88c4aa-5234-46ca-b34e-d05ca2b9f4b2</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">Evet! Bugün bir olay!!! yaşadık.Malum zat
Istanbul'a geldi ve aşağıdaki manzaralar oluştu.<br /><p></p><table><tbody><tr><td><img src="http://www.leventyildiz.net/content/binary/trafik1.Jpeg" border="0" /></td><td><img src="http://www.leventyildiz.net/content/binary/trafik2.Jpeg" border="0" /></td></tr></tbody></table><br />
Haberleri izlediğimde bütün vatandaşlar şikayet ediyordu.Herkes;<br />
- Böyle yönetim mi olur? 
<br />
- Vatandaşlarını 3.sınıf vatandaş yerine koyan başka bir yönetim yoktur!!!<br />
- Ankarayı ziyaret etmek istemeyen birisi için vatandaşı bu hale düşürüyorlar ya...<br />
şeklinde konuşuyordu.<br /><br />
Bir tek kişi bile durumdan memnun değildi.Ama bir tek kişi bile...<br /><br />
E o kadar kişi yorum yaptı haberlerde...Bir yorum da benden...<br />
Neden KIZIYORUZ? bu hale düşmeyi kendimiz <b>SEÇMEDİK Mİ?</b><br /><img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=dd88c4aa-5234-46ca-b34e-d05ca2b9f4b2" /></body>
      <title>Neden KIZIYORUZ?</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,dd88c4aa-5234-46ca-b34e-d05ca2b9f4b2.aspx</guid>
      <link>http://www.leventyildiz.net/2008/08/14/NedenKIZIYORUZ.aspx</link>
      <pubDate>Thu, 14 Aug 2008 21:08:44 GMT</pubDate>
      <description>Evet! Bugün bir olay!!! yaşadık.Malum zat Istanbul'a geldi ve aşağıdaki manzaralar oluştu.&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;img src="http://www.leventyildiz.net/content/binary/trafik1.Jpeg" border="0"&gt;&lt;/td&gt;
&lt;td&gt;
&lt;img src="http://www.leventyildiz.net/content/binary/trafik2.Jpeg" border="0"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;br&gt;
Haberleri izlediğimde bütün vatandaşlar şikayet ediyordu.Herkes;&lt;br&gt;
- Böyle yönetim mi olur? 
&lt;br&gt;
- Vatandaşlarını 3.sınıf vatandaş yerine koyan başka bir yönetim yoktur!!!&lt;br&gt;
- Ankarayı ziyaret etmek istemeyen birisi için vatandaşı bu hale düşürüyorlar ya...&lt;br&gt;
şeklinde konuşuyordu.&lt;br&gt;
&lt;br&gt;
Bir tek kişi bile durumdan memnun değildi.Ama bir tek kişi bile...&lt;br&gt;
&lt;br&gt;
E o kadar kişi yorum yaptı haberlerde...Bir yorum da benden...&lt;br&gt;
Neden KIZIYORUZ? bu hale düşmeyi kendimiz &lt;b&gt;SEÇMEDİK Mİ?&lt;/b&gt;
&lt;br&gt;
&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=dd88c4aa-5234-46ca-b34e-d05ca2b9f4b2" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,dd88c4aa-5234-46ca-b34e-d05ca2b9f4b2.aspx</comments>
      <category>Genel</category>
    </item>
    <item>
      <trackback:ping>http://www.leventyildiz.net/Trackback.aspx?guid=06b95b0e-d90c-4406-89ef-a200d295a941</trackback:ping>
      <pingback:server>http://www.leventyildiz.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.leventyildiz.net/PermaLink,guid,06b95b0e-d90c-4406-89ef-a200d295a941.aspx</pingback:target>
      <dc:creator>Levent YILDIZ</dc:creator>
      <wfw:comment>http://www.leventyildiz.net/CommentView,guid,06b95b0e-d90c-4406-89ef-a200d295a941.aspx</wfw:comment>
      <wfw:commentRss>http://www.leventyildiz.net/SyndicationService.asmx/GetEntryCommentsRss?guid=06b95b0e-d90c-4406-89ef-a200d295a941</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">As i was just about to code a logging system
for a project, i remembered a couple of fine methods which SqlConnection class has.<br />
RetrieveStatistics();<br /><br />
It works with first enabling the stats mode, resetting the stats and when the command
is executed, finally retrive the stats.<br /><pre><span style="color: Black; background-color: transparent; font-family: Courier New; font-size: 11px;"><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">string</span> strConnectionString <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span><span style="color: rgb(102, 102, 102); background-color: rgb(228, 228, 228); font-family: Courier New; font-size: 11px;">@"Data
Source=.\SQLEXPRESS;Initial Catalog=FooDB;Integrated Security=True"</span>; <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">using</span> (SqlConnection
conSQL <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">new</span> SqlConnection(strConnectionString))
{ <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">using</span> (SqlCommand
cmdSQL <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">new</span> SqlCommand(<span style="color: rgb(102, 102, 102); background-color: rgb(228, 228, 228); font-family: Courier New; font-size: 11px;">"select
* from Foo"</span>, conSQL)) { cmdSQL.CommandType <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span> CommandType.Text; <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">try</span> {
conSQL.Open(); conSQL.StatisticsEnabled <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">true</span>;
conSQL.ResetStatistics(); SqlDataReader drdActiveConfiguration <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span> cmdSQL.ExecuteReader();
IDictionary idcStat= conSQL.RetrieveStatistics(); <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">foreach</span> (DictionaryEntry
dceItem <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">in</span> idcStat)
{ Console.WriteLine(<span style="color: rgb(102, 102, 102); background-color: rgb(228, 228, 228); font-family: Courier New; font-size: 11px;">"Key:
{0}, Value: {1}"</span>, dceItem.Key.ToString(), dceItem.Value.ToString()); } DataSet
dsActiveConfiguration <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">new</span> DataSet();
dsActiveConfiguration.Load(drdActiveConfiguration, LoadOption.OverwriteChanges, <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">new</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">string</span>[]
{ <span style="color: rgb(102, 102, 102); background-color: rgb(228, 228, 228); font-family: Courier New; font-size: 11px;">"Foo1"</span> });
dsActiveConfiguration.Clear(); conSQL.Close(); } <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">catch</span> (Exception
excp) { } } }</span></pre>By using this method, you get a quite information about
the execution process...<br /><br /><font color="#006400">Key: NetworkServerTime, Value: 375<br />
Key: BytesReceived, Value: 224<br />
Key: UnpreparedExecs, Value: 1<br />
Key: SumResultSets, Value: 0<br />
Key: SelectCount, Value: 0<br />
Key: PreparedExecs, Value: 0<br />
Key: ConnectionTime, Value: 390<br />
Key: ExecutionTime, Value: 390<br />
Key: Prepares, Value: 0<br />
Key: BuffersSent, Value: 1<br />
Key: SelectRows, Value: 0<br />
Key: ServerRoundtrips, Value: 1<br />
Key: CursorOpens, Value: 0<br />
Key: Transactions, Value: 0<br />
Key: BytesSent, Value: 388<br />
Key: BuffersReceived, Value: 1<br />
Key: IduRows, Value: 0<br />
Key: IduCount, Value: 0<br />
Press any key to continue . . .</font><br /><br />
which is very handy :)<br /><br /><p></p><img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=06b95b0e-d90c-4406-89ef-a200d295a941" /></body>
      <title>How long did my Query took to execute and what are the statistics?</title>
      <guid isPermaLink="false">http://www.leventyildiz.net/PermaLink,guid,06b95b0e-d90c-4406-89ef-a200d295a941.aspx</guid>
      <link>http://www.leventyildiz.net/2008/08/14/HowLongDidMyQueryTookToExecuteAndWhatAreTheStatistics.aspx</link>
      <pubDate>Thu, 14 Aug 2008 18:39:59 GMT</pubDate>
      <description>As i was just about to code a logging system for a project, i remembered a couple of fine methods which SqlConnection class has.&lt;br&gt;
RetrieveStatistics();&lt;br&gt;
&lt;br&gt;
It works with first enabling the stats mode, resetting the stats and when the command
is executed, finally retrive the stats.&lt;br&gt;
&lt;pre&gt;&lt;span style="color: Black; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;&lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;string&lt;/span&gt; strConnectionString &lt;span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;=&lt;/span&gt; &lt;span style="color: rgb(102, 102, 102); background-color: rgb(228, 228, 228); font-family: Courier New; font-size: 11px;"&gt;@"Data
Source=.\SQLEXPRESS;Initial Catalog=FooDB;Integrated Security=True"&lt;/span&gt;; &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;using&lt;/span&gt; (SqlConnection
conSQL &lt;span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;=&lt;/span&gt; &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;new&lt;/span&gt; SqlConnection(strConnectionString))
{ &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;using&lt;/span&gt; (SqlCommand
cmdSQL &lt;span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;=&lt;/span&gt; &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;new&lt;/span&gt; SqlCommand(&lt;span style="color: rgb(102, 102, 102); background-color: rgb(228, 228, 228); font-family: Courier New; font-size: 11px;"&gt;"select
* from Foo"&lt;/span&gt;, conSQL)) { cmdSQL.CommandType &lt;span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;=&lt;/span&gt; CommandType.Text; &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;try&lt;/span&gt; {
conSQL.Open(); conSQL.StatisticsEnabled &lt;span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;=&lt;/span&gt; &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;true&lt;/span&gt;;
conSQL.ResetStatistics(); SqlDataReader drdActiveConfiguration &lt;span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;=&lt;/span&gt; cmdSQL.ExecuteReader();
IDictionary idcStat= conSQL.RetrieveStatistics(); &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;foreach&lt;/span&gt; (DictionaryEntry
dceItem &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;in&lt;/span&gt; idcStat)
{ Console.WriteLine(&lt;span style="color: rgb(102, 102, 102); background-color: rgb(228, 228, 228); font-family: Courier New; font-size: 11px;"&gt;"Key:
{0}, Value: {1}"&lt;/span&gt;, dceItem.Key.ToString(), dceItem.Value.ToString()); } DataSet
dsActiveConfiguration &lt;span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;=&lt;/span&gt; &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;new&lt;/span&gt; DataSet();
dsActiveConfiguration.Load(drdActiveConfiguration, LoadOption.OverwriteChanges, &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;new&lt;/span&gt; &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;string&lt;/span&gt;[]
{ &lt;span style="color: rgb(102, 102, 102); background-color: rgb(228, 228, 228); font-family: Courier New; font-size: 11px;"&gt;"Foo1"&lt;/span&gt; });
dsActiveConfiguration.Clear(); conSQL.Close(); } &lt;span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"&gt;catch&lt;/span&gt; (Exception
excp) { } } }&lt;/span&gt;&lt;/pre&gt;By using this method, you get a quite information about
the execution process...&lt;br&gt;
&lt;br&gt;
&lt;font color="#006400"&gt;Key: NetworkServerTime, Value: 375&lt;br&gt;
Key: BytesReceived, Value: 224&lt;br&gt;
Key: UnpreparedExecs, Value: 1&lt;br&gt;
Key: SumResultSets, Value: 0&lt;br&gt;
Key: SelectCount, Value: 0&lt;br&gt;
Key: PreparedExecs, Value: 0&lt;br&gt;
Key: ConnectionTime, Value: 390&lt;br&gt;
Key: ExecutionTime, Value: 390&lt;br&gt;
Key: Prepares, Value: 0&lt;br&gt;
Key: BuffersSent, Value: 1&lt;br&gt;
Key: SelectRows, Value: 0&lt;br&gt;
Key: ServerRoundtrips, Value: 1&lt;br&gt;
Key: CursorOpens, Value: 0&lt;br&gt;
Key: Transactions, Value: 0&lt;br&gt;
Key: BytesSent, Value: 388&lt;br&gt;
Key: BuffersReceived, Value: 1&lt;br&gt;
Key: IduRows, Value: 0&lt;br&gt;
Key: IduCount, Value: 0&lt;br&gt;
Press any key to continue . . .&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;
which is very handy :)&lt;br&gt;
&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.leventyildiz.net/aggbug.ashx?id=06b95b0e-d90c-4406-89ef-a200d295a941" /&gt;</description>
      <comments>http://www.leventyildiz.net/CommentView,guid,06b95b0e-d90c-4406-89ef-a200d295a941.aspx</comments>
      <category>Software</category>
    </item>
  </channel>
</rss>