<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>Levent YILDIZ</title>
  <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/" />
  <link rel="self" href="http://www.leventyildiz.net/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2014-01-26T21:10:27.6574645+02:00</updated>
  <author>
    <name>Levent YILDIZ</name>
  </author>
  <subtitle>coding @ the speed of thought</subtitle>
  <id>http://www.leventyildiz.net/</id>
  <generator uri="http://dasblog.info/" version="2.3.9074.18820">DasBlog</generator>
  <entry>
    <title>The event 'X' can only appear on the left hand side of += or -= (except when used from within the type 'X')</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2009/03/12/TheEventXCanOnlyAppearOnTheLeftHandSideOfOrExceptWhenUsedFromWithinTheTypeX.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,177aea5b-c0a6-4123-9fd8-fa7623545659.aspx</id>
    <published>2009-03-12T18:46:52.0054864+02:00</published>
    <updated>2009-03-12T18:56:37.5274256+02:00</updated>
    <category term="Software" label="Software" scheme="http://www.leventyildiz.net/CategoryView,category,Software.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="xhtml">
      <div 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" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Could not load file or assembly 'Microsoft.ReportViewer.WebForms</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2009/02/03/CouldNotLoadFileOrAssemblyMicrosoftReportViewerWebForms.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,2ef4db20-f7c8-41aa-ae29-62b9a18ad7ec.aspx</id>
    <published>2009-02-03T18:10:39.6530928+02:00</published>
    <updated>2009-02-03T18:13:41.8250432+02:00</updated>
    <category term="Software" label="Software" scheme="http://www.leventyildiz.net/CategoryView,category,Software.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="xhtml">
      <div 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" />
      </div>
    </content>
  </entry>
  <entry>
    <title>NetBT Error, EventID:4321</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2009/01/20/NetBTErrorEventID4321.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,4574b16f-45d0-4a9f-aa6d-0d57bf387b29.aspx</id>
    <published>2009-01-20T05:18:39.2724864+02:00</published>
    <updated>2009-01-20T05:23:39.4140688+02:00</updated>
    <category term="Server Systems" label="Server Systems" scheme="http://www.leventyildiz.net/CategoryView,category,ServerSystems.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="html">&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;</content>
  </entry>
  <entry>
    <title>Installing ESX 3i 3.5.0 to HP Dx2300 microtower with SATA HDD</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2009/01/17/InstallingESX3i350ToHPDx2300MicrotowerWithSATAHDD.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,b5a5b744-0aec-4cc7-8178-e128d5617dc6.aspx</id>
    <published>2009-01-18T01:39:24.092+02:00</published>
    <updated>2009-01-18T14:50:39.1778896+02:00</updated>
    <category term="Virtualization" label="Virtualization" scheme="http://www.leventyildiz.net/CategoryView,category,Virtualization.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="html">&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;</content>
  </entry>
  <entry>
    <title>MDI Child form resize problem.</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2009/01/01/MDIChildFormResizeProblem.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,b9902080-5f07-4259-b9b6-5733b73560f9.aspx</id>
    <published>2009-01-01T23:51:23.5122528+02:00</published>
    <updated>2009-01-01T23:55:31.2885376+02:00</updated>
    <category term="Software" label="Software" scheme="http://www.leventyildiz.net/CategoryView,category,Software.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="xhtml">
      <div 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" /></div>
    </content>
  </entry>
  <entry>
    <title>Internet Software Studio</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2008/10/27/InternetSoftwareStudio.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,e6874c12-3acf-40e0-a914-e715cac260f3.aspx</id>
    <published>2008-10-27T20:27:02.0545536+02:00</published>
    <updated>2008-10-27T20:37:58.0878832+02:00</updated>
    <category term="Internet" label="Internet" scheme="http://www.leventyildiz.net/CategoryView,category,Internet.aspx" />
    <category term="Server Systems" label="Server Systems" scheme="http://www.leventyildiz.net/CategoryView,category,ServerSystems.aspx" />
    <category term="Software" label="Software" scheme="http://www.leventyildiz.net/CategoryView,category,Software.aspx" />
    <category term="Virtualization" label="Virtualization" scheme="http://www.leventyildiz.net/CategoryView,category,Virtualization.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="xhtml">
      <div 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" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Hack</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2008/10/23/Hack.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,a630c801-371e-4771-a684-864ff5ecc035.aspx</id>
    <published>2008-10-23T09:47:15.099+03:00</published>
    <updated>2014-01-26T21:07:20.644336+02:00</updated>
    <category term="Genel" label="Genel" scheme="http://www.leventyildiz.net/CategoryView,category,Genel.aspx" />
    <category term="Server Systems" label="Server Systems" scheme="http://www.leventyildiz.net/CategoryView,category,ServerSystems.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="xhtml">
      <div 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" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Suicide of a hacker.</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2008/09/04/SuicideOfAHacker.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,6df08a87-d62a-437f-b812-27f95f708486.aspx</id>
    <published>2008-09-05T01:32:50.1577904+03:00</published>
    <updated>2008-09-05T01:41:14.8935648+03:00</updated>
    <category term="Security" label="Security" scheme="http://www.leventyildiz.net/CategoryView,category,Security.aspx" />
    <category term="Server Systems" label="Server Systems" scheme="http://www.leventyildiz.net/CategoryView,category,ServerSystems.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="html">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;</content>
  </entry>
  <entry>
    <title>Fast SCP for Esx Servers</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2008/08/15/FastSCPForEsxServers.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,2b540027-6f1f-45c9-b38d-ae0a6d4fee22.aspx</id>
    <published>2008-08-15T17:59:08.8144704+03:00</published>
    <updated>2008-08-15T18:03:47.6754528+03:00</updated>
    <category term="Virtualization" label="Virtualization" scheme="http://www.leventyildiz.net/CategoryView,category,Virtualization.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="xhtml">
      <div 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" /></div>
    </content>
  </entry>
  <entry>
    <title>Hack</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2008/08/14/Hack.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,f774f2c2-018d-45d2-98b5-d5d21a83a3e6.aspx</id>
    <published>2008-08-15T00:16:38.128+03:00</published>
    <updated>2014-01-26T21:10:27.6574645+02:00</updated>
    <category term="Genel" label="Genel" scheme="http://www.leventyildiz.net/CategoryView,category,Genel.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="xhtml">
      <div 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" /></div>
    </content>
  </entry>
  <entry>
    <title>Neden KIZIYORUZ?</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2008/08/14/NedenKIZIYORUZ.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,dd88c4aa-5234-46ca-b34e-d05ca2b9f4b2.aspx</id>
    <published>2008-08-15T00:08:44.586939+03:00</published>
    <updated>2008-08-15T00:15:59.203219+03:00</updated>
    <category term="Genel" label="Genel" scheme="http://www.leventyildiz.net/CategoryView,category,Genel.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="xhtml">
      <div 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" /></div>
    </content>
  </entry>
  <entry>
    <title>How long did my Query took to execute and what are the statistics?</title>
    <link rel="alternate" type="text/html" href="http://www.leventyildiz.net/2008/08/14/HowLongDidMyQueryTookToExecuteAndWhatAreTheStatistics.aspx" />
    <id>http://www.leventyildiz.net/PermaLink,guid,06b95b0e-d90c-4406-89ef-a200d295a941.aspx</id>
    <published>2008-08-14T21:39:59.2890352+03:00</published>
    <updated>2008-08-14T21:55:53.9718016+03:00</updated>
    <category term="Software" label="Software" scheme="http://www.leventyildiz.net/CategoryView,category,Software.aspx" />
    <author>
      <name>Levent YILDIZ</name>
    </author>
    <content type="xhtml">
      <div 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" /></div>
    </content>
  </entry>
</feed>