<?xml version="1.0" encoding="utf-8" ?><?xml-stylesheet type="text/xsl" href="http://www.daniweb.com/js/rss.xsl"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DaniWeb IT Discussion Community
								</title>
		<link>http://www.daniweb.com/</link>
		<description>Online discussion community for IT professionals and enthusiasts. Technology publication meets social media.</description>
		<language>en-US</language>
		<ttl>60</ttl>
		<!-- PubSubHubbub Discovery -->
		<link rel="hub" href="http://daniweb.superfeedr.com/" xmlns="http://www.w3.org/2005/Atom" />
		<link rel="self" href="http://www.daniweb.com/rss/pull" xmlns="http://www.w3.org/2005/Atom" />
		<!-- End Of PubSubHubbub Discovery -->
				<item>
			<title>C++ Calculating Primes in first 50 chiliads</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454950/c-calculating-primes-in-first-50-chiliads</link>
			<pubDate>Mon, 20 May 2013 01:05:27 +0000</pubDate>
			<description>**Here is the assignment:** Write a C++ program to calculate and display the number of primes in the first 50 “chiliads”. Your results should be exactly as presented below, under testing. Design Considerations: I think you will find your program easier to structure and write if you break it down ...</description>
			<content:encoded><![CDATA[ <p><strong>Here is the assignment:</strong></p>

<p>Write a C++ program to calculate and display the number of primes in the first 50 “chiliads”.  Your results should be exactly as presented below, under testing.</p>

<p>Design Considerations:</p>

<p>I think you will find your program easier to structure and write if you break it down into functions with the following prototypes:</p>

<p>bool isPrime (long n);<br />
// Returns true if n is a prime, else false</p>

<p>long primeCount (long x, long y);<br />
// Returns the number of primes between x and y, inclusive.</p>

<p><strong>I am having problems with the total and counter, please help</strong></p>

<p>my code:</p>

<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;iomanip&gt;
#include &lt;cmath&gt;

using namespace std;

bool isPrime(long n);                       // Returns true if n is a prime, else false
long primeCount (long x, long y);           // Returns the number of primes between x and y, inclusive 
int main ()
{
    int counter, total;
    cout &lt;&lt; "Start" &lt;&lt;setw(6) &lt;&lt; "End" &lt;&lt; setw(24) &lt;&lt; "Number of Primes" &lt;&lt; endl;

    primeCount (0 , 50000);
    cout &lt;&lt; "Total primes in the first 50 chiliads:" &lt;&lt; total &lt;&lt; endl;

    cout &lt;&lt; "Average number per chiliad:" &lt;&lt; counter/1 &lt;&lt; endl;
    system("pause");
}
long primeCount (long x, long y)
{
    int i; 
    int counter = 0; 
    int total = 0;
    bool test; 

    for ( int k = x; k &lt; y; k += 1000)
{
   for (i =1; i &lt; 1000; i++ )
   {
    test = isPrime(i+k);
    if ( test == true )
    {
        counter++;
        total += counter;
    }
   }
   cout &lt;&lt; i+k-999 &lt;&lt;setw(10) &lt;&lt; i+k &lt;&lt; setw(12) &lt;&lt; counter &lt;&lt; endl;
   counter = 0;
 }}
bool isPrime (long num)
{
 int j;

 if(num &lt;= 1)
 return false;

 for ( j = 2; j*j &lt;= num; j++ )


    if (num%j == 0)

    return false; 
 return true;

 }
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>erinkay528</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454950/c-calculating-primes-in-first-50-chiliads</guid>
		</item>
				<item>
			<title>computer programming</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454949/computer-programming</link>
			<pubDate>Mon, 20 May 2013 01:01:31 +0000</pubDate>
			<description>A road distance table may be used to give the distances between some towns as shown below. To simplify the programming of distance tables, we assign numbers 0, 1, . . . to the towns. Then we may get a distance table like this: Towns Number Alor Setar 0 0 ...</description>
			<content:encoded><![CDATA[ <p>A road distance table may be used to give the distances between some towns as shown<br />
below. To simplify the programming of distance tables, we assign numbers 0, 1, . . . to<br />
the towns. Then we may get a distance table like this:<br />
Towns Number<br />
Alor Setar 0 0<br />
Ipoh 1 1 258 1<br />
Kangar 2 2 43 301 2<br />
Kuala Lumpur 3 3 475 217 518 3<br />
Mersing 4 4 876 616 918 401 4<br />
Melaka 5 5 623 365 667 148 246<br />
The distance from Kangar (location no. 2) to Kuala Lumpur (location no. 3) is found by<br />
looking up row number 3 and then column number 2, where we see that the distance is<br />
518 km.<br />
Based on the above table, you are required to write<br />
A. A function for int DistanceTable(int town1, int town2) which<br />
returns the distance between town1 and town2. For instance, the call<br />
DistanceTable(2,3) returns the distance between the Kangar and Kuala<br />
Lumpur. The method DistanceTable will also return the same distance<br />
between Kuala Lumpur and Kangar when called as DistanceTable(3,2).<br />
This function also have a distance table of towns in array form</p>

<p>Figure 1-1: Representation number<br />
to city<br />
Figure 1-2: Town distances (in km)</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>nur fieza</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454949/computer-programming</guid>
		</item>
				<item>
			<title>getDateFromFormat is not defined</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454948/getdatefromformat-is-not-defined</link>
			<pubDate>Mon, 20 May 2013 00:36:36 +0000</pubDate>
			<description>Hi! This is my code to get the difference of two dates in Javascript. var today = new Date(); var dd = today.getDate(); var mm = today.getMonth()+1; //January is 0! var yyyy = today.getFullYear(); if (dd &lt; 10) { dd='0'+dd } if (mm &lt; 10) { mm='0'+mm } today = ...</description>
			<content:encoded><![CDATA[ <p>Hi!</p>

<p>This is my code to get the difference of two dates in Javascript.</p>

<pre><code class="language-js">var today = new Date();

            var dd = today.getDate();

            var mm = today.getMonth()+1; //January is 0!

            var yyyy = today.getFullYear();



            if (dd &lt; 10)

            {

                dd='0'+dd

            } 

            if (mm &lt; 10)

            {

                mm='0'+mm

            } 



            today = mm+'/'+dd+'/'+yyyy;

            var minutes = 1000*60;

            var hours = minutes*60;

            var days = hours*24;


            var foo_date1 = getDateFromFormat(today, "M/d/y");

            var foo_date2 = getDateFromFormat("02/28/2015", "M/d/y");



            var diff_date = Math.round((foo_date2 - foo_date1)/days);

            var ans = Math.abs(diff_date);

            alert(ans);
</code></pre>

<p>This works fine in my localhost. However, when I upload it to the server. It does not work anymore.<br />
When I use IE, this is the error it founds.</p>

<p><img src="/attachments/fetch/L2ltYWdlcy9hdHRhY2htZW50cy8yLzM0Mjg4ZjczOGM2NTUwMWQ1YzZlNWM0Y2E1NjIzNTU0LnBuZw%3D%3D/300" alt="34288f738c65501d5c6e5c4ca5623554" title="align-left" /></p>

<p>I tried to chmod the file permissions for all the javascripts and jquery it needs even the folder that these javascript is contained. But it does not do anything.</p>

<p>Kindly help me please :((</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>xuexue</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454948/getdatefromformat-is-not-defined</guid>
		</item>
				<item>
			<title>keypress causing my sidebar and content to disappear</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454946/keypress-causing-my-sidebar-and-content-to-disappear</link>
			<pubDate>Sun, 19 May 2013 22:34:47 +0000</pubDate>
			<description>so i have a problem, i'm trying to make a live chat where two members can chat without having to refresh the page, and i have got everything work up to where you start typing in the textarea, well i'm trying to check for the &quot;enter&quot; key to be pressed, ...</description>
			<content:encoded><![CDATA[ <p>so i have a problem, i'm trying to make a live chat where two members can chat without having to refresh the page, and i have got everything work up to where you start typing in the textarea, well i'm trying to check for the "enter" key to be pressed, and when it's pressed it'll send the message, but now when ANY key is pressed, it'll make the sidebar div and content div's content disappear, when i look at the html it'll still be there, but not visible on the page...</p>

<p>if you want to see what it's doing on the website the links <a href="http://www.daparadise.com/test/autochat/long_poller.php#" rel="nofollow">http://www.daparadise.com/test/autochat/long_poller.php#</a> please help iv'e been working on this for a couple days and want to get it to work to release on the site ASAP.</p>

<pre><code class="language-js">&lt;div&gt;
&lt;?php include "include/header.php" ?&gt;
fff
    &lt;div id="chatbar" style="width:1050px;"&gt;

        &lt;div id="fullchat" style="background-color:00AF29;"&gt;
            &lt;div id="chatname" onclick="showHide('chatbod 18');"&gt;
                &lt;?php echo $name; ?&gt;&lt;div id="close18" style="float:right;padding:5px;margin-top:-4px; " onclick="closechat('#fullchat');"&gt;X&lt;/div&gt;
            &lt;/div&gt;
            &lt;div id="chatbod 18"&gt;
                &lt;div id="chat" style="overflow-y:scroll;overflow-x:hidden; height:225px;"&gt;
                    &lt;div id="messages" class="0" style="display:inline;"&gt;
                    &lt;/div&gt;
                    &lt;div id="messages" class="0" style="display:inline;"&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
                &lt;div&gt;
                    &lt;form method='post' id="yourform" name="409" &gt;
                        &lt;textarea id="Msg" name="Msg" autocomplete="off" onkeydown="chatenter(event, 409);"&gt;&lt;/textarea&gt;
                        &lt;input name='id' type='hidden'  value='409'/&gt;
                    &lt;/form&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;

    &lt;/div&gt;

&lt;?php include "../../include/footer.php"; ?&gt;
&lt;/div&gt;
&lt;script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"&gt;&lt;/script&gt;
&lt;style type="text/css" media="screen"&gt;
    .msg{ background:#aaa;padding:.2em; border-bottom:1px #000 solid}
    .old{ background-color:#246499;}
    .new{ background-color:#3B9957;}
    .error{ background-color:#992E36;}
    #fullchat{
        position: relative;
        bottom:0px;
        width:250px;
        max-height:300px;
        border:1px solid black;
        z-index:1999;
        margin-top:-255px;
        float:right;
    }
    #chatbar{
        position:fixed;
        bottom:0px;
        left:0px;
        width:1050px;
        height:30px;
        background-color: #3CD51A;
        background: -webkit-gradient(linear, center top, center bottom, from(#319C19), to(#3CD51A));
        background-image: linear-gradient(#319C19, #3CD51A);
        z-index:999;
    }
    #chatname{
        padding: 5px 5px;
        border-bottom:1px solid black;
        background-color:#807CC2;
    }
    textarea {
        resize: none;
        width:100%;
        height:100%;
    }
&lt;/style&gt;
&lt;script type="text/javascript" charset="utf-8"&gt;
    function addmsg(type, msg){
        $("#chat").animate({ scrollTop: $('#chat')[0].scrollHeight}, 1000);
        /* Simple helper to add a div.
        type is the name of a CSS class (old/new/error).
        msg is the contents of the div */
        $("#chat").append(
             msg
        );
    }

    function waitForMsg(){
        var className = $('#chat').children().last().attr('class');
        /* This requests the url "msgsrv.php"
        When it complete (or errors)*/
        $.ajax({
            type: "GET",
            url: "msgsrv.php?ID=11&amp;MID=409&amp;SELECT=" + className,

            async: true, /* If set to non-async, browser shows page as "Loading.."*/
            cache: false,
            timeout:50000, /* Timeout in ms */

            success: function(data){ /* called when request to barge.php completes */
                addmsg("new", data); /* Add response to a .msg div (with the "new" class)*/
                setTimeout(
                    waitForMsg, /* Request next message */
                    5000 /* ..after 1 seconds */
                );
            },
            error: function(XMLHttpRequest, textStatus, errorThrown){
                addmsg("error", textStatus + " (" + errorThrown + ")");
                setTimeout(
                    waitForMsg, /* Try again after.. */
                    15000); /* milliseconds (15seconds) */
            }
        });
    };

    $(document).ready(function(){
        waitForMsg(); /* Start the inital request */
    });
    function showHide(obj) {
        var div = document.getElementById(obj);
        if (div.style.display == 'none') {
            div.style.display = '';
            document.getElementById("fullchat").style.marginTop="-255px";
        }else {
            div.style.display = 'none';
            document.getElementById("fullchat").style.marginTop="0px";
        }
     }
    function closechat() {
        $("#fullchat").remove();
    }
    function chatenter(evt, id){
        var charCode = (evt.which) ? evt.which : window.event.keyCode; 
        if (charCode == 13){
            var message = document.getElementById("Msg").value;
            $("#chat").append(
                message
            );
        }
        return false
    }
&lt;/script&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>zacharysr</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454946/keypress-causing-my-sidebar-and-content-to-disappear</guid>
		</item>
				<item>
			<title>More fluid hover on menu</title>
			<link>http://www.daniweb.com/web-development/web-design-html-and-css/threads/454945/more-fluid-hover-on-menu</link>
			<pubDate>Sun, 19 May 2013 22:27:27 +0000</pubDate>
			<description>How can I make the menu more fluid than it is now, you will see what I am talking about when you see the fiddle http://jsfiddle.net/jspence29/wCXB5/</description>
			<content:encoded><![CDATA[ <p>How can I make the menu more fluid than it is now, you will see what I am talking about when you see the fiddle<br />
<a href="http://jsfiddle.net/jspence29/wCXB5/" rel="nofollow">http://jsfiddle.net/jspence29/wCXB5/</a></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/web-design-html-and-css/15">Web Design, HTML and CSS</category>
			<dc:creator>jspence29</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/web-design-html-and-css/threads/454945/more-fluid-hover-on-menu</guid>
		</item>
				<item>
			<title>profile page</title>
			<link>http://www.daniweb.com/web-development/php/threads/454944/profile-page</link>
			<pubDate>Sun, 19 May 2013 21:51:26 +0000</pubDate>
			<description>hya ive created a edit profile page for members to fill in and now i need that information to go to members profile page how do i do this ive tried several tutorials in youtube but get nowhere with them i dont need the register or login got that already ...</description>
			<content:encoded><![CDATA[ <p>hya ive created a edit profile page for members to fill in and now i need that information to go to members profile page how do i do this ive tried several tutorials in youtube but get nowhere with them</p>

<p>i dont need the register or login got that already</p>

<p>any help would be much appreicated</p>

<p>ty jan xxx</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>janicemurby</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454944/profile-page</guid>
		</item>
				<item>
			<title>method to call methods problem</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454943/method-to-call-methods-problem</link>
			<pubDate>Sun, 19 May 2013 21:19:35 +0000</pubDate>
			<description>Hello, I'm trying to program a basic program at the moment and have run into some difficulties. I have a method as follows: public static void loadDB() { // load data into datasets - this will be called on form2 the login screen loadTblStaff(); loadTblCars(); } the method is called ...</description>
			<content:encoded><![CDATA[ <p>Hello, I'm trying to program a basic program at the moment and have run into some difficulties. I have a method as follows:</p>

<pre><code class="language-cs">public static void loadDB()
        {
            // load data into datasets  - this will be called on form2 the login screen            
            loadTblStaff();
            loadTblCars();
        }
</code></pre>

<p>the method is called on another form on load. The methods its supposed to call are as follows:</p>

<pre><code class="language-cs">public static void loadTblStaff()
        {
            // prepare, open and load the staff table into dataset ds2
            con.ConnectionString = dbProvider + dbSource;
            MessageBox.Show("loadTblStaff() called");
            con.Open();
            MessageBox.Show("load table staff connection opened");
                sql = "SELECT * FROM tblStaff";
                ds2 = new DataSet();

                da = new OleDbDataAdapter(sql, con);
                da.Fill(ds2, "tblStaff");

            con.Close();

        }




public static void loadTblCars()
        {
            // prepare, open and load the cars table into dataset ds1
            con.ConnectionString = dbProvider + dbSource;
            MessageBox.Show("Loadtablecars called");
            con.Open();
            MessageBox.Show("load table cars connection opened");
                sql = "SELECT * FROM tblCars";
                ds1 = new DataSet();

                da = new OleDbDataAdapter(sql, con);
                da.Fill(ds1, "tblCars");

            con.Close();
        }
</code></pre>

<p>I'm not sure why the program isnt working, but I tried to use messageboxes to find out where the program failed and it seems after the loadDB method there are no calls. I'm new to c# so I am not sure why this is. Please advise.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>pwolf</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454943/method-to-call-methods-problem</guid>
		</item>
				<item>
			<title>remote connection to sql server</title>
			<link>http://www.daniweb.com/web-development/databases/ms-sql/threads/454942/remote-connection-to-sql-server</link>
			<pubDate>Sun, 19 May 2013 21:12:03 +0000</pubDate>
			<description>please help me. i connected two system using a cross over cable, and was able to see the remote servers in both systems but i am experiencing a connection problem to the remote computer. how do i connect to the remote sql database server? and how do i replicate between ...</description>
			<content:encoded><![CDATA[ <p>please help me. i connected two system using a cross over cable, and was able to see the remote servers in both systems but i am experiencing a connection problem to the remote computer.<br />
how do i connect to the remote sql database server?<br />
and how do i replicate between this two database?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/databases/ms-sql/127">MS SQL</category>
			<dc:creator>bios chips</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/databases/ms-sql/threads/454942/remote-connection-to-sql-server</guid>
		</item>
				<item>
			<title>Terms of Services - Custom or a Template</title>
			<link>http://www.daniweb.com/community-center/geeks-lounge/threads/454941/terms-of-services-custom-or-a-template</link>
			<pubDate>Sun, 19 May 2013 20:30:22 +0000</pubDate>
			<description>So, I've always found this bit difficult, and therefore I was wondering what others do in regards to the topic of Terms and Conditions, Privacy Policies and legal mumbo jumbo. The cost of hiring a lawyer to write such legal information for websites is often extremely expensive and therefore it ...</description>
			<content:encoded><![CDATA[ <p>So,</p>

<p>I've always found this bit difficult, and therefore I was wondering what others do in regards to the topic of Terms and Conditions, Privacy Policies and legal mumbo jumbo.<br />
The cost of hiring a lawyer to write such legal information for websites is often extremely expensive and therefore it isn't normally practical for a small independant developers to justify it, however you still need them to protect you from the potential problems that may result from malpractice from your users, and from any approaching third party.</p>

<p>The internet is becoming a legal minefield, and it getting more and more difficult to remain protected.</p>

<p>Do you guys write them yourself, use one of those free online templates or do you actually pay for a lawyer?</p>

<p>Thanks in advance.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/community-center/geeks-lounge/6">Geeks' Lounge</category>
			<dc:creator>AHarrisGsy</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/community-center/geeks-lounge/threads/454941/terms-of-services-custom-or-a-template</guid>
		</item>
				<item>
			<title>compaq 62-238dx display</title>
			<link>http://www.daniweb.com/hardware-and-software/pc-hardware/threads/454940/compaq-62-238dx-display</link>
			<pubDate>Sun, 19 May 2013 20:27:05 +0000</pubDate>
			<description>my nieces laptop (compaq gq62-238dx) was going to a white screen. hooked to an external monitor it works fine. I disassembled it and reseated the display connections. when I first booted after that the screen was blue tinted and then it quit working. the copmuter still works with an external ...</description>
			<content:encoded><![CDATA[ <p>my nieces laptop (compaq gq62-238dx) was going to a white screen.  hooked to an external monitor it works fine.  I disassembled it and reseated the display connections.  when I first booted after that the screen was blue tinted and then it quit working.  the copmuter still works with an external monitor.  I think the inverter for the screen has gone out or the cable is bad.  any thoughts would be appreciated</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/pc-hardware/7">PC Hardware</category>
			<dc:creator>oldhokie</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/pc-hardware/threads/454940/compaq-62-238dx-display</guid>
		</item>
				<item>
			<title>sql syntax</title>
			<link>http://www.daniweb.com/web-development/databases/threads/454939/sql-syntax</link>
			<pubDate>Sun, 19 May 2013 19:54:50 +0000</pubDate>
			<description>what's wrong with my code at line 6, it's give blank page, the output can't display. $kp = $_POST['kp']; $kp2 = $_POST['kp2']; $kp3 = $_POST['kp3']; require(&quot;conn.php&quot;); $sql = &quot;select * from pemohon where kp_baru='$kp' AND kp_baru2='$kp2' AND kp_baru3='$kp3'&quot;;</description>
			<content:encoded><![CDATA[ <p>what's wrong with my code at line 6, it's give blank page, the output can't display.</p>

<pre><code class="language-sql">$kp = $_POST['kp'];
$kp2 = $_POST['kp2'];
$kp3 = $_POST['kp3'];

require("conn.php");
$sql = "select * from pemohon where kp_baru='$kp' AND kp_baru2='$kp2' AND kp_baru3='$kp3'";
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/databases/16">Databases</category>
			<dc:creator>dina85</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/databases/threads/454939/sql-syntax</guid>
		</item>
				<item>
			<title>show checked and unchecked checkboxes in 2 different column</title>
			<link>http://www.daniweb.com/web-development/php/threads/454938/show-checked-and-unchecked-checkboxes-in-2-different-column</link>
			<pubDate>Sun, 19 May 2013 19:54:22 +0000</pubDate>
			<description>Hi Friends, I have 5 checkboxes. What I want is..... I want to check 3 checkboxes so other 2 will be unchecked. After clicking the next button a table will appear and checked checkboxes will show in one column and unchecked will be another column. Can you give any idea ...</description>
			<content:encoded><![CDATA[ <p>Hi Friends,</p>

<p>I have 5 checkboxes. What I want is.....<br />
I want to check 3 checkboxes so other 2 will be unchecked. After clicking the next button a table will appear and checked checkboxes will show in one column and unchecked will be another column.</p>

<p>Can you give any idea how to solve it. example of code will be helpful</p>

<p>Thanks in advance for your help. :)</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>rubai</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454938/show-checked-and-unchecked-checkboxes-in-2-different-column</guid>
		</item>
				<item>
			<title>syntax of query</title>
			<link>http://www.daniweb.com/web-development/databases/ms-sql/threads/454937/syntax-of-query</link>
			<pubDate>Sun, 19 May 2013 19:28:11 +0000</pubDate>
			<description>hi i am new to sql i want to get some values from different tables and i have made my own logic like that &quot;SELECT course_name, course_id FROM tbl_course WHERE course_id = (SELECT course_id FROM tbl_enrollment WHERE student_id = '&quot; + lbl_StudentID.Text + &quot;')&quot; what could the correct sytax for ...</description>
			<content:encoded><![CDATA[ <p>hi<br />
i am new to sql i want to get some values from different tables and i have made my own logic like that</p>

<pre><code class="language-sql">"SELECT course_name, course_id 
FROM tbl_course 
WHERE course_id = (SELECT course_id 
                    FROM tbl_enrollment 
                    WHERE student_id = '" + lbl_StudentID.Text + "')"
</code></pre>

<p>what could the correct sytax for this<br />
the subquery returns more than one value that is<br />
there are some course ids corresponding to student id in enrollment table<br />
now i want to select course name and course id from course table which matches those course ids</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/databases/ms-sql/127">MS SQL</category>
			<dc:creator>de Source</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/databases/ms-sql/threads/454937/syntax-of-query</guid>
		</item>
				<item>
			<title>how to combine values with select into one insert for multiple results</title>
			<link>http://www.daniweb.com/web-development/databases/ms-sql/threads/454936/how-to-combine-values-with-select-into-one-insert-for-multiple-results</link>
			<pubDate>Sun, 19 May 2013 19:03:44 +0000</pubDate>
			<description>i am trying to make this code work with no success. Can anyone help me? ` $to = $_POST[&quot;credits&quot;]; $messaging = $_POST[&quot;message&quot;]; $sub = $_POST[&quot;subject&quot;]; @mysql_query(&quot;INSERT INTO `mp_creditmail` (`Id`, `message`, `subject`, `read`) ('select Id from oto_members ORDER BY RAND() Limit $to;', '$messaging', '$sub', no&quot;);` i am trying to insert several ...</description>
			<content:encoded><![CDATA[ <p>i am trying to make this code work with no success. Can anyone help me?<br />
`<br />
$to = $_POST["credits"];<br />
$messaging = $_POST["message"];<br />
$sub = $_POST["subject"];</p>

<p>@mysql_query("INSERT INTO <code>mp_creditmail</code> (<code>Id</code>, <code>message</code>, <code>subject</code>, <code>read</code>) ('select Id from oto_members ORDER BY RAND() Limit $to;', '$messaging', '$sub', no");`</p>

<p>i am trying to insert several instanses using random id's from a query that grabs them randomly limited the the amount of credits used. so if using 50 credits, will grab 50 random id's then insert the message, sub, into the database for each of the grabbed id's...</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/databases/ms-sql/127">MS SQL</category>
			<dc:creator>sparksguy</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/databases/ms-sql/threads/454936/how-to-combine-values-with-select-into-one-insert-for-multiple-results</guid>
		</item>
				<item>
			<title>Jquery Chrome extension</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454935/jquery-chrome-extension</link>
			<pubDate>Sun, 19 May 2013 18:08:47 +0000</pubDate>
			<description>I am making a google chrome extension which pops out a div when you click on the comment box on a post in facebook and everything seems to be working perfectly. Except it only works for the posts that are first loaded with the site and not the ones which ...</description>
			<content:encoded><![CDATA[ <p>I am making a google chrome extension which pops out a div when you click on the comment box on a post in facebook and everything seems to be working perfectly. Except it only works for the posts that are first loaded with the site and not the ones which are dynamically loaded. any ideas why this could be?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>lttleastig</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454935/jquery-chrome-extension</guid>
		</item>
				<item>
			<title>Clearing Textboxes (Foreach) Not Working</title>
			<link>http://www.daniweb.com/web-development/aspnet/threads/454934/clearing-textboxes-foreach-not-working</link>
			<pubDate>Sun, 19 May 2013 17:39:28 +0000</pubDate>
			<description> protected void Button1_Click(object sender, EventArgs e) { ClearTextBoxes(this); } public void ClearTextBoxes(Control control) { foreach (Control c in control.Controls) { if (c is TextBox) { ((TextBox)c).Text = &quot; &quot;; } } Hi all. I am writing a program using Microsoft Visual Web Developer. I have 3 textboxes (TextBox1, TextBox2 and ...</description>
			<content:encoded><![CDATA[ <pre><code>    protected void Button1_Click(object sender, EventArgs e)
    {
          ClearTextBoxes(this);
    }


    public void ClearTextBoxes(Control control)
    {
           foreach (Control c in control.Controls)
           {
              if (c is TextBox)
              {
                 ((TextBox)c).Text = " ";
              }


     }
</code></pre>

<p>Hi all. I am writing a program using Microsoft Visual Web Developer. I have 3 textboxes (TextBox1, TextBox2 and TextBox3) and a button. I want to use a foreach loop to clear textboxes.</p>

<p>For some reason this code doesnt work on a Webform. While debugging it, the debugger skips the line: "if (c is TextBox)" and so the textboxes dont get cleared. Here "control = {ASP.default_aspx}"</p>

<p>When I use the below code in Microsoft Visual C# with a windows form it works. What could be wrong?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/aspnet/18">ASP.NET</category>
			<dc:creator>Black_Lion</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/aspnet/threads/454934/clearing-textboxes-foreach-not-working</guid>
		</item>
				<item>
			<title>C#  and HWND  need help</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454933/c-and-hwnd-need-help</link>
			<pubDate>Sun, 19 May 2013 17:13:34 +0000</pubDate>
			<description>I am used to c++ straight forward winAPI functions, but decided I need to learn c# and this whole .NET stuff since I'm stubborn like that. What I'm wondering is how do I set an HWND ? In c++ I would use something like HWND hwnd1 = FindWindow(0,&quot;Title of the ...</description>
			<content:encoded><![CDATA[ <p>I am used to c++ straight forward winAPI functions, but decided I need to learn c# and this whole .NET stuff since I'm stubborn like that.</p>

<p>What I'm wondering is how do I set an HWND ?<br />
In c++  I would use something like  HWND hwnd1 =  FindWindow(0,"Title of the window I am after");</p>

<p>Thank you,  - Cody Oebel</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>CodyOebel</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454933/c-and-hwnd-need-help</guid>
		</item>
				<item>
			<title>Html5 video not working no matter what i try</title>
			<link>http://www.daniweb.com/web-development/web-design-html-and-css/threads/454932/html5-video-not-working-no-matter-what-i-try</link>
			<pubDate>Sun, 19 May 2013 16:49:44 +0000</pubDate>
			<description> &lt;video controls=&quot;controls&quot; width=&quot;500&quot; autostart=&quot;False&quot;&gt; &lt;source src=&quot;vid/Chantel.webm&quot; type=&quot;video/webm&quot; &gt; &lt;source src=&quot;vid/Chantel.mp4&quot; type=&quot;video/mp4&quot; &gt; &lt;source src=&quot;vid/Chantel_libtheora.ogv&quot; type=&quot;video/ogg&quot;&gt; &lt;object data=&quot;vid/Chantel.mp4&quot; width=&quot;500&quot;&gt; &lt;embed src=&quot;vid/Chantel.swf&quot; width=&quot;320&quot; height=&quot;240&quot;&gt; &lt;/embed&gt; &lt;/object&gt; &lt;/video&gt;</description>
			<content:encoded><![CDATA[ <pre><code class="language-xhtml">            &lt;video controls="controls" width="500" autostart="False"&gt;
                &lt;source src="vid/Chantel.webm" type="video/webm" &gt;
                &lt;source src="vid/Chantel.mp4" type="video/mp4" &gt;
                &lt;source src="vid/Chantel_libtheora.ogv" type="video/ogg"&gt;
                &lt;object data="vid/Chantel.mp4" width="500"&gt;
                    &lt;embed src="vid/Chantel.swf" width="320" height="240"&gt; &lt;/embed&gt;
                &lt;/object&gt;
            &lt;/video&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/web-design-html-and-css/15">Web Design, HTML and CSS</category>
			<dc:creator>Carlosherre</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/web-design-html-and-css/threads/454932/html5-video-not-working-no-matter-what-i-try</guid>
		</item>
				<item>
			<title>Making a pygame cursor using an XBM file</title>
			<link>http://www.daniweb.com/software-development/python/threads/454930/making-a-pygame-cursor-using-an-xbm-file</link>
			<pubDate>Sun, 19 May 2013 16:49:28 +0000</pubDate>
			<description>Hi, I am tring to make a custom cursor in pygame and I would like to use a XBM file to do so. I am wondering if somebody could please give me an example on how to create a XBM cursor, how to load it into pygame, and how to ...</description>
			<content:encoded><![CDATA[ <p>Hi, I am tring to make a custom cursor in pygame and I would like to use a XBM file to do so. I am wondering if somebody could please give me an example on how to create a XBM cursor, how to load it into pygame, and how to set it as your current cursor. Thanks.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/python/114">Python</category>
			<dc:creator>26bm</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/python/threads/454930/making-a-pygame-cursor-using-an-xbm-file</guid>
		</item>
				<item>
			<title>Reading text file lines</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454929/reading-text-file-lines</link>
			<pubDate>Sun, 19 May 2013 16:42:09 +0000</pubDate>
			<description>I need help reading lines from text files. I have been trying to read the first line just using getline(stream,line) assuming that my text file starts on the first line. This line of the text file is supposed to tell you how many lines there are so the next step ...</description>
			<content:encoded><![CDATA[ <p>I need help reading lines from text files. I have been trying to read the first line just using getline(stream,line) assuming that my text file starts on the first line. This line of the text file is supposed to tell you how many lines there are so the next step I wrote while(x&lt;= line) but I am unsure of how to read the 2nd or 3rd etc. line. Thanks in advance.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>jt1250champ</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454929/reading-text-file-lines</guid>
		</item>
				<item>
			<title>php paging error</title>
			<link>http://www.daniweb.com/web-development/php/threads/454928/php-paging-error</link>
			<pubDate>Sun, 19 May 2013 16:01:41 +0000</pubDate>
			<description>I'm using the following code for my paging on my script &lt;?php $pn = 0; $result = mysql_query(&quot;SELECT * FROM tbl_product WHERE category = '$cat' ORDER BY id ASC &quot;); $nr = mysql_num_rows($result); if (isset($_GET['pn'])) { // Get pn from URL vars if it is present $pn = $_GET['pn'];// filter ...</description>
			<content:encoded><![CDATA[ <p>I'm using the following code for my paging on my script</p>

<pre><code>&lt;?php
$pn = 0;


$result = mysql_query("SELECT * FROM tbl_product WHERE category = '$cat' ORDER BY id ASC ");

$nr = mysql_num_rows($result);
if (isset($_GET['pn'])) { // Get pn from URL vars if it is present
    $pn = $_GET['pn'];// filter everything but numbers for security(new)
} else { // If the pn URL variable is not present force it to be value of page number 1
    $pn = 1;
} 
//This is where we set how many database items to show on each page 
$itemsPerPage = 5; 
// Get the value of the last page in the pagination result set
$lastPage = ceil($nr / $itemsPerPage);
// Be sure URL variable $pn(page number) is no lower than page 1 and no higher than $lastpage
if ($pn &lt; 1) { // If it is less than 1
    $pn = 1; // force if to be 1
} else if ($pn &gt; $lastPage) { // if it is greater than $lastpage
    $pn = $lastPage; // force it to be $lastpage's value
} 

// This creates the numbers to click in between the next and back buttons
$centerPages = ""; // Initialize this variable
$sub1 = $pn - 1;
$sub2 = $pn - 2;
$add1 = $pn + 1;
$add2 = $pn + 2;
if ($pn == 1) {
    $centerPages .= '&amp;nbsp; &lt;span class="pagNumActive"&gt;' . $pn . '&lt;/span&gt; &amp;nbsp;';
    $centerPages .= '&amp;nbsp; &lt;a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $add1 . '"&gt;' . $add1 . '&lt;/a&gt; &amp;nbsp;';
} else if ($pn == $lastPage) {
    $centerPages .= '&amp;nbsp; &lt;a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $sub1 . '"&gt;' . $sub1 . '&lt;/a&gt; &amp;nbsp;';
    $centerPages .= '&amp;nbsp; &lt;span class="pagNumActive"&gt;' . $pn . '&lt;/span&gt; &amp;nbsp;';
} else if ($pn &gt; 2 &amp;&amp; $pn &lt; ($lastPage - 1)) {
    $centerPages .= '&amp;nbsp; &lt;a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $sub2 . '"&gt;' . $sub2 . '&lt;/a&gt; &amp;nbsp;';
    $centerPages .= '&amp;nbsp; &lt;a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $sub1 . '"&gt;' . $sub1 . '&lt;/a&gt; &amp;nbsp;';
    $centerPages .= '&amp;nbsp; &lt;span class="pagNumActive"&gt;' . $pn . '&lt;/span&gt; &amp;nbsp;';
    $centerPages .= '&amp;nbsp; &lt;a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $add1 . '"&gt;' . $add1 . '&lt;/a&gt; &amp;nbsp;';
    $centerPages .= '&amp;nbsp; &lt;a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $add2 . '"&gt;' . $add2 . '&lt;/a&gt; &amp;nbsp;';
} else if ($pn &gt; 1 &amp;&amp; $pn &lt; $lastPage) {
    $centerPages .= '&amp;nbsp; &lt;a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $sub1 . '"&gt;' . $sub1 . '&lt;/a&gt; &amp;nbsp;';
    $centerPages .= '&amp;nbsp; &lt;span class="pagNumActive"&gt;' . $pn . '&lt;/span&gt; &amp;nbsp;';
    $centerPages .= '&amp;nbsp; &lt;a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $add1 . '"&gt;' . $add1 . '&lt;/a&gt; &amp;nbsp;';
}
// This line sets the "LIMIT" range... the 2 values we place to choose a range of rows from database in our query
$limit = 'LIMIT '.($pn - 1) * $itemsPerPage .','.$itemsPerPage; //returns negative range
// Now we are going to run the same query as above but this time add $limit onto the end of the SQL syntax
// $sql2 is what we will use to fuel our while loop statement below


$result2 = mysql_query("SELECT * FROM tbl_product WHERE category = '$cat' ORDER BY id ASC $limit");//query fails
if(!$result2)
echo  "ERROR".mysql_error();

//PAGINATION DISPLAY

$paginationDisplay = ""; // Initialize the pagination output variable
// This code runs only if the last page variable is not equal to 1, if it is only 1 page we require no paginated links to display
if ($lastPage != "1"){
    // This shows the user what page they are on, and the total number of pages
    $paginationDisplay .= 'Page &lt;strong&gt;' . $pn . '&lt;/strong&gt; of ' . $lastPage. '';
    // If we are not on page 1 we can place the Back button
    if ($pn != 1) {
        $previous = $pn - 1;
        $paginationDisplay .=  '&amp;nbsp;  &lt;a href="' . $_SERVER['PHP_SELF'] . '?pn='.$previous.'"&gt; Back&lt;/a&gt; ';
    } 
    // Lay in the clickable numbers display here between the Back and Next links
    $paginationDisplay .= '&lt;span class="paginationNumbers"&gt;' . $centerPages . '&lt;/span&gt;';
    // If we are not on the very last page we can place the Next button
    if ($pn != $lastPage) {
        $nextPage = $pn + 1;
        $paginationDisplay .=  '&amp;nbsp;  &lt;a href="' . $_SERVER['PHP_SELF'] . '?pn='.$nextPage.'"&gt; Next&lt;/a&gt; ';
    } 
}

?&gt;
&lt;!-- SOME HTML STUFF --&gt;
</code></pre>

<p>THEN I USE THIS LOOP TO RETRIEVE ITEMS IN THE HTML BODY</p>

<pre><code>&lt;?php
while($row = mysql_fetch_row($result2)){
        echo '&lt;div class="product_info"&gt;';
          echo '&lt;div class="category_product_number"&gt;#'.$row[0].'('.$row[1].')'.'&lt;/div&gt;';
         echo '&lt;div class="category_product_description"&gt;'.$row[2].'&lt;/div&gt;';
         echo '&lt;div class="category_product_price"&gt;'.$row[4].'TL&lt;/div&gt;';
      echo '&lt;/div&gt;';
      }

      ?&gt;
</code></pre>

<p>AND TO DISPLAY THE PAGINATION I DO THIS SOMEWHERE BELOW THIS LOOP<br /><code>&lt;div class="central_container"&gt;&lt;span class="current_page"&gt;Showing &lt;?php echo $paginationDisplay; ?&gt;&lt;/span&gt;&lt;/div&gt;</code></p>

<p>HOWEVER, when i run the code, i get this error: "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-5,5' at line 1".</p>

<p>It seems i get a negative page number when i click the "NEXT" link or try to move to a new page (by clicking that page number), so the query returns a negative range for LIMIT. But I don't know why because i have a conditon that makes sure there are no negative page numbers. I know it's a lot of code but any help figuring out the issue will be appreciated. Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>dhani09</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454928/php-paging-error</guid>
		</item>
				<item>
			<title>C dissecting protocol level 3 and application and url name in packet hex va</title>
			<link>http://www.daniweb.com/software-development/c/threads/454927/c-dissecting-protocol-level-3-and-application-and-url-name-in-packet-hex-va</link>
			<pubDate>Sun, 19 May 2013 16:01:24 +0000</pubDate>
			<description>We are able to capture the whole packet hex values. The issue now from the hex values we want to dissect the level 3 protocol, application level protocol and also if the url value is present in the packet. How best to achieve this in C?</description>
			<content:encoded><![CDATA[ <p>We are able to capture the whole packet hex values. The issue now from the hex values we want to dissect the level 3 protocol, application level protocol and also if the url value is present in the packet. How best to achieve this in C?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/c/118">C</category>
			<dc:creator>newbie14</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/c/threads/454927/c-dissecting-protocol-level-3-and-application-and-url-name-in-packet-hex-va</guid>
		</item>
				<item>
			<title>Visual C++</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454926/visual-c</link>
			<pubDate>Sun, 19 May 2013 15:59:23 +0000</pubDate>
			<description>Hii guys.. Iam having problems with visual c++ i created a win32 application in visual c++..then if tried to execute a noraml turboc3 developed C++ porogram..then it is showing some errors regarding the header files... the error is... 1&gt;cvar.cpp 1&gt;d:\mallika\stuff\cpp\cvar.cpp(1) : fatal error C1083: Cannot open include file: 'iostream.h': No ...</description>
			<content:encoded><![CDATA[ <p>Hii guys..<br />
Iam having problems with visual c++<br />
i created a win32 application in visual c++..then if tried to execute a noraml turboc3 developed C++ porogram..then it is showing some errors regarding the header files...<br />
the error is...</p>

<p>1&gt;cvar.cpp<br />
1&gt;d:\mallika\stuff\cpp\cvar.cpp(1) : fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory<br />
1&gt;Build log was saved at "file://c:\Users\Mallika.Maruthi-PC\Documents\Visual Studio 2008\Projects\11\11\Debug\BuildLog.htm"<br />
1&gt;11 - 1 error(s), 0 warning(s)<br />
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========</p>

<p>how to solve it..pls help..</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>mallikaalokam</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454926/visual-c</guid>
		</item>
				<item>
			<title>The Method is undefined for the type Arraylist</title>
			<link>http://www.daniweb.com/software-development/java/threads/454925/the-method-is-undefined-for-the-type-arraylist</link>
			<pubDate>Sun, 19 May 2013 15:47:04 +0000</pubDate>
			<description>Hi guys, i am working on a Project about mobile Navigation on a lego Mindstorms Robot but i am stuck right now. I get this error:&quot;The method MinDistanceNode() is undefined for the type ArrayList&lt;Node&gt;&quot; I have four different Classes. The problem is probablyin &quot;DijkstraAlgorithm&quot; or in the Method &quot;minDistanceNode&quot; which ...</description>
			<content:encoded><![CDATA[ <p>Hi guys,</p>

<p>i am working on a Project about mobile Navigation on a lego Mindstorms Robot but i am stuck right now.</p>

<p>I get this error:"The method MinDistanceNode() is undefined for the type ArrayList&lt;Node&gt;"</p>

<p>I have four different Classes. The problem is probablyin "DijkstraAlgorithm" or in the Method "minDistanceNode" which is in the Class Node.</p>

<h1>First class DijkstraAlgorithm</h1>

<pre><code class="language-java">package navigation;

import java.util.ArrayList;
import maps.topological.Node;
import maps.topological.TopoMap;

class DijkstraAlgorithm {

    public static void compute(int startNode, TopoMap graph) {

        int numberOfNodes = Node.numberOfNodes;

        int[] distance = new int[numberOfNodes];
        int[] parent = new int[numberOfNodes];
        int[][] weight = new int[numberOfNodes][numberOfNodes];

        // Initialisierung von Distanzen und Vorgaengerknoten
        for (int iNode = 0; iNode &lt; numberOfNodes; ++iNode) {
            distance[iNode] = -1;
            parent[iNode] = -1;
        }
        // Distanz des Startknotens zu sich selbst
        distance[startNode] = 0;
        parent[startNode] = -1;


        // Write all Nodes in a Nodeslist
        ArrayList&lt;Node&gt; nodesUnvisited = graph.getNodes();

        // Dijkstra-Algorithmus: do it until all Nodes are visited
        // and the distances are measured
        while (nodesUnvisited.size() &gt; 0) {

            // get the Node with the smallest distance to your start Node
            int actual = nodesUnvisited.MinDistanceNode();             //Here is the error
            // ... and delete it from the list
            nodesUnvisited.remove(actual);


        }
    }
}
</code></pre>

<h1>second Class Node</h1>

<pre><code class="language-java">package maps.topological;

import java.util.ArrayList;
import java.util.Iterator;

import lejos.geom.Point;


public class Node {
    public static short numberOfNodes = 0;

    private short number;
    public static int nodeNumber;
    private Point position;
    // ggf. einfache Liste
    private ArrayList&lt;Edge&gt; edges;



    Node(float x, float y) {
        numberOfNodes += 1;
        number = numberOfNodes;
        position = new Point(x, y);
        edges = new ArrayList&lt;Edge&gt;();
    }

    public short getNumber() {
        return number;
    }

    public Point getPosition() {
        return position;
    }





    /**
     * Findet den Nachbarknoten mit der minimalen Distanz
     * 
     * @return Knotenindex dieses Knotens, -1 wenn kein Nachbar existiert
     */
    public int MinDistanceNode() {
        Iterator&lt;Edge&gt; iter = edges.iterator();
        int nodeNumber = -1;
        float lastWeight;

        if (iter.hasNext()) {
            Edge e = iter.next();
            lastWeight = e.weight;
            nodeNumber = e.targetNodeNumber;

            while (iter.hasNext()) {
                e = iter.next();

                if (e.weight &lt; lastWeight) {
                    nodeNumber = e.targetNodeNumber;
                    lastWeight = e.weight;
                }

            }
        }
        return nodeNumber;
    }
}
</code></pre>

<h1>Third Class TopoMap</h1>

<pre><code class="language-java">package maps.topological;

import java.util.ArrayList;
import java.util.Iterator;

import lejos.geom.Point;

/**
 * Topologische Karte - implementiert durch die Adjazenzlistenrepräsentation
 * eines Graphen
 * 
 */
public class TopoMap {

    public ArrayList&lt;Node&gt; nodes;

    // zulässiger Positionsfehler für das Aufinden von Knoten
    private float error = 0.25f;

    public TopoMap() {
        nodes = new ArrayList&lt;Node&gt;();
    }

    /**
     * @param error
     */
    public TopoMap(float error) {
        nodes = new ArrayList&lt;Node&gt;();
        this.error = error;
    }

    /**
     * Fügt einen Knoten mit den Koordinaten (x,y) ein
     * 
     * @param x
     * @param y
     */
    public void addNode(float x, float y) {
        if (this.getNodeByPos(x, y) == null) {
            nodes.add(new Node(x, y));
        }
    }

    /**
     * 
     * @return sort the List
     */
    public ArrayList&lt;Node&gt; getNodes() {
        ArrayList&lt;Node&gt; ret = new ArrayList&lt;Node&gt;();

        for (short i = 0; i &lt;= nodes.size(); i++) {
            ret.add(i, this.getNodeByNumber(i));
        }

        return ret;
    }

}
</code></pre>

<h1>fourth Class Edge</h1>

<pre><code class="language-java">package maps.topological;

/**
 * Kante einer topologischen Karte
 */
public class Edge implements Comparable&lt;Edge&gt; {
    short targetNodeNumber;
    float weight;

    Edge(short j, float weight) {
        targetNodeNumber = j;
        this.weight = weight;
    }

    Edge(short toNode) {
        targetNodeNumber = toNode;
        this.weight = 1;
    }

    public void updateWeight(float newWeight) {
        this.weight = newWeight;
    }

    @Override
    public int compareTo(Edge o) {
        // Kanten zu gleichem Knoten sollten nicht doppelt vorkommen
        if (this.targetNodeNumber &lt; o.targetNodeNumber)
            return -1;
        else
            return 1;
    }
}
</code></pre>

<p>What am i doing wrong? Please help me!</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>Keaselstein</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454925/the-method-is-undefined-for-the-type-arraylist</guid>
		</item>
				<item>
			<title>Are You Missing the Boat With Google Plus?</title>
			<link>http://www.daniweb.com/internet-marketing/social-media-and-communities/threads/454924/are-you-missing-the-boat-with-google-plus</link>
			<pubDate>Sun, 19 May 2013 15:39:40 +0000</pubDate>
			<description>Did you know that a few weeks ago, Google Plus became the second most popular Social Media platform, AND it is owned by Google? These are both very good reasons why you cannot afford to ignore the Google Plus network. If Google loves something (and it loves Google Plus) we ...</description>
			<content:encoded><![CDATA[ <p>Did you know that a few weeks ago, Google Plus became the second most popular Social Media platform, AND it is owned by Google? These are both very good reasons why you cannot afford to ignore the Google Plus network.  If Google loves something (and it loves Google Plus) we have to love it too.  That is today's reality, like it or not.</p>

<p>Google Plus gives bloggers more than Facebook - it allows you to claim all your online Content wherever it is published online, link it up and brand it all with your name as Author and an identifying photo.  Google Plus also allows you to add your photo to all your SERP listings, which has been proven to increase click rates and therefore your traffic from Google searches.</p>

<p>At Google Plus you can add people into an unlimited number of different 'circles'. This means there is more flexibilty than the very basic Facebook Likes and Friends. You can have different circles for all the different areas of your online life.  My experience is that it is much easier to 'drive' than Facebook, and has a lot more flexibility.  I definitely like Google Plus whereas I have never liked Facebook where I often feel like I am being stalked by people I don't even know.</p>

<p>Setting up your Google Plus account is easy. But linking everything all together with all the steps required to Verify Email Addresses, Verify photos, add the rel="me", rel="author" and rel="publisher" can be tricky to get right.</p>

<p>I have written 5 articles that explain in detail, all the steps you need to get right, if you want to make it all sync up successfully.   Here is a link to the first article in the series:</p>

<p><a href="http://www.mysecondmillion.com/google-authorship-explained/" rel="nofollow">Google Authorship Explained: Why You Need It To Increase Traffic</a></p>

<p>If you haven't yet set up your Google Plus Profile and Business Pages, claimed and Branded your online Content, and got your photo appearing in Google Searches,  you need to do it <em>before</em> you find that you have been left behind, wondering where all your traffic went.</p>

<p>Just do it, and do it today.  And if you are <em>really</em> nice to me, I might consider adding your to my elite Google Plus Circle of 'Bloggers That I Trust'!</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/internet-marketing/social-media-and-communities/50">Social Media and Communities</category>
			<dc:creator>carolm456</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/internet-marketing/social-media-and-communities/threads/454924/are-you-missing-the-boat-with-google-plus</guid>
		</item>
				<item>
			<title>MicrosoftSDK installation failure need help</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454923/microsoftsdk-installation-failure-need-help</link>
			<pubDate>Sun, 19 May 2013 15:39:28 +0000</pubDate>
			<description> I cannot get the microsoft SDK installed. This is the log file. I'm on windows 7 pro 64bit. I am running Kaspersky Internet Security 2013 if this may be an issue. Any help would be appreciated. 10:29:27 AM Sunday, May 19, 2013: ------------------------------------------------------------------------------------------------- 10:29:27 AM Sunday, May 19, 2013: [SDKSetup:Info] ...</description>
			<content:encoded><![CDATA[ <p>I cannot get the microsoft SDK installed. This is the log file.<br />
I'm on windows 7 pro 64bit. I am running Kaspersky Internet Security 2013 if this may be an issue.<br />
Any help would be appreciated.</p>

<pre><code class="language-cpp">10:29:27 AM Sunday, May 19, 2013: -------------------------------------------------------------------------------------------------
10:29:27 AM Sunday, May 19, 2013: [SDKSetup:Info] Begin
10:29:27 AM Sunday, May 19, 2013: [SDKSetup:Info] SDKSetup Version 7.1.7600.30111
10:29:30 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CSDKSetup.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\SDKSetup.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\SDKSetup.cab
10:29:31 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CSDKSetup.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\SDKSetup.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\SDKSetup.cab
10:29:40 AM Sunday, May 19, 2013: [SDKSetup:Info] SDKSetupDll_DoTasks: Starting
10:29:45 AM Sunday, May 19, 2013: [SDKSetup:Info] SDKSetupDll_DoTasksWithGUI: Starting
10:29:49 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_OS_Detect: Operating system installation (detected)
10:29:49 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_MSI_Detect: Windows Installer Setup (detected)
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK for Windows 7
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK for Windows 7;  Installed: Unknown;
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKproduct.
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK for Windows 7
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK for Windows 7 Headers and Libraries
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK for Windows 7 Headers and Libraries;  Installed: Unknown;
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKBuildproduct.
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK for Windows 7 Headers and Libraries
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK for Windows 7 Common Utilities
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK for Windows 7 Common Utilities;  Installed: Unknown;
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKToolsproduct.
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK for Windows 7 Common Utilities
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK for Windows 7 Utilities for Win32 Development
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK for Windows 7 Utilities for Win32 Development;  Installed: Unknown;
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKWin32Toolsproduct.
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK for Windows 7 Utilities for Win32 Development
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK for Windows 7 Samples
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK for Windows 7 Samples;  Installed: Unknown;
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKSamplesproduct.
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK for Windows 7 Samples
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK Net Fx Interop Headers And Libraries
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK Net Fx Interop Headers And Libraries;  Installed: Unknown;
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKInteropproduct.
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK Net Fx Interop Headers And Libraries
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK Intellisense and Reference Assemblies
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK Intellisense and Reference Assemblies;  Installed: Unknown;
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKIntellisenseRefAssysproduct.
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK Intellisense and Reference Assemblies
10:29:50 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft .Net Framework Reference Assemblies
10:29:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineMSIFeatureState_Begin: MSI Feature: F_NetFx_DTP
10:29:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineMSIFeatureState:       MSI Feature: F_NetFx_DTP;  Installed: Local;  Request: Unknown;
10:29:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineMSIFeatureState_End:   MSI Feature: F_NetFx_DTP
10:29:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineMSIFeatureState_Begin: MSI Feature: Servicing_Key
10:29:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineMSIFeatureState:       MSI Feature: Servicing_Key;  Installed: Local;  Request: Unknown;
10:29:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineMSIFeatureState_End:   MSI Feature: Servicing_Key
10:29:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineMSIFeatureState_Begin: MSI Feature: EXTUI
10:29:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineMSIFeatureState:       MSI Feature: EXTUI;  Installed: Unknown;  Request: Unknown;
10:29:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineMSIFeatureState_End:   MSI Feature: EXTUI
10:29:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft .Net Framework Reference Assemblies;  Installed: Default;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported the following source locations for the NetFxRefAssysproduct: C:\ProgramData\Package Cache\{CFEF48A8-BFB8-3EAC-8BA5-DE4F8AA267CE}v4.0.30319\packages\NetFxDTP\
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft .Net Framework Reference Assemblies
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK for Windows 7 Intellisense for .Net
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK for Windows 7 Intellisense for .Net;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKIntellisenseNFXproduct.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK for Windows 7 Intellisense for .Net
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK for Windows 7 Compilers for x86
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK for Windows 7 Compilers for x86;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the vc_stdx86product.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK for Windows 7 Compilers for x86
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK for Windows 7 Compilers for x64
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK for Windows 7 Compilers for x64;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the vc_stdamd64product.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK for Windows 7 Compilers for x64
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK for Windows 7 Tools for .NET Development
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK for Windows 7 Tools for .NET Development;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKNetFxToolsproduct.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK for Windows 7 Tools for .NET Development
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Application Verifier
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Application Verifier;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKApplicationVerifierproduct.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Application Verifier
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Windows Debugging Tools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Windows Debugging Tools;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKDebuggingToolsproduct.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Windows Debugging Tools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Redistributable Components for Application Verifier and Windows Debugging Tools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Redistributable Components for Application Verifier and Windows Debugging Tools;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKAppVerDebuggingToolsRedistproduct.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Redistributable Components for Application Verifier and Windows Debugging Tools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Redistributable Components for Application Verifier
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Redistributable Components for Application Verifier;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the AppVerRedistproduct.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Redistributable Components for Application Verifier
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Redistributable Components for Windows Debugging Tools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Redistributable Components for Windows Debugging Tools;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the DebuggingToolsRedistproduct.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Redistributable Components for Windows Debugging Tools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK for Windows 7 Tools for .NET 4 Development
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK for Windows 7 Tools for .NET 4 Development;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKNetFx40Toolsproduct.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK for Windows 7 Tools for .NET 4 Development
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Help Viewer
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Help Viewer;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKHelpproduct.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Help Viewer
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Windows Performance Toolkit
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Windows Performance Toolkit;  Installed: Unknown;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKPerformanceToolKitproduct.
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Windows Performance Toolkit
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: NativeDev
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: NativeDev;  Installed: Absent;  Request: None;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: NativeDev
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: ManagedDev
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: ManagedDev;  Installed: Absent;  Request: None;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: ManagedDev
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: CommonTools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: CommonTools;  Installed: Absent;  Request: None;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: CommonTools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: RedistComponents
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: RedistComponents;  Installed: Absent;  Request: None;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: RedistComponents
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDK_WinSDK
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDK_WinSDK;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDK_WinSDK
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDK_SFX
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDK_SFX;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDK_SFX
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDK_WinSDK_VC_Integration
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDK_WinSDK_VC_Integration;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDK_WinSDK_VC_Integration
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKBuild_WinSDKBuild
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKBuild_WinSDKBuild;  Installed: Absent;  Request: None;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKBuild_WinSDKBuild
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKTools_WinSDK_BIN_DevTools_Desktop
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKTools_WinSDK_BIN_DevTools_Desktop;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKTools_WinSDK_BIN_DevTools_Desktop
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDK_WinSDK_BIN
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDK_WinSDK_BIN;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDK_WinSDK_BIN
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKBuild_VistaHeadersLibs_VistaHeaders
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKBuild_VistaHeadersLibs_VistaHeaders;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKBuild_VistaHeadersLibs_VistaHeaders
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKBuild_VistaHeadersLibs_VistaLibs_X86
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKBuild_VistaHeadersLibs_VistaLibs_X86;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKBuild_VistaHeadersLibs_VistaLibs_X86
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKBuild_VistaHeadersLibs_VistaLibs_X64
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKBuild_VistaHeadersLibs_VistaLibs_X64;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKBuild_VistaHeadersLibs_VistaLibs_X64
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKBuild_VistaHeadersLibs_VistaLibs_IA64
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKBuild_VistaHeadersLibs_VistaLibs_IA64;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKBuild_VistaHeadersLibs_VistaLibs_IA64
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKCompiler_WinSDKCompiler_X64_Compilers
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKCompiler_WinSDKCompiler_X64_Compilers;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKCompiler_WinSDKCompiler_X64_Compilers
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDK_WinSDK_RDC_X86_CRT
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDK_WinSDK_RDC_X86_CRT;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDK_WinSDK_RDC_X86_CRT
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDK_WinSDK_RDC_X64_CRT
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDK_WinSDK_RDC_X64_CRT;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDK_WinSDK_RDC_X64_CRT
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDK_WinSDK_RDC_IA64_CRT
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDK_WinSDK_RDC_IA64_CRT;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDK_WinSDK_RDC_IA64_CRT
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKNetFx40Tools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKNetFx40Tools;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKNetFx40Tools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKInterop_Headers
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKInterop_Headers;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKInterop_Headers
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKInterop_X64Libs
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKInterop_X64Libs;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKInterop_X64Libs
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKInterop_x86Libs
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKInterop_x86Libs;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKInterop_x86Libs
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKInterop_IA64Libs
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKInterop_IA64Libs;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKInterop_IA64Libs
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: F_NetFx_DTP
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: F_NetFx_DTP;  Installed: Local;  Request: None;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: F_NetFx_DTP
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: IntellisenseNFX
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: IntellisenseNFX;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: IntellisenseNFX
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDK_WinSDK_SMP_Win32
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDK_WinSDK_SMP_Win32;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDK_WinSDK_SMP_Win32
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKBuild_VistaHeadersLibs
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKBuild_VistaHeadersLibs;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKBuild_VistaHeadersLibs
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKWin32Tools_WinSDKWin32Tools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKWin32Tools_WinSDKWin32Tools;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKWin32Tools_WinSDKWin32Tools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKCompiler_WinSDKCompiler
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKCompiler_WinSDKCompiler;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKCompiler_WinSDKCompiler
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: Intellisense_RefAssy
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: Intellisense_RefAssy;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: Intellisense_RefAssy
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKInterop_WinSDKInterop
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKInterop_WinSDKInterop;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKInterop_WinSDKInterop
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKNetFxTools_WinSDKNetFxTools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKNetFxTools_WinSDKNetFxTools;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKNetFxTools_WinSDKNetFxTools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKHelp
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKHelp;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKHelp
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKApplicationVerifier
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKApplicationVerifier;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKApplicationVerifier
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKPerformanceToolkit
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKPerformanceToolkit;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKPerformanceToolkit
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKDebuggingTools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKDebuggingTools;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKDebuggingTools
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDK_WinSDK_RDC
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDK_WinSDK_RDC;  Installed: Absent;  Request: Local;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDK_WinSDK_RDC
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: AppVerifierRedistComponents
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: AppVerifierRedistComponents;  Installed: Absent;  Request: None;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: AppVerifierRedistComponents
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: DebuggingToolsRedistComponents
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: DebuggingToolsRedistComponents;  Installed: Absent;  Request: None;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: DebuggingToolsRedistComponents
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_Begin: Feature: WinSDKRedistComponents
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState:       Feature: WinSDKRedistComponents;  Installed: Absent;  Request: None;
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineFeatureState_End:   Feature: WinSDKRedistComponents
10:29:55 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_Detect: Windows SDK Setup (detected)
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_OS_Install: Operating system configuration (installed)
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_MSI_Install: Windows Installer Setup (installed)
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDK_amd64/WinSDK_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDK_amd64/WinSDK_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDK/WinSDK_amd64/WinSDK_amd64.msi size:692224
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/SDKSetup.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/SDKSetup.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDK/SDKSetup.cab size:22708
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDK_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDK_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDK/WinSDK_amd64/cab1.cab size:13672556
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDK_amd64%5CWinSDK_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDK_amd64\WinSDK_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDK\WinSDK_amd64\WinSDK_amd64.msi
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CSDKSetup.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\SDKSetup.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDK\SDKSetup.cab
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CSDKSetup.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\SDKSetup.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDK\SDKSetup.cab
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/SDKSetup.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/SDKSetup.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDK/SDKSetup.cab size:22836
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDK_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDK_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDK\WinSDK_amd64\cab1.cab
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/WinSDKBuild_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/WinSDKBuild_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKBuild/WinSDKBuild_amd64/WinSDKBuild_amd64.msi size:974336
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKBuild/WinSDKBuild_amd64/cab1.cab size:5720612
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab2.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKBuild/WinSDKBuild_amd64/cab2.cab size:6153852
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab3.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKBuild/WinSDKBuild_amd64/cab3.cab size:4797930
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab4.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab4.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKBuild/WinSDKBuild_amd64/cab4.cab size:1049932
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDK_amd64%5CWinSDK_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDK_amd64\WinSDK_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDK\WinSDK_amd64\WinSDK_amd64.msi
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDK_amd64/WinSDK_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDK_amd64/WinSDK_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDK/WinSDK_amd64/WinSDK_amd64.msi size:692224
10:31:00 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKBuild_amd64%5CWinSDKBuild_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKBuild_amd64\WinSDKBuild_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKBuild\WinSDKBuild_amd64\WinSDKBuild_amd64.msi
10:31:01 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKBuild_amd64%5CWinSDKBuild_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKBuild_amd64\WinSDKBuild_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKBuild\WinSDKBuild_amd64\WinSDKBuild_amd64.msi
10:31:01 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/WinSDKBuild_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/WinSDKBuild_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKBuild/WinSDKBuild_amd64/WinSDKBuild_amd64.msi size:974336
10:31:01 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKBuild_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKBuild_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKBuild\WinSDKBuild_amd64\cab1.cab
10:31:03 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKBuild_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKBuild_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKBuild\WinSDKBuild_amd64\cab1.cab
10:31:03 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKBuild/WinSDKBuild_amd64/cab1.cab size:5720612
10:31:03 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKBuild_amd64%5Ccab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKBuild_amd64\cab2.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKBuild\WinSDKBuild_amd64\cab2.cab
10:31:06 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKBuild_amd64%5Ccab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKBuild_amd64\cab2.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKBuild\WinSDKBuild_amd64\cab2.cab
10:31:06 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab2.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKBuild/WinSDKBuild_amd64/cab2.cab size:6153852
10:31:06 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKBuild_amd64%5Ccab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKBuild_amd64\cab3.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKBuild\WinSDKBuild_amd64\cab3.cab
10:31:06 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDK_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDK_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDK\WinSDK_amd64\cab1.cab
10:31:06 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDK_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDK_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDK/WinSDK_amd64/cab1.cab size:13672252
10:31:06 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKBuild_amd64%5Ccab4.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKBuild_amd64\cab4.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKBuild\WinSDKBuild_amd64\cab4.cab
10:31:06 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKTools_amd64/WinSDKTools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKTools_amd64/WinSDKTools_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKTools/WinSDKTools_amd64/WinSDKTools_amd64.msi size:790528
10:31:06 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKTools_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKTools_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKTools/WinSDKTools_amd64/cab1.cab size:12084471
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKBuild_amd64%5Ccab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKBuild_amd64\cab3.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKBuild\WinSDKBuild_amd64\cab3.cab
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab3.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKBuild/WinSDKBuild_amd64/cab3.cab size:4797930
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKTools_amd64%5CWinSDKTools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKTools_amd64\WinSDKTools_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKTools\WinSDKTools_amd64\WinSDKTools_amd64.msi
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKBuild_amd64%5Ccab4.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKBuild_amd64\cab4.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKBuild\WinSDKBuild_amd64\cab4.cab
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab4.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKBuild_amd64/cab4.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKBuild/WinSDKBuild_amd64/cab4.cab size:1049932
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKTools_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKTools_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKTools\WinSDKTools_amd64\cab1.cab
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKWin32Tools_amd64/WinSDKWin32Tools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKWin32Tools_amd64/WinSDKWin32Tools_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKWin32Tools/WinSDKWin32Tools_amd64/WinSDKWin32Tools_amd64.msi size:759808
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKWin32Tools_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKWin32Tools_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKWin32Tools/WinSDKWin32Tools_amd64/cab1.cab size:8685315
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/WinSDKSamples_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/WinSDKSamples_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKSamples/WinSDKSamples_amd64/WinSDKSamples_amd64.msi size:2447872
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKSamples/WinSDKSamples_amd64/cab1.cab size:11615400
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab2.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKSamples/WinSDKSamples_amd64/cab2.cab size:14317157
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab3.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKSamples/WinSDKSamples_amd64/cab3.cab size:2247426
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKTools_amd64%5CWinSDKTools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKTools_amd64\WinSDKTools_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKTools\WinSDKTools_amd64\WinSDKTools_amd64.msi
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKTools_amd64/WinSDKTools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKTools_amd64/WinSDKTools_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKTools/WinSDKTools_amd64/WinSDKTools_amd64.msi size:790528
10:31:07 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKWin32Tools_amd64%5CWinSDKWin32Tools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKWin32Tools_amd64\WinSDKWin32Tools_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKWin32Tools\WinSDKWin32Tools_amd64\WinSDKWin32Tools_amd64.msi
10:31:08 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKInterop_amd64/WinSDKInterop_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKInterop_amd64/WinSDKInterop_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKInterop/WinSDKInterop_amd64/WinSDKInterop_amd64.msi size:668160
10:31:08 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKInterop_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKInterop_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKInterop/WinSDKInterop_amd64/cab1.cab size:384610
10:31:09 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseRefAssys_amd64/WinSDKIntellisenseRefAssys_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseRefAssys_amd64/WinSDKIntellisenseRefAssys_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseRefAssys/WinSDKIntellisenseRefAssys_amd64/WinSDKIntellisenseRefAssys_amd64.msi size:660480
10:31:09 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseRefAssys_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseRefAssys_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseRefAssys/WinSDKIntellisenseRefAssys_amd64/cab1.cab size:1649600
10:31:10 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKTools_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKTools_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKTools\WinSDKTools_amd64\cab1.cab
10:31:10 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKTools_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKTools_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKTools/WinSDKTools_amd64/cab1.cab size:12084471
10:31:10 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKWin32Tools_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKWin32Tools_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKWin32Tools\WinSDKWin32Tools_amd64\cab1.cab
10:31:10 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX.msi size:713728
10:31:10 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/cab1.cab size:2887338
10:31:10 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab2.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/cab2.cab size:3276825
10:31:10 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab3.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/cab3.cab size:3141373
10:31:10 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab4.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab4.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/cab4.cab size:3061037
10:31:10 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab5.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab5.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/cab5.cab size:1828177
10:31:11 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKWin32Tools_amd64%5CWinSDKWin32Tools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKWin32Tools_amd64\WinSDKWin32Tools_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKWin32Tools\WinSDKWin32Tools_amd64\WinSDKWin32Tools_amd64.msi
10:31:11 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKWin32Tools_amd64/WinSDKWin32Tools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKWin32Tools_amd64/WinSDKWin32Tools_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKWin32Tools/WinSDKWin32Tools_amd64/WinSDKWin32Tools_amd64.msi size:759808
10:31:11 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKSamples_amd64%5CWinSDKSamples_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKSamples_amd64\WinSDKSamples_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKSamples\WinSDKSamples_amd64\WinSDKSamples_amd64.msi
10:31:11 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdx86/vc_stdx86.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdx86/vc_stdx86.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/vc_stdx86/vc_stdx86/vc_stdx86.msi size:535552
10:31:11 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdx86/vc_stdx86.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdx86/vc_stdx86.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/vc_stdx86/vc_stdx86/vc_stdx86.cab size:71673244
10:31:12 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdamd64/vc_stdamd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdamd64/vc_stdamd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/vc_stdamd64/vc_stdamd64/vc_stdamd64.msi size:287232
10:31:12 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdamd64/vc_stdamd64.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdamd64/vc_stdamd64.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/vc_stdamd64/vc_stdamd64/vc_stdamd64.cab size:24785124
10:31:12 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKWin32Tools_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKWin32Tools_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKWin32Tools\WinSDKWin32Tools_amd64\cab1.cab
10:31:12 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKWin32Tools_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKWin32Tools_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKWin32Tools/WinSDKWin32Tools_amd64/cab1.cab size:8685315
10:31:12 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKSamples_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKSamples_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKSamples\WinSDKSamples_amd64\cab1.cab
10:31:13 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKSamples_amd64%5CWinSDKSamples_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKSamples_amd64\WinSDKSamples_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKSamples\WinSDKSamples_amd64\WinSDKSamples_amd64.msi
10:31:13 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/WinSDKSamples_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/WinSDKSamples_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKSamples/WinSDKSamples_amd64/WinSDKSamples_amd64.msi size:2447872
10:31:13 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKSamples_amd64%5Ccab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKSamples_amd64\cab2.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKSamples\WinSDKSamples_amd64\cab2.cab
10:31:13 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFxTools_amd64/WinSDK_nfxtoolsm_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFxTools_amd64/WinSDK_nfxtoolsm_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKNetFxTools/WinSDKNetFxTools_amd64/WinSDK_nfxtoolsm_amd64.msi size:772096
10:31:13 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFxTools_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFxTools_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKNetFxTools/WinSDKNetFxTools_amd64/cab1.cab size:6844196
10:31:13 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKApplicationVerifier_amd64/ApplicationVerifier.amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKApplicationVerifier_amd64/ApplicationVerifier.amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKApplicationVerifier/WinSDKApplicationVerifier_amd64/ApplicationVerifier.amd64.msi size:17019904
10:31:13 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebuggingTools_amd64/dbg_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebuggingTools_amd64/dbg_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKDebuggingTools/WinSDKDebuggingTools_amd64/dbg_amd64.msi size:17529856
10:31:15 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/WinSDKRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/WinSDKRedist_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKAppVerDebuggingToolsRedist/WinSDKRedist_amd64/WinSDKRedist_amd64.msi size:650752
10:31:15 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKAppVerDebuggingToolsRedist/WinSDKRedist_amd64/cab1.cab size:38709706
10:31:15 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/cab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/cab2.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKAppVerDebuggingToolsRedist/WinSDKRedist_amd64/cab2.cab size:19562219
10:31:15 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKSamples_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKSamples_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKSamples\WinSDKSamples_amd64\cab1.cab
10:31:15 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKSamples/WinSDKSamples_amd64/cab1.cab size:11615400
10:31:15 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKSamples_amd64%5Ccab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKSamples_amd64\cab3.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKSamples\WinSDKSamples_amd64\cab3.cab
10:31:16 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKAppverRedist_amd64/WinSDKAppverRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKAppverRedist_amd64/WinSDKAppverRedist_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/AppVerRedist/WinSDKAppverRedist_amd64/WinSDKAppverRedist_amd64.msi size:650752
10:31:16 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKAppverRedist_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKAppverRedist_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/AppVerRedist/WinSDKAppverRedist_amd64/cab1.cab size:42088281
10:31:17 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/WinSDKDebugToolsRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/WinSDKDebugToolsRedist_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/DebuggingToolsRedist/WinSDKDebugToolsRedist_amd64/WinSDKDebugToolsRedist_amd64.msi size:650752
10:31:17 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/DebuggingToolsRedist/WinSDKDebugToolsRedist_amd64/cab1.cab size:35874600
10:31:17 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/cab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/cab2.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/DebuggingToolsRedist/WinSDKDebugToolsRedist_amd64/cab2.cab size:26576986
10:31:18 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFx40Tools_amd64/WinSDK_nfx40tools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFx40Tools_amd64/WinSDK_nfx40tools_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKNetFx40Tools/WinSDKNetFx40Tools_amd64/WinSDK_nfx40tools_amd64.msi size:778240
10:31:18 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFx40Tools_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFx40Tools_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKNetFx40Tools/WinSDKNetFx40Tools_amd64/cab1.cab size:3766038
10:31:18 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKSamples_amd64%5Ccab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKSamples_amd64\cab2.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKSamples\WinSDKSamples_amd64\cab2.cab
10:31:18 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab2.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKSamples/WinSDKSamples_amd64/cab2.cab size:14317157
10:31:18 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKInterop_amd64%5CWinSDKInterop_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKInterop_amd64\WinSDKInterop_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKInterop\WinSDKInterop_amd64\WinSDKInterop_amd64.msi
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKhelp_amd64/WinSDKHelp_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKhelp_amd64/WinSDKHelp_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKHelp/WinSDKhelp_amd64/WinSDKHelp_amd64.msi size:905216
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKhelp_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKhelp_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKHelp/WinSDKhelp_amd64/cab1.cab size:1401165
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKSamples_amd64%5Ccab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKSamples_amd64\cab3.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKSamples\WinSDKSamples_amd64\cab3.cab
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKSamples_amd64/cab3.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKSamples/WinSDKSamples_amd64/cab3.cab size:2247426
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKInterop_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKInterop_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKInterop\WinSDKInterop_amd64\cab1.cab
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] File queued for download - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKPerformanceToolKit_amd64/wpt_x64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKPerformanceToolKit_amd64/wpt_x64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKPerformanceToolKit/WinSDKPerformanceToolKit_amd64/wpt_x64.msi size:20184576
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_Begin: Product: Microsoft Windows SDK for Windows 7
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState:       Product: Microsoft Windows SDK for Windows 7;  Installed: Unknown;
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Windows Installer reported no registered source locations for the WinSDKproduct.
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_DetermineProductState_End:   Product: Microsoft Windows SDK for Windows 7
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_InstallNew: Begin installation of new product: Microsoft Windows SDK for Windows 7
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKInterop_amd64%5CWinSDKInterop_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKInterop_amd64\WinSDKInterop_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKInterop\WinSDKInterop_amd64\WinSDKInterop_amd64.msi
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKInterop_amd64/WinSDKInterop_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKInterop_amd64/WinSDKInterop_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKInterop/WinSDKInterop_amd64/WinSDKInterop_amd64.msi size:668160
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseRefAssys_amd64%5CWinSDKIntellisenseRefAssys_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseRefAssys_amd64\WinSDKIntellisenseRefAssys_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseRefAssys\WinSDKIntellisenseRefAssys_amd64\WinSDKIntellisenseRefAssys_amd64.msi
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_InstallNew: Product: Microsoft Windows SDK for Windows 7 Params: C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDK\WinSDK_amd64\WinSDK_amd64.msi ADDLOCAL=WinSDK.1631,WinSDK_BIN.1632,WinSDK_VC_Integration.4496,WinSDK_RDC.1921,WinSDK_RDC_X86_CRT.4042,WinSDK_RDC_X64_CRT.4043,WinSDK_RDC_IA64_CRT.4401,WinSDK_SFX ALL="1" ALL="1" ALL="1" ALL="1" INSTALLLOCATION="C:\Program Files\Microsoft SDKs\Windows\v7.1" REBOOT=ReallySuppress SDKSETUPSOURCEDIR="<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup</a>"
=== Logging started: 5/19/2013  10:31:19 ===
Action start 10:31:20: INSTALL.
Action start 10:31:20: FindRelatedProducts.
Action ended 10:31:20: FindRelatedProducts. Return value 1.
Action start 10:31:20: AppSearch.
Action ended 10:31:20: AppSearch. Return value 0.
Action start 10:31:20: LaunchConditions.
Action ended 10:31:20: LaunchConditions. Return value 1.
Action start 10:31:20: ValidateProductID.
Action ended 10:31:20: ValidateProductID. Return value 1.
Action start 10:31:20: CostInitialize.
Action ended 10:31:20: CostInitialize. Return value 1.
Action start 10:31:20: ResolveSource.
Action ended 10:31:20: ResolveSource. Return value 1.
Action start 10:31:20: FileCost.
Action ended 10:31:21: FileCost. Return value 1.
Action start 10:31:21: CostFinalize.
Action ended 10:31:21: CostFinalize. Return value 1.
Action start 10:31:21: SetODBCFolders.
Action ended 10:31:21: SetODBCFolders. Return value 0.
Action start 10:31:22: MigrateFeatureStates.
Action ended 10:31:22: MigrateFeatureStates. Return value 0.
Action start 10:31:22: InstallValidate.
Action ended 10:31:22: InstallValidate. Return value 1.
Action start 10:31:22: RemoveExistingProducts.
Action ended 10:31:23: RemoveExistingProducts. Return value 1.
Action start 10:31:23: InstallInitialize.
Action ended 10:31:41: InstallInitialize. Return value 1.
Action start 10:31:41: AllocateRegistrySpace.
Action ended 10:31:41: AllocateRegistrySpace. Return value 1.
Action start 10:31:41: ProcessComponents.
Action ended 10:31:42: ProcessComponents. Return value 1.
Action start 10:31:42: MsiUnpublishAssemblies.
Action ended 10:31:42: MsiUnpublishAssemblies. Return value 1.
Action start 10:31:42: UnpublishComponents.
Action ended 10:31:43: UnpublishComponents. Return value 0.
Action start 10:31:43: UnpublishFeatures.
Action ended 10:31:44: UnpublishFeatures. Return value 1.
Action start 10:31:45: StopServices.
Action ended 10:31:45: StopServices. Return value 1.
Action start 10:31:45: DeleteServices.
Action ended 10:31:49: DeleteServices. Return value 1.
Action start 10:31:50: UnregisterComPlus.
Action ended 10:31:50: UnregisterComPlus. Return value 0.
Action start 10:31:50: SelfUnregModules.
Action ended 10:31:51: SelfUnregModules. Return value 1.
Action start 10:31:51: UnregisterTypeLibraries.
Action ended 10:31:51: UnregisterTypeLibraries. Return value 0.
Action start 10:31:52: RemoveODBC.
Action ended 10:31:52: RemoveODBC. Return value 1.
Action start 10:31:52: UnregisterFonts.
Action ended 10:31:52: UnregisterFonts. Return value 1.
Action start 10:31:52: RemoveRegistryValues.
Action ended 10:31:52: RemoveRegistryValues. Return value 1.
Action start 10:31:53: UnregisterClassInfo.
Action ended 10:31:53: UnregisterClassInfo. Return value 0.
Action start 10:31:53: UnregisterExtensionInfo.
Action ended 10:31:53: UnregisterExtensionInfo. Return value 0.
Action start 10:31:53: UnregisterProgIdInfo.
Action ended 10:31:54: UnregisterProgIdInfo. Return value 0.
Action start 10:31:54: UnregisterMIMEInfo.
Action ended 10:31:54: UnregisterMIMEInfo. Return value 0.
Action start 10:31:54: RemoveIniValues.
Action ended 10:31:54: RemoveIniValues. Return value 1.
Action start 10:31:55: RemoveShortcuts.
Action ended 10:31:55: RemoveShortcuts. Return value 1.
Action start 10:31:55: RemoveEnvironmentStrings.
Action ended 10:31:56: RemoveEnvironmentStrings. Return value 1.
Action start 10:31:56: RemoveDuplicateFiles.
Action ended 10:31:56: RemoveDuplicateFiles. Return value 1.
Action start 10:31:56: RemoveFiles.
Action ended 10:31:57: RemoveFiles. Return value 0.
Action start 10:31:57: RemoveFolders.
Action ended 10:31:57: RemoveFolders. Return value 1.
Action start 10:31:57: CreateFolders.
Action ended 10:31:58: CreateFolders. Return value 1.
Action start 10:31:58: MoveFiles.
Action ended 10:31:58: MoveFiles. Return value 1.
Action start 10:31:58: InstallFiles.
Action ended 10:31:58: InstallFiles. Return value 1.
Action start 10:31:59: PatchFiles.
Action ended 10:31:59: PatchFiles. Return value 0.
Action start 10:31:59: DuplicateFiles.
Action ended 10:31:59: DuplicateFiles. Return value 1.
Action start 10:31:59: BindImage.
Action ended 10:31:59: BindImage. Return value 1.
Action start 10:31:59: CreateShortcuts.
Action ended 10:31:59: CreateShortcuts. Return value 1.
Action start 10:31:59: RegisterClassInfo.
Action ended 10:31:59: RegisterClassInfo. Return value 0.
Action start 10:31:59: RegisterExtensionInfo.
Action ended 10:31:59: RegisterExtensionInfo. Return value 0.
Action start 10:31:59: RegisterProgIdInfo.
Action ended 10:31:59: RegisterProgIdInfo. Return value 0.
Action start 10:31:59: RegisterMIMEInfo.
Action ended 10:32:00: RegisterMIMEInfo. Return value 0.
Action start 10:32:00: WriteRegistryValues.
Action ended 10:32:00: WriteRegistryValues. Return value 1.
Action start 10:32:00: WriteIniValues.
Action ended 10:32:00: WriteIniValues. Return value 1.
Action start 10:32:00: WriteEnvironmentStrings.
Action ended 10:32:00: WriteEnvironmentStrings. Return value 1.
Action start 10:32:00: RegisterFonts.
Action ended 10:32:00: RegisterFonts. Return value 1.
Action start 10:32:00: InstallODBC.
Action ended 10:32:00: InstallODBC. Return value 0.
Action start 10:32:00: RegisterTypeLibraries.
Action ended 10:32:00: RegisterTypeLibraries. Return value 0.
Action start 10:32:01: SelfRegModules.
Action ended 10:32:01: SelfRegModules. Return value 1.
Action start 10:32:01: RegisterComPlus.
Action ended 10:32:01: RegisterComPlus. Return value 0.
Action start 10:32:01: InstallServices.
Action ended 10:32:01: InstallServices. Return value 1.
Action start 10:32:01: StartServices.
Action ended 10:32:02: StartServices. Return value 1.
Action start 10:32:02: RegisterUser.
Action ended 10:32:02: RegisterUser. Return value 1.
Action start 10:32:02: RegisterProduct.
Action ended 10:32:02: RegisterProduct. Return value 1.
Action start 10:32:02: PublishComponents.
Action ended 10:32:02: PublishComponents. Return value 0.
Action start 10:32:02: MsiPublishAssemblies.
Action ended 10:32:03: MsiPublishAssemblies. Return value 1.
Action start 10:32:03: PublishFeatures.
Action ended 10:32:03: PublishFeatures. Return value 1.
Action start 10:32:03: PublishProduct.
Action ended 10:32:03: PublishProduct. Return value 1.
Action start 10:32:03: InstallFinalize.
Action ended 10:32:18: InstallFinalize. Return value 1.
Action ended 10:32:18: INSTALL. Return value 1.
Property(S): UpgradeCode = {20550C92-0A08-4B07-9D5A-533BAAA890BB}
Property(S): WinSDK_VC.14794 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Redist\VC\
Property(S): INSTALLLOCATION = C:\Program Files\Microsoft SDKs\Windows\v7.1\
Property(S): WinSDK_License.8160 = C:\Program Files\Microsoft SDKs\Windows\v7.1\License\
Property(S): WinSDK_Setup.9036 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\
Property(S): WinSDK_Setup_1033 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\1033\
Property(S): WinSDK_VS.9045 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\ShippedConfigFiles\VS\
Property(S): WinSDK_SDK.9042 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\ShippedConfigFiles\SDK\
Property(S): WinSDK_SDKVC.9043 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\ShippedConfigFiles\SDKVC\
Property(S): WinSDK_VS.9040 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\PristineConfigFiles\VS\
Property(S): WinSDK_VC.9039 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\PristineConfigFiles\VC\
Property(S): WinSDK_SDK.9038 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\PristineConfigFiles\SDK\
Property(S): WinSDK_VC.9044 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\ShippedConfigFiles\VC\
Property(S): WinSDK_Bin.8052 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\
Property(S): MSBuild_MicrosoftNetFrameworkTargets_ImportAfter = C:\Program Files (x86)\MSBuild\4.0\Microsoft.NETFramework.targets\ImportAfter\
Property(S): MSBuild_Windows7.1SDK_Win32 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\PlatformToolsets\Windows7.1SDK\
Property(S): MSBuild_Windows7.1SDK_x64 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\x64\PlatformToolsets\Windows7.1SDK\
Property(S): MSBuild_Windows7.1SDK_Itanium = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Itanium\PlatformToolsets\Windows7.1SDK\
Property(S): WinSDK_SFX.14788 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\SFX\
Property(S): WinSDK_SDKMenuDir.2 = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft Windows SDK v7.1\
Property(S): WinSDK_SDKMenuDir_VSREG.18 = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft Windows SDK v7.1\Visual Studio Registration\
Property(S): TARGETDIR = C:\
Property(S): SourceDir = C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDK\WinSDK_amd64\
Property(S): WinSDK_Redist.8821 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Redist\
Property(S): WinSDK_INSTALLLOCATIONBASE.32 = C:\Program Files\Microsoft SDKs\Windows\
Property(S): WinSDK_INSTALLEDSDKSROOT.24 = C:\Program Files\Microsoft SDKs\
Property(S): ProgramFiles64Folder = C:\Program Files\
Property(S): ProgramMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
Property(S): StartMenuFolder_amd64.3643236F_FC70_11D3_A536_0090278A1BB8 = C:\StrtFldr\
Property(S): INSTALLLOCATION_Bin = C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\
Property(S): INSTALLLOCATION_Help = C:\Program Files\Microsoft SDKs\Windows\v7.1\Help\
Property(S): INSTALLLOCATION_Include = C:\Program Files\Microsoft SDKs\Windows\v7.1\Include\
Property(S): INSTALLLOCATION_Lib = C:\Program Files\Microsoft SDKs\Windows\v7.1\Lib\
Property(S): INSTALLLOCATION_Setup = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\
Property(S): INSTALLLOCATION_Bin_WMI = C:\Program Files\Microsoft SDKs\Windows\v7.1\WMI\
Property(S): WinSDK_ShippedConfigFiles.9041 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\ShippedConfigFiles\
Property(S): WinSDK_PristineConfigFiles.9037 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\PristineConfigFiles\
Property(S): MSBuild_MicrosoftNetFrameworkTargets = C:\Program Files (x86)\MSBuild\4.0\Microsoft.NETFramework.targets\
Property(S): MSBuild_ToolsVersion4 = C:\Program Files (x86)\MSBuild\4.0\
Property(S): MSBuild = C:\Program Files (x86)\MSBuild\
Property(S): ProgramFilesFolder = C:\Program Files (x86)\
Property(S): MSBuild_PlatformToolsets_Win32 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\PlatformToolsets\
Property(S): MSBuild_Win32 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\
Property(S): MSBuild_Platforms = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\
Property(S): MSBuild_v4.0 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\
Property(S): MSBuild_Microsoft.Cpp = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\
Property(S): MSBuild_PlatformToolsets_x64 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\x64\PlatformToolsets\
Property(S): MSBuild_x64 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\x64\
Property(S): MSBuild_PlatformToolsets_Itanium = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Itanium\PlatformToolsets\
Property(S): MSBuild_Itanium = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Itanium\
Property(S): VersionNT = 601
Property(S): Manufacturer = Microsoft Corporation
Property(S): ProductCode = {3156336D-8E44-3671-A6FE-AE51D3D6564E}
Property(S): ProductLanguage = 1033
Property(S): ProductName = Microsoft Windows SDK for Windows 7 (7.1)
Property(S): ProductVersion = 7.1.30514
Property(S): ProductShortName = Microsoft Windows SDK
Property(S): VSAssemblyVersion = 10.0.0.0
Property(S): WmiDirKey = INSTALLLOCATION_Bin_WMI
Property(S): DirectoryTable71_amd64 = DirectoryTable
Property(S): Accept = No
Property(S): ALLUSERS = 1
Property(S): ARPCOMMENTS = Update/Uninstall/Repair this SDK
Property(S): ARPHELPLINK = <a href="http://go.microsoft.com/fwlink/?linkid=156449" rel="nofollow">http://go.microsoft.com/fwlink/?linkid=156449</a>
Property(S): ARPURLUPDATEINFO = <a href="http://go.microsoft.com/fwlink/?linkid=156449" rel="nofollow">http://go.microsoft.com/fwlink/?linkid=156449</a>
Property(S): ARPINFOABOUT = <a href="http://go.microsoft.com/fwlink/?linkid=156449" rel="nofollow">http://go.microsoft.com/fwlink/?linkid=156449</a>
Property(S): ARPPRODUCTICON = Icon_msi.ico
Property(S): ARPNOMODIFY = 1
Property(S): ARPNOREMOVE = 1
Property(S): ARPNOREPAIR = 1
Property(S): ARPSYSTEMCOMPONENT = 1
Property(S): BackupDir = None
Property(S): ButtonFont = {\MsShellD8}
Property(S): CmdArgs = "
Property(S): CmdProp = cmd.exe
Property(S): DefaultFont = {\MsShellD8}
Property(S): DefaultUIFont = MsShellD8
Property(S): DISABLEADVTSHORTCUTS = 1
Property(S): EXISTINGINSTALLLOCATION = None
Property(S): HelpDirKey = INSTALLLOCATION_Help
Property(S): HelpFile = SdkHelp.chm
Property(S): HelpURL = <a href="http://go.microsoft.com/fwlink/?linkid=156449" rel="nofollow">http://go.microsoft.com/fwlink/?linkid=156449</a>
Property(S): INSTALLLEVEL = 10
Property(S): InstallMode = Typical
Property(S): MaintenanceMode = AddRemove
Property(S): MsiexecProp = MsiExec.Exe
Property(S): NewFolder = NewFolder-NOTUSED
Property(S): PIDKEY = 111-1111111
Property(S): PIDTemplate = 12345&lt;###-%%%%%%%&gt;@@@@@
Property(S): PRIMARYFOLDER = INSTALLLOCATION
Property(S): Registraton = No
Property(S): ReinstallChoice = Normal
Property(S): ReinstallFileVersion = o
Property(S): ReinstallRepair = r
Property(S): RootDirKey = INSTALLLOCATION
Property(S): SDKsRootDirKey = INSTALLEDSDKSROOT
Property(S): SetupDirKey = INSTALLLOCATION_Setup
Property(S): Uninstall = False
Property(S): UpgradeMode = Upgrade
Property(S): ProductVersionExternal = 7.1.7600.0.30514
Property(S): NTBuildBranch = win7_rtm
Property(S): NTBuildType = Main
Property(S): NTBuildNumberMajor = 7
Property(S): NTBuildNumberMinor = 1
Property(S): NTBuildNumberBuild = 7600
Property(S): NTBuildNumberIncremental = 0
Property(S): NTBuildNumberCSD = 090713-1255
Property(S): FrameworkBuild = 30319.01
Property(S): SecureCustomProperties = EXISTINGPRODUCTS;EXISTINGPRODUCTSNEWER;NEWERPRODUCTVERSIONDETECTED
Property(S): MsiLogFileLocation = C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup_7.0.6918.0.log
Property(S): PackageCode = {93CE58D4-DCFC-408E-8682-55B43993AA5E}
Property(S): ProductState = -1
Property(S): PackagecodeChanging = 1
Property(S): ADDLOCAL = WinSDK.1631,WinSDK_BIN.1632,WinSDK_VC_Integration.4496,WinSDK_RDC.1921,WinSDK_RDC_X86_CRT.4042,WinSDK_RDC_X64_CRT.4043,WinSDK_RDC_IA64_CRT.4401,WinSDK_SFX
Property(S): ALL = 1
Property(S): REBOOT = ReallySuppress
Property(S): SDKSETUPSOURCEDIR = <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup</a>
Property(S): CURRENTDIRECTORY = c:\4fbda0fd0786881f95054345a3c5a83e
Property(S): CLIENTUILEVEL = 3
Property(S): MSICLIENTUSESEXTERNALUI = 1
Property(S): CLIENTPROCESSID = 2516
Property(S): VersionDatabase = 200
Property(S): VersionMsi = 5.00
Property(S): VersionNT64 = 601
Property(S): WindowsBuild = 7601
Property(S): ServicePackLevel = 1
Property(S): ServicePackLevelMinor = 0
Property(S): MsiNTProductType = 1
Property(S): WindowsFolder = C:\Windows\
Property(S): WindowsVolume = C:\
Property(S): System64Folder = C:\Windows\system32\
Property(S): SystemFolder = C:\Windows\SysWOW64\
Property(S): RemoteAdminTS = 1
Property(S): TempFolder = C:\Users\CODYOE~1\AppData\Local\Temp\
Property(S): CommonFilesFolder = C:\Program Files (x86)\Common Files\
Property(S): CommonFiles64Folder = C:\Program Files\Common Files\
Property(S): AppDataFolder = C:\Users\CodyOebel\AppData\Roaming\
Property(S): FavoritesFolder = C:\Users\CodyOebel\Favorites\
Property(S): NetHoodFolder = C:\Users\CodyOebel\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
Property(S): PersonalFolder = C:\Users\CodyOebel\Documents\
Property(S): PrintHoodFolder = C:\Users\CodyOebel\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
Property(S): RecentFolder = C:\Users\CodyOebel\AppData\Roaming\Microsoft\Windows\Recent\
Property(S): SendToFolder = C:\Users\CodyOebel\AppData\Roaming\Microsoft\Windows\SendTo\
Property(S): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
Property(S): CommonAppDataFolder = C:\ProgramData\
Property(S): LocalAppDataFolder = C:\Users\CodyOebel\AppData\Local\
Property(S): MyPicturesFolder = C:\Users\CodyOebel\Pictures\
Property(S): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
Property(S): StartupFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
Property(S): StartMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\
Property(S): DesktopFolder = C:\Users\Public\Desktop\
Property(S): FontsFolder = C:\Windows\Fonts\
Property(S): GPTSupport = 1
Property(S): OLEAdvtSupport = 1
Property(S): ShellAdvtSupport = 1
Property(S): MsiAMD64 = 18
Property(S): Msix64 = 18
Property(S): Intel = 18
Property(S): PhysicalMemory = 5610
Property(S): VirtualMemory = 9136
Property(S): AdminUser = 1
Property(S): MsiTrueAdminUser = 1
Property(S): LogonUser = CodyOebel
Property(S): UserSID = S-1-5-21-3564065705-3925886671-536701184-1000
Property(S): UserLanguageID = 1033
Property(S): ComputerName = CODYOEBEL-PC
Property(S): SystemLanguageID = 1033
Property(S): ScreenX = 1024
Property(S): ScreenY = 768
Property(S): CaptionHeight = 22
Property(S): BorderTop = 1
Property(S): BorderSide = 1
Property(S): TextHeight = 16
Property(S): TextInternalLeading = 3
Property(S): ColorBits = 32
Property(S): TTCSupport = 1
Property(S): Time = 10:33:10
Property(S): Date = 5/19/2013
Property(S): MsiNetAssemblySupport = 4.0.30319.17929
Property(S): MsiWin32AssemblySupport = 6.1.7601.17514
Property(S): RedirectedDllSupport = 2
Property(S): MsiRunningElevated = 1
Property(S): Privileged = 1
Property(S): USERNAME = CodyOebel
Property(S): DATABASE = C:\Windows\Installer\41be8.msi
Property(S): OriginalDatabase = C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDK\WinSDK_amd64\WinSDK_amd64.msi
Property(S): UILevel = 2
Property(S): MsiUISourceResOnly = 1
Property(S): Preselected = 1
Property(S): ACTION = INSTALL
Property(S): ProductID = 12345-111-1111111-05896
Property(S): ROOTDRIVE = C:\
Property(S): CostingComplete = 1
Property(S): SOURCEDIR = C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDK\WinSDK_amd64\
Property(S): SourcedirProduct = {3156336D-8E44-3671-A6FE-AE51D3D6564E}
Property(S): OutOfDiskSpace = 0
Property(S): OutOfNoRbDiskSpace = 0
Property(S): PrimaryVolumeSpaceAvailable = 778347160
Property(S): PrimaryVolumeSpaceRequired = 53333
Property(S): PrimaryVolumeSpaceRemaining = 778293827
Property(S): PrimaryVolumePath = C:
Property(S): ProductToBeRegistered = 1
=== Logging stopped: 5/19/2013  10:33:14 ===
MSI (s) (78:B0) [10:33:14:384]: Product: Microsoft Windows SDK for Windows 7 (7.1) -- Installation completed successfully.

MSI (s) (78:B0) [10:33:14:481]: Windows Installer installed the product. Product Name: Microsoft Windows SDK for Windows 7 (7.1). Product Version: 7.1.30514. Product Language: 1033. Manufacturer: Microsoft Corporation. Installation success or error status: 0.

=== Logging started: 5/19/2013  10:33:25 ===
Action start 10:33:25: INSTALL.
Action start 10:33:25: DDSE_CA_Uninstall_InstallExecuteSequenceStarts_amd64.
05/19/13 10:33:26 DDSet_Status: LANGID: 1033
05/19/13 10:33:26 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_InstallExecuteSequenceStarts entry
05/19/13 10:33:26 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:26 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:26 DDSet_CARetVal: 0
05/19/13 10:33:26 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_InstallExecuteSequenceStarts exit
Action ended 10:33:26: DDSE_CA_Uninstall_InstallExecuteSequenceStarts_amd64. Return value 1.
Action start 10:33:26: FindRelatedProducts.
Action ended 10:33:26: FindRelatedProducts. Return value 0.
Action start 10:33:27: AppSearch.
Action ended 10:33:27: AppSearch. Return value 0.
Action start 10:33:27: LaunchConditions.
Action ended 10:33:27: LaunchConditions. Return value 1.
Action start 10:33:27: ValidateProductID.
Action ended 10:33:27: ValidateProductID. Return value 1.
Action start 10:33:27: DDSE_CA_Uninstall_CostInitializePre_amd64.
05/19/13 10:33:27 DDSet_Status: LANGID: 1033
05/19/13 10:33:27 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_CostInitializePre entry
05/19/13 10:33:27 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:27 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:27 DDSet_CARetVal: 0
05/19/13 10:33:28 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_CostInitializePre exit
Action ended 10:33:28: DDSE_CA_Uninstall_CostInitializePre_amd64. Return value 1.
Action start 10:33:28: CostInitialize.
Action ended 10:33:28: CostInitialize. Return value 1.
Action start 10:33:28: DDSE_CA_Uninstall_CostInitializePost_amd64.
05/19/13 10:33:29 DDSet_Status: LANGID: 1033
05/19/13 10:33:29 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_CostInitializePost entry
05/19/13 10:33:29 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:29 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:29 DDSet_CARetVal: 0
05/19/13 10:33:29 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_CostInitializePost exit
Action ended 10:33:29: DDSE_CA_Uninstall_CostInitializePost_amd64. Return value 1.
Action start 10:33:29: FileCost.
Action ended 10:33:29: FileCost. Return value 1.
Action start 10:33:30: DDSE_CA_Uninstall_CostFinalizePre_amd64.
05/19/13 10:33:30 DDSet_Status: LANGID: 1033
05/19/13 10:33:30 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_CostFinalizePre entry
05/19/13 10:33:30 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:30 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:30 DDSet_CARetVal: 0
05/19/13 10:33:30 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_CostFinalizePre exit
Action ended 10:33:30: DDSE_CA_Uninstall_CostFinalizePre_amd64. Return value 1.
Action start 10:33:30: CostFinalize.
Action ended 10:33:30: CostFinalize. Return value 1.
Action start 10:33:30: DDSE_CA_Uninstall_CostFinalizePost_amd64.
05/19/13 10:33:30 DDSet_Status: LANGID: 1033
05/19/13 10:33:30 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_CostFinalizePost entry
05/19/13 10:33:30 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:30 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:30 DDSet_CARetVal: 0
05/19/13 10:33:30 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_CostFinalizePost exit
Action ended 10:33:30: DDSE_CA_Uninstall_CostFinalizePost_amd64. Return value 1.
Action start 10:33:31: SetODBCFolders.
Action ended 10:33:31: SetODBCFolders. Return value 0.
Action start 10:33:31: MigrateFeatureStates.
Action ended 10:33:31: MigrateFeatureStates. Return value 0.
Action start 10:33:31: DDSE_CA_Uninstall_InstallValidatePre_amd64.
05/19/13 10:33:31 DDSet_Status: LANGID: 1033
05/19/13 10:33:31 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_InstallValidatePre entry
05/19/13 10:33:31 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:31 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:31 DDSet_CARetVal: 0
05/19/13 10:33:31 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_InstallValidatePre exit
Action ended 10:33:31: DDSE_CA_Uninstall_InstallValidatePre_amd64. Return value 1.
Action start 10:33:31: InstallValidate.
Action ended 10:33:31: InstallValidate. Return value 1.
Action start 10:33:31: DDSE_CA_Uninstall_InstallValidatePost_amd64.
05/19/13 10:33:31 DDSet_Status: LANGID: 1033
05/19/13 10:33:32 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_InstallValidatePost entry
05/19/13 10:33:32 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:32 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:32 DDSet_CARetVal: 0
05/19/13 10:33:32 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_InstallValidatePost exit
Action ended 10:33:32: DDSE_CA_Uninstall_InstallValidatePost_amd64. Return value 1.
Action start 10:33:32: RemoveExistingProducts.
Action ended 10:33:32: RemoveExistingProducts. Return value 0.
Action start 10:33:32: DDSE_CA_Uninstall_InstallInitializePre_amd64.
05/19/13 10:33:32 DDSet_Status: LANGID: 1033
05/19/13 10:33:32 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_InstallInitializePre entry
05/19/13 10:33:32 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:32 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:32 DDSet_CARetVal: 0
05/19/13 10:33:32 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_InstallInitializePre exit
Action ended 10:33:32: DDSE_CA_Uninstall_InstallInitializePre_amd64. Return value 1.
Action start 10:33:32: InstallInitialize.
Action ended 10:33:36: InstallInitialize. Return value 1.
Action start 10:33:36: DDSE_CA_Uninstall_InstallInitializePost_amd64.
05/19/13 10:33:36 DDSet_Status: LANGID: 1033
05/19/13 10:33:36 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_InstallInitializePost entry
05/19/13 10:33:36 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:36 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:36 DDSet_CARetVal: 0
05/19/13 10:33:36 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_InstallInitializePost exit
Action ended 10:33:36: DDSE_CA_Uninstall_InstallInitializePost_amd64. Return value 1.
Action start 10:33:36: ProcessComponents.
Action ended 10:33:36: ProcessComponents. Return value 1.
Action start 10:33:36: MsiUnpublishAssemblies.
Action ended 10:33:36: MsiUnpublishAssemblies. Return value 1.
Action start 10:33:36: UnpublishComponents.
Action ended 10:33:36: UnpublishComponents. Return value 0.
Action start 10:33:36: UnpublishFeatures.
Action ended 10:33:36: UnpublishFeatures. Return value 1.
Action start 10:33:36: StopServices.
Action ended 10:33:36: StopServices. Return value 1.
Action start 10:33:37: DeleteServices.
Action ended 10:33:37: DeleteServices. Return value 1.
Action start 10:33:37: UnregisterComPlus.
Action ended 10:33:37: UnregisterComPlus. Return value 0.
Action start 10:33:37: SelfUnregModules.
Action ended 10:33:37: SelfUnregModules. Return value 1.
Action start 10:33:37: UnregisterTypeLibraries.
Action ended 10:33:37: UnregisterTypeLibraries. Return value 0.
Action start 10:33:37: RemoveODBC.
Action ended 10:33:37: RemoveODBC. Return value 1.
Action start 10:33:37: UnregisterFonts.
Action ended 10:33:37: UnregisterFonts. Return value 1.
Action start 10:33:37: RemoveRegistryValues.
Action ended 10:33:37: RemoveRegistryValues. Return value 1.
Action start 10:33:37: UnregisterClassInfo.
Action ended 10:33:37: UnregisterClassInfo. Return value 0.
Action start 10:33:37: UnregisterExtensionInfo.
Action ended 10:33:37: UnregisterExtensionInfo. Return value 0.
Action start 10:33:37: UnregisterProgIdInfo.
Action ended 10:33:37: UnregisterProgIdInfo. Return value 0.
Action start 10:33:37: UnregisterMIMEInfo.
Action ended 10:33:37: UnregisterMIMEInfo. Return value 0.
Action start 10:33:37: RemoveIniValues.
Action ended 10:33:38: RemoveIniValues. Return value 1.
Action start 10:33:38: RemoveShortcuts.
Action ended 10:33:38: RemoveShortcuts. Return value 1.
Action start 10:33:38: RemoveEnvironmentStrings.
Action ended 10:33:38: RemoveEnvironmentStrings. Return value 1.
Action start 10:33:38: RemoveDuplicateFiles.
Action ended 10:33:38: RemoveDuplicateFiles. Return value 1.
Action start 10:33:38: RemoveFiles.
Action ended 10:33:38: RemoveFiles. Return value 0.
Action start 10:33:38: RemoveFolders.
Action ended 10:33:38: RemoveFolders. Return value 1.
Action start 10:33:38: CreateFolders.
Action ended 10:33:38: CreateFolders. Return value 1.
Action start 10:33:38: MoveFiles.
Action ended 10:33:38: MoveFiles. Return value 1.
Action start 10:33:38: InstallFiles.
Action ended 10:33:38: InstallFiles. Return value 1.
Action start 10:33:38: PatchFiles.
Action ended 10:33:38: PatchFiles. Return value 0.
Action start 10:33:38: DuplicateFiles.
Action ended 10:33:39: DuplicateFiles. Return value 1.
Action start 10:33:39: BindImage.
Action ended 10:33:39: BindImage. Return value 1.
Action start 10:33:39: CreateShortcuts.
Action ended 10:33:39: CreateShortcuts. Return value 1.
Action start 10:33:39: RegisterClassInfo.
Action ended 10:33:39: RegisterClassInfo. Return value 0.
Action start 10:33:39: RegisterExtensionInfo.
Action ended 10:33:39: RegisterExtensionInfo. Return value 0.
Action start 10:33:39: RegisterProgIdInfo.
Action ended 10:33:39: RegisterProgIdInfo. Return value 0.
Action start 10:33:39: RegisterMIMEInfo.
Action ended 10:33:39: RegisterMIMEInfo. Return value 0.
Action start 10:33:39: WriteRegistryValues.
Action ended 10:33:39: WriteRegistryValues. Return value 1.
Action start 10:33:39: WriteIniValues.
Action ended 10:33:39: WriteIniValues. Return value 1.
Action start 10:33:39: WriteEnvironmentStrings.
Action ended 10:33:39: WriteEnvironmentStrings. Return value 1.
Action start 10:33:40: RegisterFonts.
Action ended 10:33:40: RegisterFonts. Return value 1.
Action start 10:33:40: InstallODBC.
Action ended 10:33:40: InstallODBC. Return value 0.
Action start 10:33:40: RegisterTypeLibraries.
Action ended 10:33:40: RegisterTypeLibraries. Return value 0.
Action start 10:33:40: SelfRegModules.
Action ended 10:33:41: SelfRegModules. Return value 1.
Action start 10:33:41: RegisterComPlus.
Action ended 10:33:41: RegisterComPlus. Return value 0.
Action start 10:33:41: InstallServices.
Action ended 10:33:41: InstallServices. Return value 1.
Action start 10:33:41: StartServices.
Action ended 10:33:41: StartServices. Return value 1.
Action start 10:33:41: RegisterUser.
Action ended 10:33:41: RegisterUser. Return value 0.
Action start 10:33:41: RegisterProduct.
Action ended 10:33:42: RegisterProduct. Return value 1.
Action start 10:33:42: PublishComponents.
Action ended 10:33:42: PublishComponents. Return value 0.
Action start 10:33:42: MsiPublishAssemblies.
Action ended 10:33:42: MsiPublishAssemblies. Return value 1.
Action start 10:33:42: PublishFeatures.
Action ended 10:33:42: PublishFeatures. Return value 1.
Action start 10:33:42: PublishProduct.
Action ended 10:33:42: PublishProduct. Return value 1.
Action start 10:33:42: DDSE_CA_Uninstall_InstallFinalizePre_amd64.
05/19/13 10:33:43 DDSet_Status: LANGID: 1033
05/19/13 10:33:43 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_InstallFinalizePre entry
05/19/13 10:33:43 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:43 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:43 DDSet_CARetVal: 0
05/19/13 10:33:43 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_InstallFinalizePre exit
Action ended 10:33:43: DDSE_CA_Uninstall_InstallFinalizePre_amd64. Return value 1.
Action start 10:33:43: InstallFinalize.
Action ended 10:33:46: InstallFinalize. Return value 1.
Action start 10:33:46: DDSE_CA_Uninstall_InstallFinalizePost_amd64.
05/19/13 10:33:46 DDSet_Status: LANGID: 1033
05/19/13 10:33:46 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_InstallFinalizePost entry
05/19/13 10:33:46 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:46 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:46 DDSet_CARetVal: 0
05/19/13 10:33:46 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_InstallFinalizePost exit
Action ended 10:33:46: DDSE_CA_Uninstall_InstallFinalizePost_amd64. Return value 1.
Action start 10:33:46: DDSE_CA_Uninstall_InstallExecuteSequenceEnds_amd64.
05/19/13 10:33:46 DDSet_Status: LANGID: 1033
05/19/13 10:33:47 DDSet_Entry: ImmediateDispatch: DDSE_CA_Uninstall_InstallExecuteSequenceEnds entry
05/19/13 10:33:47 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:47 DDSet_Warning: Setup failed while calling 'getDLLName'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:47 DDSet_CARetVal: 0
05/19/13 10:33:47 DDSet_Exit: ImmediateDispatch: DDSE_CA_Uninstall_InstallExecuteSequenceEnds exit
Action ended 10:33:47: DDSE_CA_Uninstall_InstallExecuteSequenceEnds_amd64. Return value 1.
Action start 10:33:47: DDSE_CA_Uninstall_CleanupDDSEDir_amd64.
05/19/13 10:33:47 DDSet_Status: LANGID: 1033
05/19/13 10:33:47 DDSet_Entry: DDSE_CA_Uninstall_CleanupDDSEDir entry
05/19/13 10:33:47 DDSet_Error: Patch Hooks: Missing required property 'ProductFamily': Setup cannot continue.
05/19/13 10:33:48 DDSet_Warning: Setup failed while calling 'getDLLDirectory'. System error: Cannot create a file when that file already exists.

05/19/13 10:33:48 DDSet_CARetVal: 1603
05/19/13 10:33:48 DDSet_Exit: DDSE_CA_Uninstall_CleanupDDSEDir exit
CustomAction DDSE_CA_Uninstall_CleanupDDSEDir_amd64 returned actual error code 1603 but will be translated to success due to continue marking
Action ended 10:33:48: DDSE_CA_Uninstall_CleanupDDSEDir_amd64. Return value 1.
Action ended 10:33:48: INSTALL. Return value 1.
Property(S): UpgradeCode = {20550C92-0A08-4B07-9D5A-533BAAA890BB}
Property(S): WinSDK_VC.14794 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Redist\VC\
Property(S): INSTALLLOCATION = C:\Program Files\Microsoft SDKs\Windows\v7.1\
Property(S): WinSDK_License.8160 = C:\Program Files\Microsoft SDKs\Windows\v7.1\License\
Property(S): WinSDK_Setup.9036 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\
Property(S): WinSDK_Setup_1033 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\1033\
Property(S): WinSDK_VS.9045 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\ShippedConfigFiles\VS\
Property(S): WinSDK_SDK.9042 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\ShippedConfigFiles\SDK\
Property(S): WinSDK_SDKVC.9043 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\ShippedConfigFiles\SDKVC\
Property(S): WinSDK_VS.9040 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\PristineConfigFiles\VS\
Property(S): WinSDK_VC.9039 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\PristineConfigFiles\VC\
Property(S): WinSDK_SDK.9038 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\PristineConfigFiles\SDK\
Property(S): WinSDK_VC.9044 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\ShippedConfigFiles\VC\
Property(S): WinSDK_Bin.8052 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\
Property(S): MSBuild_MicrosoftNetFrameworkTargets_ImportAfter = C:\Program Files (x86)\MSBuild\4.0\Microsoft.NETFramework.targets\ImportAfter\
Property(S): MSBuild_Windows7.1SDK_Win32 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\PlatformToolsets\Windows7.1SDK\
Property(S): MSBuild_Windows7.1SDK_x64 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\x64\PlatformToolsets\Windows7.1SDK\
Property(S): MSBuild_Windows7.1SDK_Itanium = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Itanium\PlatformToolsets\Windows7.1SDK\
Property(S): WinSDK_SFX.14788 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\SFX\
Property(S): WinSDK_SDKMenuDir.2 = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft Windows SDK v7.1\
Property(S): WinSDK_SDKMenuDir_VSREG.18 = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft Windows SDK v7.1\Visual Studio Registration\
Property(S): TARGETDIR = C:\
Property(S): WinSDK_Redist.8821 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Redist\
Property(S): WinSDK_INSTALLLOCATIONBASE.32 = C:\Program Files\Microsoft SDKs\Windows\
Property(S): WinSDK_INSTALLEDSDKSROOT.24 = C:\Program Files\Microsoft SDKs\
Property(S): ProgramFiles64Folder = C:\Program Files\
Property(S): ProgramMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
Property(S): StartMenuFolder_amd64.3643236F_FC70_11D3_A536_0090278A1BB8 = C:\StrtFldr\
Property(S): INSTALLLOCATION_Bin = C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\
Property(S): INSTALLLOCATION_Help = C:\Program Files\Microsoft SDKs\Windows\v7.1\Help\
Property(S): INSTALLLOCATION_Include = C:\Program Files\Microsoft SDKs\Windows\v7.1\Include\
Property(S): INSTALLLOCATION_Lib = C:\Program Files\Microsoft SDKs\Windows\v7.1\Lib\
Property(S): INSTALLLOCATION_Setup = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\
Property(S): INSTALLLOCATION_Bin_WMI = C:\Program Files\Microsoft SDKs\Windows\v7.1\WMI\
Property(S): WinSDK_ShippedConfigFiles.9041 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\ShippedConfigFiles\
Property(S): WinSDK_PristineConfigFiles.9037 = C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\PristineConfigFiles\
Property(S): MSBuild_MicrosoftNetFrameworkTargets = C:\Program Files (x86)\MSBuild\4.0\Microsoft.NETFramework.targets\
Property(S): MSBuild_ToolsVersion4 = C:\Program Files (x86)\MSBuild\4.0\
Property(S): MSBuild = C:\Program Files (x86)\MSBuild\
Property(S): ProgramFilesFolder = C:\Program Files (x86)\
Property(S): MSBuild_PlatformToolsets_Win32 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\PlatformToolsets\
Property(S): MSBuild_Win32 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\
Property(S): MSBuild_Platforms = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\
Property(S): MSBuild_v4.0 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\
Property(S): MSBuild_Microsoft.Cpp = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\
Property(S): MSBuild_PlatformToolsets_x64 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\x64\PlatformToolsets\
Property(S): MSBuild_x64 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\x64\
Property(S): MSBuild_PlatformToolsets_Itanium = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Itanium\PlatformToolsets\
Property(S): MSBuild_Itanium = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Itanium\
Property(S): VersionNT = 601
Property(S): Manufacturer = Microsoft Corporation
Property(S): ProductCode = {3156336D-8E44-3671-A6FE-AE51D3D6564E}
Property(S): ProductLanguage = 1033
Property(S): ProductName = Microsoft Windows SDK for Windows 7 (7.1)
Property(S): ProductVersion = 7.1.30514
Property(S): ProductShortName = Microsoft Windows SDK
Property(S): VSAssemblyVersion = 10.0.0.0
Property(S): WmiDirKey = INSTALLLOCATION_Bin_WMI
Property(S): DirectoryTable71_amd64 = DirectoryTable
Property(S): Accept = No
Property(S): ALLUSERS = 1
Property(S): ARPCOMMENTS = Update/Uninstall/Repair this SDK
Property(S): ARPHELPLINK = <a href="http://go.microsoft.com/fwlink/?linkid=156449" rel="nofollow">http://go.microsoft.com/fwlink/?linkid=156449</a>
Property(S): ARPURLUPDATEINFO = <a href="http://go.microsoft.com/fwlink/?linkid=156449" rel="nofollow">http://go.microsoft.com/fwlink/?linkid=156449</a>
Property(S): ARPINFOABOUT = <a href="http://go.microsoft.com/fwlink/?linkid=156449" rel="nofollow">http://go.microsoft.com/fwlink/?linkid=156449</a>
Property(S): ARPPRODUCTICON = Icon_msi.ico
Property(S): ARPNOMODIFY = 1
Property(S): ARPNOREMOVE = 1
Property(S): ARPNOREPAIR = 1
Property(S): ARPSYSTEMCOMPONENT = 1
Property(S): BackupDir = None
Property(S): ButtonFont = {\MsShellD8}
Property(S): CmdArgs = "
Property(S): CmdProp = cmd.exe
Property(S): DefaultFont = {\MsShellD8}
Property(S): DefaultUIFont = MsShellD8
Property(S): DISABLEADVTSHORTCUTS = 1
Property(S): EXISTINGINSTALLLOCATION = None
Property(S): HelpDirKey = INSTALLLOCATION_Help
Property(S): HelpFile = SdkHelp.chm
Property(S): HelpURL = <a href="http://go.microsoft.com/fwlink/?linkid=156449" rel="nofollow">http://go.microsoft.com/fwlink/?linkid=156449</a>
Property(S): INSTALLLEVEL = 10
Property(S): InstallMode = Typical
Property(S): MaintenanceMode = AddRemove
Property(S): MsiexecProp = MsiExec.Exe
Property(S): NewFolder = NewFolder-NOTUSED
Property(S): PIDKEY = 111-1111111
Property(S): PIDTemplate = 12345&lt;###-%%%%%%%&gt;@@@@@
Property(S): PRIMARYFOLDER = INSTALLLOCATION
Property(S): Registraton = No
Property(S): ReinstallChoice = Normal
Property(S): ReinstallFileVersion = o
Property(S): ReinstallRepair = r
Property(S): RootDirKey = INSTALLLOCATION
Property(S): SDKsRootDirKey = INSTALLEDSDKSROOT
Property(S): SetupDirKey = INSTALLLOCATION_Setup
Property(S): Uninstall = False
Property(S): UpgradeMode = Upgrade
Property(S): ProductVersionExternal = 7.1.7600.0.30514
Property(S): NTBuildBranch = win7_rtm
Property(S): NTBuildType = Main
Property(S): NTBuildNumberMajor = 7
Property(S): NTBuildNumberMinor = 1
Property(S): NTBuildNumberBuild = 7600
Property(S): NTBuildNumberIncremental = 0
Property(S): NTBuildNumberCSD = 090713-1255
Property(S): FrameworkBuild = 30319.01
Property(S): SecureCustomProperties = EXISTINGPRODUCTS;EXISTINGPRODUCTSNEWER;NEWERPRODUCTVERSIONDETECTED
Property(S): MsiLogFileLocation = C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup_7.0.6918.0.log
Property(S): PackageCode = {93CE58D4-DCFC-408E-8682-55B43993AA5E}
Property(S): ProductState = 5
Property(S): REMOVE = ALL
Property(S): REBOOT = ReallySuppress
Property(S): CURRENTDIRECTORY = c:\4fbda0fd0786881f95054345a3c5a83e
Property(S): CLIENTUILEVEL = 3
Property(S): MSICLIENTUSESEXTERNALUI = 1
Property(S): CLIENTPROCESSID = 2516
Property(S): PRODUCTLANGUAGE = 1033
Property(S): VersionDatabase = 200
Property(S): VersionMsi = 5.00
Property(S): VersionNT64 = 601
Property(S): WindowsBuild = 7601
Property(S): ServicePackLevel = 1
Property(S): ServicePackLevelMinor = 0
Property(S): MsiNTProductType = 1
Property(S): WindowsFolder = C:\Windows\
Property(S): WindowsVolume = C:\
Property(S): System64Folder = C:\Windows\system32\
Property(S): SystemFolder = C:\Windows\SysWOW64\
Property(S): RemoteAdminTS = 1
Property(S): TempFolder = C:\Users\CODYOE~1\AppData\Local\Temp\
Property(S): CommonFilesFolder = C:\Program Files (x86)\Common Files\
Property(S): CommonFiles64Folder = C:\Program Files\Common Files\
Property(S): AppDataFolder = C:\Users\CodyOebel\AppData\Roaming\
Property(S): FavoritesFolder = C:\Users\CodyOebel\Favorites\
Property(S): NetHoodFolder = C:\Users\CodyOebel\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
Property(S): PersonalFolder = C:\Users\CodyOebel\Documents\
Property(S): PrintHoodFolder = C:\Users\CodyOebel\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
Property(S): RecentFolder = C:\Users\CodyOebel\AppData\Roaming\Microsoft\Windows\Recent\
Property(S): SendToFolder = C:\Users\CodyOebel\AppData\Roaming\Microsoft\Windows\SendTo\
Property(S): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
Property(S): CommonAppDataFolder = C:\ProgramData\
Property(S): LocalAppDataFolder = C:\Users\CodyOebel\AppData\Local\
Property(S): MyPicturesFolder = C:\Users\CodyOebel\Pictures\
Property(S): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
Property(S): StartupFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
Property(S): StartMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\
Property(S): DesktopFolder = C:\Users\Public\Desktop\
Property(S): FontsFolder = C:\Windows\Fonts\
Property(S): GPTSupport = 1
Property(S): OLEAdvtSupport = 1
Property(S): ShellAdvtSupport = 1
Property(S): MsiAMD64 = 18
Property(S): Msix64 = 18
Property(S): Intel = 18
Property(S): PhysicalMemory = 5610
Property(S): VirtualMemory = 8706
Property(S): AdminUser = 1
Property(S): MsiTrueAdminUser = 1
Property(S): LogonUser = CodyOebel
Property(S): UserSID = S-1-5-21-3564065705-3925886671-536701184-1000
Property(S): UserLanguageID = 1033
Property(S): ComputerName = CODYOEBEL-PC
Property(S): SystemLanguageID = 1033
Property(S): ScreenX = 1024
Property(S): ScreenY = 768
Property(S): CaptionHeight = 22
Property(S): BorderTop = 1
Property(S): BorderSide = 1
Property(S): TextHeight = 16
Property(S): TextInternalLeading = 3
Property(S): ColorBits = 32
Property(S): TTCSupport = 1
Property(S): Time = 10:34:01
Property(S): Date = 5/19/2013
Property(S): MsiNetAssemblySupport = 4.0.30319.17929
Property(S): MsiWin32AssemblySupport = 6.1.7601.17514
Property(S): RedirectedDllSupport = 2
Property(S): MsiRunningElevated = 1
Property(S): Privileged = 1
Property(S): ProductID = 12345-111-1111111-05896
Property(S): USERNAME = CodyOebel
Property(S): Installed = 00:00:00
Property(S): DATABASE = C:\Windows\Installer\41bee.msi
Property(S): OriginalDatabase = C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDK\WinSDK_amd64\WinSDK_amd64.msi
Property(S): UILevel = 2
Property(S): MsiUISourceResOnly = 1
Property(S): Preselected = 1
Property(S): ACTION = INSTALL
Property(S): ROOTDRIVE = C:\
Property(S): CostingComplete = 1
Property(S): OutOfDiskSpace = 0
Property(S): OutOfNoRbDiskSpace = 0
Property(S): PrimaryVolumeSpaceAvailable = 777196576
Property(S): PrimaryVolumeSpaceRequired = -32160
Property(S): PrimaryVolumeSpaceRemaining = 777228736
Property(S): PrimaryVolumePath = C:
=== Logging stopped: 5/19/2013  10:34:03 ===
MSI (s) (78:20) [10:34:03:188]: Product: Microsoft Windows SDK for Windows 7 (7.1) -- Removal completed successfully.

MSI (s) (78:20) [10:34:03:286]: Windows Installer removed the product. Product Name: Microsoft Windows SDK for Windows 7 (7.1). Product Version: 7.1.30514. Product Language: 1033. Manufacturer: Microsoft Corporation. Removal success or error status: 0.

10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKInterop_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKInterop_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKInterop\WinSDKInterop_amd64\cab1.cab
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKInterop_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKInterop_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKInterop/WinSDKInterop_amd64/cab1.cab size:384610
10:31:19 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseRefAssys_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseRefAssys_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseRefAssys\WinSDKIntellisenseRefAssys_amd64\cab1.cab
10:31:20 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseRefAssys_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseRefAssys_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseRefAssys\WinSDKIntellisenseRefAssys_amd64\cab1.cab
10:31:20 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseRefAssys_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseRefAssys_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseRefAssys/WinSDKIntellisenseRefAssys_amd64/cab1.cab size:1649600
10:31:20 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5CWinSDKIntellisenseNFX.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX.msi
10:31:20 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseRefAssys_amd64%5CWinSDKIntellisenseRefAssys_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseRefAssys_amd64\WinSDKIntellisenseRefAssys_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseRefAssys\WinSDKIntellisenseRefAssys_amd64\WinSDKIntellisenseRefAssys_amd64.msi
10:31:20 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseRefAssys_amd64/WinSDKIntellisenseRefAssys_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseRefAssys_amd64/WinSDKIntellisenseRefAssys_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseRefAssys/WinSDKIntellisenseRefAssys_amd64/WinSDKIntellisenseRefAssys_amd64.msi size:660480
10:31:20 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\cab1.cab
10:31:20 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5CWinSDKIntellisenseNFX.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX.msi
10:31:20 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX.msi size:713728
10:31:20 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5Ccab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\cab2.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\cab2.cab
10:31:21 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5Ccab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\cab2.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\cab2.cab
10:31:21 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab2.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/cab2.cab size:3276825
10:31:21 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5Ccab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\cab3.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\cab3.cab
10:31:21 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\cab1.cab
10:31:21 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/cab1.cab size:2887338
10:31:21 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5Ccab4.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\cab4.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\cab4.cab
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5Ccab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\cab3.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\cab3.cab
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab3.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab3.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/cab3.cab size:3141373
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5Ccab5.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\cab5.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\cab5.cab
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5Ccab4.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\cab4.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\cab4.cab
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab4.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab4.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/cab4.cab size:3061037
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5Cvc_stdx86%5Cvc_stdx86.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\vc_stdx86\vc_stdx86.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\vc_stdx86\vc_stdx86\vc_stdx86.msi
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5Cvc_stdx86%5Cvc_stdx86.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\vc_stdx86\vc_stdx86.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\vc_stdx86\vc_stdx86\vc_stdx86.msi
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdx86/vc_stdx86.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdx86/vc_stdx86.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/vc_stdx86/vc_stdx86/vc_stdx86.msi size:535552
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5Cvc_stdx86%5Cvc_stdx86.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\vc_stdx86\vc_stdx86.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\vc_stdx86\vc_stdx86\vc_stdx86.cab
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKIntellisenseNFX%5Ccab5.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKIntellisenseNFX\cab5.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKIntellisenseNFX\WinSDKIntellisenseNFX\cab5.cab
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab5.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKIntellisenseNFX/cab5.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKIntellisenseNFX/WinSDKIntellisenseNFX/cab5.cab size:1828177
10:31:23 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5Cvc_stdamd64%5Cvc_stdamd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\vc_stdamd64\vc_stdamd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\vc_stdamd64\vc_stdamd64\vc_stdamd64.msi
10:31:24 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5Cvc_stdamd64%5Cvc_stdamd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\vc_stdamd64\vc_stdamd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\vc_stdamd64\vc_stdamd64\vc_stdamd64.msi
10:31:24 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdamd64/vc_stdamd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdamd64/vc_stdamd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/vc_stdamd64/vc_stdamd64/vc_stdamd64.msi size:287232
10:31:24 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5Cvc_stdamd64%5Cvc_stdamd64.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\vc_stdamd64\vc_stdamd64.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\vc_stdamd64\vc_stdamd64\vc_stdamd64.cab
10:31:34 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5Cvc_stdamd64%5Cvc_stdamd64.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\vc_stdamd64\vc_stdamd64.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\vc_stdamd64\vc_stdamd64\vc_stdamd64.cab
10:31:34 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdamd64/vc_stdamd64.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdamd64/vc_stdamd64.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/vc_stdamd64/vc_stdamd64/vc_stdamd64.cab size:24785124
10:31:34 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKNetFxTools_amd64%5CWinSDK_nfxtoolsm_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKNetFxTools_amd64\WinSDK_nfxtoolsm_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKNetFxTools\WinSDKNetFxTools_amd64\WinSDK_nfxtoolsm_amd64.msi
10:31:41 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKNetFxTools_amd64%5CWinSDK_nfxtoolsm_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKNetFxTools_amd64\WinSDK_nfxtoolsm_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKNetFxTools\WinSDKNetFxTools_amd64\WinSDK_nfxtoolsm_amd64.msi
10:31:41 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFxTools_amd64/WinSDK_nfxtoolsm_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFxTools_amd64/WinSDK_nfxtoolsm_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKNetFxTools/WinSDKNetFxTools_amd64/WinSDK_nfxtoolsm_amd64.msi size:772096
10:31:41 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKNetFxTools_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKNetFxTools_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKNetFxTools\WinSDKNetFxTools_amd64\cab1.cab
10:31:44 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKNetFxTools_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKNetFxTools_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKNetFxTools\WinSDKNetFxTools_amd64\cab1.cab
10:31:44 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFxTools_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFxTools_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKNetFxTools/WinSDKNetFxTools_amd64/cab1.cab size:6844196
10:31:44 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKApplicationVerifier_amd64%5CApplicationVerifier.amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKApplicationVerifier_amd64\ApplicationVerifier.amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKApplicationVerifier\WinSDKApplicationVerifier_amd64\ApplicationVerifier.amd64.msi
10:31:49 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5Cvc_stdx86%5Cvc_stdx86.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\vc_stdx86\vc_stdx86.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\vc_stdx86\vc_stdx86\vc_stdx86.cab
10:31:49 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdx86/vc_stdx86.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/vc_stdx86/vc_stdx86.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/vc_stdx86/vc_stdx86/vc_stdx86.cab size:71673244
10:31:49 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKDebuggingTools_amd64%5Cdbg_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKDebuggingTools_amd64\dbg_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKDebuggingTools\WinSDKDebuggingTools_amd64\dbg_amd64.msi
10:31:53 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKApplicationVerifier_amd64%5CApplicationVerifier.amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKApplicationVerifier_amd64\ApplicationVerifier.amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKApplicationVerifier\WinSDKApplicationVerifier_amd64\ApplicationVerifier.amd64.msi
10:31:53 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKApplicationVerifier_amd64/ApplicationVerifier.amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKApplicationVerifier_amd64/ApplicationVerifier.amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKApplicationVerifier/WinSDKApplicationVerifier_amd64/ApplicationVerifier.amd64.msi size:17019904
10:31:53 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKRedist_amd64%5CWinSDKRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKRedist_amd64\WinSDKRedist_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKAppVerDebuggingToolsRedist\WinSDKRedist_amd64\WinSDKRedist_amd64.msi
10:31:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKRedist_amd64%5CWinSDKRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKRedist_amd64\WinSDKRedist_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKAppVerDebuggingToolsRedist\WinSDKRedist_amd64\WinSDKRedist_amd64.msi
10:31:54 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/WinSDKRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/WinSDKRedist_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKAppVerDebuggingToolsRedist/WinSDKRedist_amd64/WinSDKRedist_amd64.msi size:650752
10:31:54 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKRedist_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKRedist_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKAppVerDebuggingToolsRedist\WinSDKRedist_amd64\cab1.cab
10:31:57 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKDebuggingTools_amd64%5Cdbg_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKDebuggingTools_amd64\dbg_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKDebuggingTools\WinSDKDebuggingTools_amd64\dbg_amd64.msi
10:31:57 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebuggingTools_amd64/dbg_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebuggingTools_amd64/dbg_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKDebuggingTools/WinSDKDebuggingTools_amd64/dbg_amd64.msi size:17529856
10:31:57 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKRedist_amd64%5Ccab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKRedist_amd64\cab2.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKAppVerDebuggingToolsRedist\WinSDKRedist_amd64\cab2.cab
10:32:04 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKRedist_amd64%5Ccab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKRedist_amd64\cab2.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKAppVerDebuggingToolsRedist\WinSDKRedist_amd64\cab2.cab
10:32:04 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/cab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/cab2.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKAppVerDebuggingToolsRedist/WinSDKRedist_amd64/cab2.cab size:19562219
10:32:04 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKAppverRedist_amd64%5CWinSDKAppverRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKAppverRedist_amd64\WinSDKAppverRedist_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\AppVerRedist\WinSDKAppverRedist_amd64\WinSDKAppverRedist_amd64.msi
10:32:05 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKAppverRedist_amd64%5CWinSDKAppverRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKAppverRedist_amd64\WinSDKAppverRedist_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\AppVerRedist\WinSDKAppverRedist_amd64\WinSDKAppverRedist_amd64.msi
10:32:05 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKAppverRedist_amd64/WinSDKAppverRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKAppverRedist_amd64/WinSDKAppverRedist_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/AppVerRedist/WinSDKAppverRedist_amd64/WinSDKAppverRedist_amd64.msi size:650752
10:32:05 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKAppverRedist_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKAppverRedist_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\AppVerRedist\WinSDKAppverRedist_amd64\cab1.cab
10:32:08 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKRedist_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKRedist_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKAppVerDebuggingToolsRedist\WinSDKRedist_amd64\cab1.cab
10:32:08 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKRedist_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKAppVerDebuggingToolsRedist/WinSDKRedist_amd64/cab1.cab size:38709706
10:32:08 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKDebugToolsRedist_amd64%5CWinSDKDebugToolsRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKDebugToolsRedist_amd64\WinSDKDebugToolsRedist_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\DebuggingToolsRedist\WinSDKDebugToolsRedist_amd64\WinSDKDebugToolsRedist_amd64.msi
10:32:09 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKDebugToolsRedist_amd64%5CWinSDKDebugToolsRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKDebugToolsRedist_amd64\WinSDKDebugToolsRedist_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\DebuggingToolsRedist\WinSDKDebugToolsRedist_amd64\WinSDKDebugToolsRedist_amd64.msi
10:32:09 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/WinSDKDebugToolsRedist_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/WinSDKDebugToolsRedist_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/DebuggingToolsRedist/WinSDKDebugToolsRedist_amd64/WinSDKDebugToolsRedist_amd64.msi size:650752
10:32:09 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKDebugToolsRedist_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKDebugToolsRedist_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\DebuggingToolsRedist\WinSDKDebugToolsRedist_amd64\cab1.cab
10:32:22 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKDebugToolsRedist_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKDebugToolsRedist_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\DebuggingToolsRedist\WinSDKDebugToolsRedist_amd64\cab1.cab
10:32:22 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/DebuggingToolsRedist/WinSDKDebugToolsRedist_amd64/cab1.cab size:35874600
10:32:22 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKDebugToolsRedist_amd64%5Ccab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKDebugToolsRedist_amd64\cab2.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\DebuggingToolsRedist\WinSDKDebugToolsRedist_amd64\cab2.cab
10:32:22 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKAppverRedist_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKAppverRedist_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\AppVerRedist\WinSDKAppverRedist_amd64\cab1.cab
10:32:22 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKAppverRedist_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKAppverRedist_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/AppVerRedist/WinSDKAppverRedist_amd64/cab1.cab size:42088281
10:32:22 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKNetFx40Tools_amd64%5CWinSDK_nfx40tools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKNetFx40Tools_amd64\WinSDK_nfx40tools_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKNetFx40Tools\WinSDKNetFx40Tools_amd64\WinSDK_nfx40tools_amd64.msi
10:32:22 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKNetFx40Tools_amd64%5CWinSDK_nfx40tools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKNetFx40Tools_amd64\WinSDK_nfx40tools_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKNetFx40Tools\WinSDKNetFx40Tools_amd64\WinSDK_nfx40tools_amd64.msi
10:32:22 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFx40Tools_amd64/WinSDK_nfx40tools_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFx40Tools_amd64/WinSDK_nfx40tools_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKNetFx40Tools/WinSDKNetFx40Tools_amd64/WinSDK_nfx40tools_amd64.msi size:778240
10:32:22 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKNetFx40Tools_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKNetFx40Tools_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKNetFx40Tools\WinSDKNetFx40Tools_amd64\cab1.cab
10:32:24 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKNetFx40Tools_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKNetFx40Tools_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKNetFx40Tools\WinSDKNetFx40Tools_amd64\cab1.cab
10:32:24 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFx40Tools_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKNetFx40Tools_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKNetFx40Tools/WinSDKNetFx40Tools_amd64/cab1.cab size:3766038
10:32:24 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKhelp_amd64%5CWinSDKHelp_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKhelp_amd64\WinSDKHelp_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKHelp\WinSDKhelp_amd64\WinSDKHelp_amd64.msi
10:32:25 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKhelp_amd64%5CWinSDKHelp_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKhelp_amd64\WinSDKHelp_amd64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKHelp\WinSDKhelp_amd64\WinSDKHelp_amd64.msi
10:32:25 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKhelp_amd64/WinSDKHelp_amd64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKhelp_amd64/WinSDKHelp_amd64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKHelp/WinSDKhelp_amd64/WinSDKHelp_amd64.msi size:905216
10:32:25 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKhelp_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKhelp_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKHelp\WinSDKhelp_amd64\cab1.cab
10:32:25 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKhelp_amd64%5Ccab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKhelp_amd64\cab1.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKHelp\WinSDKhelp_amd64\cab1.cab
10:32:25 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKhelp_amd64/cab1.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKhelp_amd64/cab1.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKHelp/WinSDKhelp_amd64/cab1.cab size:1401165
10:32:25 AM Sunday, May 19, 2013: [SDKSetup:Info] Beginning download of file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKPerformanceToolKit_amd64%5Cwpt_x64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKPerformanceToolKit_amd64\wpt_x64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKPerformanceToolKit\WinSDKPerformanceToolKit_amd64\wpt_x64.msi
10:32:32 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKPerformanceToolKit_amd64%5Cwpt_x64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKPerformanceToolKit_amd64\wpt_x64.msi</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\WinSDKPerformanceToolKit\WinSDKPerformanceToolKit_amd64\wpt_x64.msi
10:32:32 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKPerformanceToolKit_amd64/wpt_x64.msi" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKPerformanceToolKit_amd64/wpt_x64.msi</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/WinSDKPerformanceToolKit/WinSDKPerformanceToolKit_amd64/wpt_x64.msi size:20184576
10:32:33 AM Sunday, May 19, 2013: [SDKSetup:Info] Successfully downloaded the file <a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup%5CWinSDKDebugToolsRedist_amd64%5Ccab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\WinSDKDebugToolsRedist_amd64\cab2.cab</a> to C:\Users\CodyOebel\AppData\Local\Temp\SDKSetup\DebuggingToolsRedist\WinSDKDebugToolsRedist_amd64\cab2.cab
10:32:33 AM Sunday, May 19, 2013: [SDKSetup:Info] File succesfully downloaded - source:<a href="http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/cab2.cab" rel="nofollow">http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebugToolsRedist_amd64/cab2.cab</a> target:file:///C:/Users/CodyOebel/AppData/Local/Temp/SDKSetup/DebuggingToolsRedist/WinSDKDebugToolsRedist_amd64/cab2.cab size:26576986
10:33:14 AM Sunday, May 19, 2013: SFX C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\SFX\vcredist_x64.exe installation started with log file C:\Users\CodyOebel\AppData\Local\Temp\Microsoft Windows SDK for Windows 7_4ecbcdf7-5ae7-4e3d-b08b-c7765a730dbd_SFX.log
10:33:25 AM Sunday, May 19, 2013: C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\SFX\vcredist_x64.exe installation failed with return code 5100
10:34:04 AM Sunday, May 19, 2013: [SDKSetup:Error] Config_Products_Install: Installation of Product Microsoft Windows SDK for Windows 7 (failed): Please refer to Samples\Setup\HTML\ConfigDetails.htm document for further information. Stack:    at SDKSetup.Product.ConfigureRelatedSfx()       at SDKSetup.Product.ConfigureNewProduct(ManualResetEvent CancelEvent)
10:34:04 AM Sunday, May 19, 2013: [SDKSetup:Info] Config_Products_InstallNew: End installation of new product: Microsoft Windows SDK for Windows 7
10:34:04 AM Sunday, May 19, 2013: [SDKSetup:Error] Config_Products_Install: Windows SDK Setup (failed): Installation of the "Microsoft Windows SDK for Windows 7" product has reported the following error: Please refer to Samples\Setup\HTML\ConfigDetails.htm document for further information. Stack:    at SDKSetup.Product.ConfigureNewProduct(ManualResetEvent CancelEvent)     at SDKSetup.Product.SetupProduct(TaskMode taskMode, ManualResetEvent CancelEvent)       at SDKSetup.ProductCollection.SetupProducts(TaskMode taskMode, DownloadManager downloadManager, ManualResetEvent cancelEvent)       at SDKSetup.ConfigProducts.DoCurrentTask(TaskMode Task)
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>CodyOebel</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454923/microsoftsdk-installation-failure-need-help</guid>
		</item>
				<item>
			<title>Random z-index?</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454922/random-z-index</link>
			<pubDate>Sun, 19 May 2013 15:31:10 +0000</pubDate>
			<description>I have a load of images overlapping, I just done this by giving a css style of margin:0 -20px 0 -20px;. They overlap the one on the left and the one above, its to unioform looking. Is there any way to use js/jquery to give a class a random z-index? ...</description>
			<content:encoded><![CDATA[ <p>I have a load of images overlapping, I just done this by giving a css style of margin:0 -20px 0 -20px;. They overlap the one on the left and the one above, its to unioform looking. Is there any way to use js/jquery to give a class a random z-index?</p>

<p>Cheers................</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>GlenRogers</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454922/random-z-index</guid>
		</item>
				<item>
			<title>check (non) empty string from functions</title>
			<link>http://www.daniweb.com/web-development/php/threads/454921/check-non-empty-string-from-functions</link>
			<pubDate>Sun, 19 May 2013 14:59:10 +0000</pubDate>
			<description>I have some functions that returns nothing or some value (obvious), and also having a little trouble with the if and closing, is there a good way to do this? I want to return the value after checking if any of the strings are not empty. Actually it is a ...</description>
			<content:encoded><![CDATA[ <p>I have some functions that returns nothing or some value (obvious), and also having a little trouble with the if and closing, is there a good way to do this? I want to return the value after checking if any of the strings are not empty.<br />
Actually it is a search results page. I can have result by links that follow this structure:</p>

<pre><code>search_url(array("xxx" =&gt; "name");
</code></pre>

<p>and in the array for xxx's is either:</p>

<pre><code>"sPattern"=&gt; "name"
"sRegion"=&gt; "name"
"sCity"=&gt; "name"
</code></pre>

<p>so how to do this?</p>

<pre><code>&lt;?php if( sPattern &gt; '') { ?&gt; 
echo  result
else
&lt;?php if( sRegion &gt; '') { ?&gt; 
echo result
else
&lt;?php if( sCity &gt; '') { ?&gt; 
echo result
if nothing match do this
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>mjsmitten</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454921/check-non-empty-string-from-functions</guid>
		</item>
				<item>
			<title>error on  onClick=&quot;window.print()&quot;</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454917/error-on-onclickwindow.print</link>
			<pubDate>Sun, 19 May 2013 14:14:06 +0000</pubDate>
			<description>i want to print out my form using onClick=&quot;window.print()&quot;.. but the output is not same with display form in browser. for the information, i use CSS to positioning the layer or &lt;div&gt;..</description>
			<content:encoded><![CDATA[ <p>i want to print out my form using  onClick="window.print()".. but the output is not same with display form in browser. for the information, i use CSS to positioning the layer or &lt;div&gt;..</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>dina85</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454917/error-on-onclickwindow.print</guid>
		</item>
				<item>
			<title>Pass data from one php script to another</title>
			<link>http://www.daniweb.com/web-development/php/threads/454916/pass-data-from-one-php-script-to-another</link>
			<pubDate>Sun, 19 May 2013 14:02:49 +0000</pubDate>
			<description>I've got an upload script that generates some stuff in relation to uploads eg File foo.jpg uploaded succesfully&lt;br /&gt; File bar.tiff failed to upload! ... This is all part of a variable called `$message`. How could I pass this to another php script? Thanks for any help</description>
			<content:encoded><![CDATA[ <p>I've got an upload script that generates some stuff in relation to uploads eg</p>

<pre><code>File foo.jpg uploaded succesfully&lt;br /&gt;
File bar.tiff failed to upload!
...
</code></pre>

<p>This is all part of a variable called <code>$message</code>. How could I pass this to another php script?<br />
Thanks for any help</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>fheppell</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454916/pass-data-from-one-php-script-to-another</guid>
		</item>
				<item>
			<title>need to doa factory restore on a tower my friend gave me </title>
			<link>http://www.daniweb.com/hardware-and-software/microsoft-windows/windows-vista-and-windows-7-8/threads/454915/need-to-doa-factory-restore-on-a-tower-my-friend-gave-me-</link>
			<pubDate>Sun, 19 May 2013 13:01:04 +0000</pubDate>
			<description>Hi I need some help my friend has just give me her PC tower and I need to reset it bk to factory settings I push f8 and get to the page it tells me to on the internet but I don't seem to have the restore option that shows ...</description>
			<content:encoded><![CDATA[ <p>Hi I need some help my friend has just give me her PC tower and I need to reset it bk to factory settings I push f8 and get to the page it tells me to on the internet but I don't seem to have the restore option that shows up on the sites I've looked at can anyone help it's a vista.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/microsoft-windows/windows-vista-and-windows-7-8/38">Windows Vista and Windows 7 / 8</category>
			<dc:creator>kerrynoo81</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/microsoft-windows/windows-vista-and-windows-7-8/threads/454915/need-to-doa-factory-restore-on-a-tower-my-friend-gave-me-</guid>
		</item>
				<item>
			<title>Namespace</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454914/namespace</link>
			<pubDate>Sun, 19 May 2013 12:43:34 +0000</pubDate>
			<description> how come a namespace includes in the header a more specific namespace? ex: using System.Runtime; using System.Runtime.ConstrainedExecution; using System.Runtime.InteropServices; using System.Security; namespace System { public class Object { // Class code } } Shouldn't be like this: namespace System { namespace Runtime { namespace ConstrainedExecution { public class Object { ...</description>
			<content:encoded><![CDATA[ <p>how come a namespace includes in the header a more specific namespace?<br />
ex:</p>

<pre><code class="language-cs">using System.Runtime;
using System.Runtime.ConstrainedExecution;
using System.Runtime.InteropServices;
using System.Security;

namespace System
{

    public class Object
    {
      // Class code
    }
}
</code></pre>

<p>Shouldn't be like this:</p>

<pre><code class="language-cs">namespace System
{

 namespace Runtime
  {
     namespace ConstrainedExecution
     {

         public class Object
         {
           // Class code
         }
      }
   }
}
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>treasure2387</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454914/namespace</guid>
		</item>
				<item>
			<title>Exam qustion 3</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454913/exam-qustion-3</link>
			<pubDate>Sun, 19 May 2013 12:43:30 +0000</pubDate>
			<description>Please see question 3. I have attached the question paper with the second attachment as my answer.</description>
			<content:encoded><![CDATA[ <p>Please see question 3. I have attached the question paper with the second attachment as my answer.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>Vusumuzi</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454913/exam-qustion-3</guid>
		</item>
				<item>
			<title>toString method</title>
			<link>http://www.daniweb.com/software-development/java/threads/454912/tostring-method</link>
			<pubDate>Sun, 19 May 2013 11:58:33 +0000</pubDate>
			<description>Hi I would be really interested to understand how exactly the toString() method works. I have read quite a bit about it, that it returns the string representation of an object, that the default one can be overridden with @Override etc etc. Let's have a look at some examples: @Override ...</description>
			<content:encoded><![CDATA[ <p>Hi I would be really interested to understand how exactly the toString() method works. I have read quite a bit about it, that it returns the string representation of<br />
an object, that the default one can be overridden with @Override etc etc.<br />
Let's have a look at some examples:</p>

<pre><code class="language-java">   @Override // indicates that this method overrides a superclass method
   public String toString()
   {
      return String.format( "%s: %s %s\n%s: %s\n%s: %.2f\n%s: %.2f", 
         "commission employee", firstName, lastName, 
         "social security number", socialSecurityNumber, 
         "gross sales", grossSales, 
         "commission rate", commissionRate );
   } // end method toString
</code></pre>

<p>and it is called in this way</p>

<pre><code class="language-java">System.out.printf( "\n%s:\n\n%s\n", 
         "Updated employee information obtained by toString", 
         employee.toString() );
</code></pre>

<p>where employee is an object. <code>firstName</code>, <code>lastName</code> etc are all private instance variables of the class</p>

<p>Or anothe similar one:</p>

<pre><code class="language-java">@Override // indicates that this method overrides a superclass method
   public String toString()
   {
      return String.format( "%s: %s %s\n%s: %s\n%s: %.2f\n%s: %.2f", 
         "commission employee", firstName, lastName, 
         "social security number", socialSecurityNumber, 
         "gross sales", grossSales, 
         "commission rate", commissionRate );
   } // end method toString
</code></pre>

<p>which is called by</p>

<pre><code class="language-java"> System.out.printf( "\n%s:\n\n%s\n", 
         "Updated employee information obtained by toString", employee );
</code></pre>

<p>again, employee is the object.</p>

<p>Now what I don't understand is what is the difference between printing an object this way and printing an object with a normal call to System.out.printf and list the instance<br />
variables? I mean why do I need a toString method for? Maybe in the examples above, since they are taken from large program, I might not see the point of it.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>Violet_82</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454912/tostring-method</guid>
		</item>
				<item>
			<title>importing specific data from webpage to windows form text box</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454911/importing-specific-data-from-webpage-to-windows-form-text-box</link>
			<pubDate>Sun, 19 May 2013 11:33:57 +0000</pubDate>
			<description>well here is the problem ! i am making a desktop application using vb.net and sql server for a local jeweler. i want to fetch &quot;gold rate&quot; to text box &quot;txtbox_goldrate&quot; from http://www.goldrates.pk . the other way is to use goldrate api from a webservice but that is not free ...</description>
			<content:encoded><![CDATA[ <p>well here is the problem !<br />
i am making a desktop application using vb.net and sql server for a local jeweler. i want to fetch "gold rate"<br />
to text box "txtbox_goldrate" from <a href="http://www.goldrates.pk" rel="nofollow">http://www.goldrates.pk</a> . the other way is to use goldrate api from a webservice but that is not free so thats why i want to copy specific data from a specific website and use it in a<br />
textbox to use it in calculation. plz help and use code snippets for beginners. thanks in advance</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>Affable zaki</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454911/importing-specific-data-from-webpage-to-windows-form-text-box</guid>
		</item>
				<item>
			<title>help me please..</title>
			<link>http://www.daniweb.com/web-development/php/threads/454910/help-me-please</link>
			<pubDate>Sun, 19 May 2013 11:16:18 +0000</pubDate>
			<description> require(&quot;conn.php&quot;); $sql = &quot;select * from pemohon where kp_baru='$kp';&quot;; $result = mysql_query($sql); while($row = mysql_fetch_array($result)) { if($row == TRUE) { echo $row['kp_baru']; // can display } else { echo &quot;No KP tiada didalam pangkalan data.&quot;; // can't display } }</description>
			<content:encoded><![CDATA[ <pre><code>require("conn.php");
$sql = "select * from pemohon where kp_baru='$kp';";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
{
    if($row == TRUE)
    {
     echo $row['kp_baru']; // can display
    }
    else
    {
        echo "No KP tiada didalam pangkalan data."; // can't display
    }
}
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>dina85</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454910/help-me-please</guid>
		</item>
				<item>
			<title>Preferred domain name already in use</title>
			<link>http://www.daniweb.com/internet-marketing/promotion-and-marketing-plans/threads/454909/preferred-domain-name-already-in-use</link>
			<pubDate>Sun, 19 May 2013 11:07:15 +0000</pubDate>
			<description>I am currently working on a project, and I had a name for it in mind. However, the .com domain with that name is already in use. What do you think I should do? Rename my project, or use a .net domain instead of a .com? The name would be: ...</description>
			<content:encoded><![CDATA[ <p>I am currently working on a project, and I had a name for it in mind. However, the .com domain with that name is already in use. What do you think I should do? Rename my project, or use a .net domain instead of a .com?</p>

<p>The name would be: opiniononion.com<br />
Would you rather see something like: opiniononion.net or would you rather see another name being used, like: discussiononion.com? Or something else entirely?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/internet-marketing/promotion-and-marketing-plans/43">Promotion and Marketing Plans</category>
			<dc:creator>minitauros</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/internet-marketing/promotion-and-marketing-plans/threads/454909/preferred-domain-name-already-in-use</guid>
		</item>
				<item>
			<title>Paypal and update availability</title>
			<link>http://www.daniweb.com/internet-marketing/ecommerce/threads/454908/paypal-and-update-availability</link>
			<pubDate>Sun, 19 May 2013 11:04:53 +0000</pubDate>
			<description>Hello, I made a web site with products and i would like to complete the payment with paypal. I have this problem. When the use want to complete and buy something before continue to the paypal should check if it is available and reserve the prodoct. With the paypal he ...</description>
			<content:encoded><![CDATA[ <p>Hello,<br />
I made a web site with products and i would like to complete the payment with paypal. I have this problem. When the use want to complete and buy something before continue to the paypal should check if it is available and reserve the prodoct. With the paypal he will redirect to the paypal to buy. How i will know if the user did not pay so i will be able to make the product available and not reserved? If the payment is completed then i do not have problem but otherwise? I am using jsp to make my site<br />
Thank you very much for your help.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/internet-marketing/ecommerce/46">eCommerce</category>
			<dc:creator>xxmp</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/internet-marketing/ecommerce/threads/454908/paypal-and-update-availability</guid>
		</item>
				<item>
			<title>IS SEO TRAINING REQUIRED FOR SEO INDIVIDUALS ?</title>
			<link>http://www.daniweb.com/internet-marketing/search-engine-optimization/threads/454907/is-seo-training-required-for-seo-individuals-</link>
			<pubDate>Sun, 19 May 2013 10:20:32 +0000</pubDate>
			<description>Interest in SEO training has soared over the past five years as optimizing for search climbs from the Desired Skills section to Required across marketing job boards. Graph of jobs that desire SEO skills The marketing generalist is alive and well, but tool kits are expanding. Marketers must be able ...</description>
			<content:encoded><![CDATA[ <p>Interest in SEO training has soared over the past five years as optimizing for search climbs from the Desired Skills section to Required across marketing job boards.<br />
Graph of jobs that desire SEO skills</p>

<p>The marketing generalist is alive and well, but tool kits are expanding. Marketers must be able to drive traffic to websites and they need SEO to do it.</p>

<p>Enter SEO training. It’s a bridge that must be crossed so the only things left to consider are where to study, what to study and from whom to study.</p>

<p>Where to Study: Online Training or In Person</p>

<p>The choice between online or in-person training depends on preferred learning style. In-person SEO training is best for people who desire a more interactive experience or dedicated time to study. Like learning a language, it can be easier to make time and focus with someone sitting across from you.</p>

<p>Sometimes flexibility is more important. Online training might be best for someone who needs to understand SEO by next week or has to contend with a busy schedule. Here is a list of options for online training. It’s a bit outdated so you might also look into .</p>

<p>The Advantages of SEO Training</p>

<p>It is estimated that at least 340 million people use search engines to find products and services every day. That's a lot of people. The top search engines use link popularity to decide which sights come up first when you do a search. Wouldn't it be nice if your website came up at the top of the list? It is a possibility with search engine optimization, or SEO. With the right SEO training, you can be on your way to a more successful business and much higher web traffic.</p>

<p>Before you start SEO training, you should first understand what SEO is. SEO basically means optimizing the results of a persons search on the web to lead to your website. When someone does a search, say on google.com, they type in a keyword and start the search. The search results then list several websites that fit the category of the search. The top websites are always listed first. Hence, the person doing the search is more likely to use the websites listed first. With the proper SEO training, you can learn how to make your website be listed at the top of the search engine lists.</p>

<p>SEO training can be provided through many different means. A great deal of people receive their SEO training at special seminars. These seminars can last several days and vary in price. Some are as low as $300 and some are as high as $1500. These seminars usually have limited seating available so sign up as soon as you can. There is also SEO training courses offered online with downloadable SEO</p>

<p>training material. Most online SEO Training courses are self paced, so you can learn it at your own pace for a set price. There are even some free courses offered online as well.</p>

<p>Most of these courses teach the basics of SEO. This includes: learning how to use link popularity, keyword usage, and marketing techniques that can work best with SEO. Some courses even teach you how to start your very own SEO business, which has become quite popular in the recent years. Many of these SEO training courses offer certification in SEO so that you may officially start an SEO business.</p>

<p>All SEO training courses guarantee that with completion of the course, you will have a dramatic increase in your website traffic. Some say as much as a 500% increase. For business owners, this means a lot more money. If you are interested in SEO training, get on a search engine and see what results you get. The top websites listed are sure to be the ones that used search engine optimization. If it works for them, maybe you should give it a try.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/internet-marketing/search-engine-optimization/45">Search Engine Optimization</category>
			<dc:creator>anandpsaini</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/internet-marketing/search-engine-optimization/threads/454907/is-seo-training-required-for-seo-individuals-</guid>
		</item>
				<item>
			<title>Netbeans - two projects in one jar</title>
			<link>http://www.daniweb.com/software-development/java/threads/454906/netbeans-two-projects-in-one-jar</link>
			<pubDate>Sun, 19 May 2013 09:47:56 +0000</pubDate>
			<description>I'm suffering from a complete brainfreeze here; maybe some NetBeans user can un-block me without making me look like a complete idiot? Thanks. I usually use Eclipse, but for this particular project it has to be NetBeans. I have two projects defined. One is the main project with packages - ...</description>
			<content:encoded><![CDATA[ <p>I'm suffering from a complete brainfreeze here; maybe some NetBeans user can un-block me without making me look like a complete idiot? Thanks.<br />
I usually use Eclipse, but for this particular project it has to be NetBeans.</p>

<p>I have two projects defined. One is the main project with packages - let's call them A.B and C.<br />
The second project is a rag-bag of useful classes and utilities in a package ("X") that the main project uses.</p>

<p>In Eclipse I just make project 2 a required project for project 1 and it works.  In particular when I build the main project jar, that jar contains folders A,B,C, amd X with all the class files in it.</p>

<p>When I try to do the same thing in NetBeans it builds a jar with A,B, and C only, then puts X in a separate jar in a lib folder, giving me a messy distribution.</p>

<p>How do I configure my project so Netbeans creates a single jar with A,B.C and X in it?  (and please don't ask me to write a custom Maven script!).</p>

<p>Thanks<br />
J</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>JamesCherrill</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454906/netbeans-two-projects-in-one-jar</guid>
		</item>
				<item>
			<title>Indian hackers take aim at Pakistan data during two year attack</title>
			<link>http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/news/454905/indian-hackers-take-aim-at-pakistan-data-during-two-year-attack</link>
			<pubDate>Sun, 19 May 2013 09:13:22 +0000</pubDate>
			<description>Security researchers at ESET [have revealed](http://www.welivesecurity.com/2013/05/16/targeted-threat-pakistan-india/) that a prolonged and highly targeted data stealing attack aimed at Pakistan, using fake PDF documents, appears to have originated in India. Using a code signing certificate (issued to what looks like a legitimate company 'Technical and Commercial Consulting Pvt. Ltd') to sign malicious ...</description>
			<content:encoded><![CDATA[ <p>Security researchers at ESET <a href="http://www.welivesecurity.com/2013/05/16/targeted-threat-pakistan-india/" rel="nofollow">have revealed</a> that a prolonged and highly targeted data stealing attack aimed at Pakistan, using fake PDF documents, appears to have originated in India.</p>

<p>Using a code signing certificate (issued to what looks like a legitimate company 'Technical and Commercial Consulting Pvt. Ltd') to sign malicious binaries the chances of them being able to distribute the payload was greatly improved. The company concerned, ESET says, was based in New Delhi and the certificate itself was issued in 2011. Documents, mainly PDFs, attached to emails were infected with data stealing malware and signed off with the aforementioned certificate to add authenticity.</p>

<p>ESET malware researcher Jean-Ian Boutin reveals that during the investigation there were several leads that indicated the threat originates from India. "First, the code signing certificate was issued to an Indian company. In addition, all the signing timestamps are between 5:06 and 13:45 UTC, which is consistent with 8-hour work shifts falling between 10:36 and 19:15 in Indian Standard Time" he says, continuing, "we have identified several different documents that followed different themes likely to be enticing to the recipients. One of these is the Indian armed forces". Although Boutin admits that there is no precise information at this point as to which individuals or organisations were specifically targeted by the files. "Based on our investigations" he continues "it is our assumption that people and institutions in Pakistan were targeted".</p>

<p>One of the fake PDF files was delivered through a self-extracting archive called “pakistandefencetoindiantopmiltrysecreat.exe”, and ESET telemetry data shows that Pakistan is heavily affected by this campaign with 79% of detections being in that country. The first infection vector was utilising a widely used and abused vulnerability known as CVE-2012-0158. This vulnerability can be exploited by specially crafted Microsoft Office documents and allows arbitrary code execution. The documents were delivered by email, and the malicious code was executed as soon as the document was opened – without the attacked computer user even knowing. The other infection vector was via Windows executable files appearing to be Word or PDF documents – again distributed via email. In both cases, to evade suspicion by the victim, fake documents are shown to the user on execution.</p>

<p>"The malware was stealing sensitive data from infected PCs and sending them to the attackers’ servers" Boutin adds "It was using various types of data-stealing techniques, among them a key-logger, taking screenshots and uploading documents to attackers’ computer. Interestingly, the information stolen from an infected computer was uploaded to the attacker’s server unencrypted."</p>

<p><img src="/attachments/fetch/L2ltYWdlcy9hdHRhY2htZW50cy8wLzk2NTVmNjJmNDhhMjUzNWY5ZjJiNDI4MzZjMTBlODU2LmpwZw%3D%3D/493" alt="9655f62f48a2535f9f2b42836c10e856" title="9655f62f48a2535f9f2b42836c10e856" /></p>

<p>As you can see from the above screenshot, several strings in the binaries analysed by ESET are related to Indian culture, in particular a variable called ramukaka was used. Boutin explains that "Ramu Kaka is a typical Bollywood-style servant in a house. Considering that this variable is responsible for achieving persistence on the system, this definition is a good fit".</p>

<p>However, the most compelling argument to suggest that the attacks originate in India is to be found within the ESET research telemetry data. According to Boutin lots of malware variants tied to the attack appeared in the same location during a small time-frame. Each of these were very similar to each other, which strongly suggests an attempt to evade malware detection. "These files all appeared in the same region of India" Boutin concludes...</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/64">Viruses, Spyware and other Nasties</category>
			<dc:creator>happygeek</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/news/454905/indian-hackers-take-aim-at-pakistan-data-during-two-year-attack</guid>
		</item>
				<item>
			<title>phpcode unable to connect to My SQL --- OOP project </title>
			<link>http://www.daniweb.com/web-development/php/threads/454904/phpcode-unable-to-connect-to-my-sql-oop-project-</link>
			<pubDate>Sun, 19 May 2013 08:04:25 +0000</pubDate>
			<description>ok here is the login function from my class user which parent class is a Db connection file &lt;?php require_once(&quot;DBConnection.php&quot;); class User extends DBConnection { .... .... ... ... public function Login() { $sqlSelect = &quot;select `UserName` from `user` where `UserName` = '$this-&gt;userName' and `Password` = '$this-&gt;password'&quot;; $result = @mysql_query($sqlSelect, ...</description>
			<content:encoded><![CDATA[ <p>ok here is the login function from my class user which parent class is a Db connection file</p>

<pre><code>&lt;?php
require_once("DBConnection.php");
class User extends DBConnection
{   ....

....
...
...
public function Login()
    {
        $sqlSelect = "select  `UserName` from `user` where `UserName` = '$this-&gt;userName' and `Password` = '$this-&gt;password'";

        $result = @mysql_query($sqlSelect, $this-&gt;get_Conn());

//      $dataCount = mysql_num_rows($result);
        if(mysql_num_rows($result) == 0)
        {
            throw new Exception("Login Failed");
        }

        $userData = mysql_fetch_assoc($result);
        extract($userData); 

        $this-&gt;userId = $UserId;
        $this-&gt;firstName = $FirstName;
        $this-&gt;middleName = $MiddleName;
        $this-&gt;lastName = $LastName;
        $this-&gt;email = $Email;
        $this-&gt;userName = $UserName;
        $this-&gt;password = NULL;
        $this-&gt;loginStatus = true;

        $_SESSION['objUser'] = serialize($this);

        if($remember)
        {
            $struser = serialize($this);
            $expTime = time() + (60*60*24*7);
            setcookie("objUser", $struser, $expTime, "/");  
        }

    }
</code></pre>

<p>when from the login page i press login button it just checks for the values inside the box for error and chekcing the array error() its empty it stays on the same page</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>kakalahori</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454904/phpcode-unable-to-connect-to-my-sql-oop-project-</guid>
		</item>
				<item>
			<title>php session and echo checkbox</title>
			<link>http://www.daniweb.com/web-development/php/threads/454903/php-session-and-echo-checkbox</link>
			<pubDate>Sun, 19 May 2013 06:10:58 +0000</pubDate>
			<description>I have a problem want to be solved. I have three pages. page1.php, page2.php page1.php has a form with two text field. one text field is for name and another is for number. there is a submit button and a &quot;next&quot; button too. using session I want show given name ...</description>
			<content:encoded><![CDATA[ <p>I have a problem want to be solved.<br />
I have three pages. page1.php, page2.php<br />
page1.php has a form with two text field. one text field is for name and another is for number. there is a submit button and a "next" button too. using session I want show given name into page2.php and create checkboxes that according to given number. (e.g if I write 4 in number text field in page1.php then 4 checkboxes will appear in page2.php, if 8 then 8 checkboxes.</p>

<p>I want solve this problem using session.</p>

<p>page1.php</p>

<pre><code>&lt;body&gt;
&lt;p&gt;
        &lt;?php
session_start(); 
?&gt;
      &lt;/p&gt;
      &lt;form id="form1" name="form1" method="post" action=""&gt;
        &lt;p&gt;
          &lt;label for="name"&gt;Name&lt;/label&gt;
          &lt;input type="text" name="name" id="name" /&gt;
        &lt;/p&gt;
        &lt;p&gt;
          &lt;label for="number"&gt;Number&lt;/label&gt;
          &lt;input type="text" name="number" id="number" /&gt;
        &lt;/p&gt;
        &lt;p&gt;
          &lt;input type="submit" name="submit" id="submit" value="SEND" /&gt;
        &lt;/p&gt; &lt;br/&gt;
        &lt;a href="page2.php"&gt; next &lt;/a&gt;
      &lt;/form&gt;

&lt;?php      
if(isset($_POST['submit']))
{
$_SESSION['Name'] = $_POST['name'];
$_SESSION['Number'] = $_POST['number'];
}

$nname = $_SESSION['Name'];
$nnumber = $_SESSION['Number'];
echo $nname . $nnumber;

?&gt;

&lt;/body&gt;
</code></pre>

<p>page2.php</p>

<pre><code>&lt;body&gt;


      &lt;p&gt;
        &lt;?php
session_start(); 



echo $_SESSION['Number'] . $_SESSION['Name'];

$nName = $_SESSION['Name'];
$nNumber = $_SESSION['Number'];

?&gt;
  &lt;/p&gt;
      &lt;form name="form1" method="post" action=""&gt;
        &lt;input type="text" name="first_name" value="&lt;?php  echo $nName; ?&gt;" /&gt;
        &lt;input type="checkbox" name="&lt;?php for($i=0; $i&lt; $nNumber; $i++)
        echo $i;
         ?&gt;" value="&lt;?php for($i=0; $i&lt; $nNumber; $i++)
        echo $i;
         ?&gt;" /&gt;
      &lt;/form&gt;
      &lt;p&gt; &lt;br/&gt;
        &lt;a href="page1.php"&gt;Back&lt;/a&gt;&lt;/p&gt;
&lt;/body&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>rubai</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454903/php-session-and-echo-checkbox</guid>
		</item>
				<item>
			<title>Disposing custom listview events</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454902/disposing-custom-listview-events</link>
			<pubDate>Sun, 19 May 2013 05:51:57 +0000</pubDate>
			<description> Hi, I have creatd a custom lisview. I have subscribed to some of its event like MouseDown, DoubleClick. I want to explicitely unsubcribe it. I know GC will automatically do it but still i want to do it explicitely. Which is the best way to do this ?? Shall I ...</description>
			<content:encoded><![CDATA[ <p>Hi,</p>

<p>I have creatd a custom lisview. I have subscribed to some of its event like  MouseDown, DoubleClick.<br />
I want to explicitely unsubcribe it. I know GC will automatically do it but still i want to<br />
do it explicitely.</p>

<p>Which is the best way to do this ?? Shall I implement dispose pattern to it ??<br />
Please see my code below for reference.</p>

<pre><code class="language-cs">/// &lt;summary&gt;
    /// Summary description for Grid.
    /// &lt;/summary&gt;
    public sealed class MyCustomListView : ListView 
    {
        public PresetGrid()
        {
            // ... related codes

        // Want to unsubscribe this ??
                        MouseDown += OnMouseDown;
            DoubleClick += OnDoubleClick;

        }

        public  void OnDoubleClick(object sender, EventArgs e)
        {
            // .. related codes
        }

        public void GridMouseDown(object sender, MouseEventArgs e)
        {
            if (e == null)
            {
                throw new ArgumentNullException("e");
            }

            // .. related codes
        }

   }
</code></pre>

<p>Thanks a lot.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>sumitrapaul123</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454902/disposing-custom-listview-events</guid>
		</item>
				<item>
			<title>adding date elements to file name in zip command</title>
			<link>http://www.daniweb.com/software-development/shell-scripting/threads/454901/adding-date-elements-to-file-name-in-zip-command</link>
			<pubDate>Sun, 19 May 2013 05:37:48 +0000</pubDate>
			<description>occasionally I run a backup of my phpbb forum files from the Shell command line: zip -r forum_backup ~/public_html/forum/* I'd like to add date elements to the file name, so that the zip file created is automatically formed as forum_backup_05182013.zip or something similar Thanks</description>
			<content:encoded><![CDATA[ <p>occasionally I run a backup of my phpbb forum files from the Shell command line:</p>

<pre><code class="language-sh">zip -r forum_backup  ~/public_html/forum/*
</code></pre>

<p>I'd like to add date elements to the file name, so that the zip file created is automatically formed as</p>

<pre><code class="language-sh">    forum_backup_05182013.zip
</code></pre>

<p>or something similar</p>

<p>Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/shell-scripting/113">Shell Scripting</category>
			<dc:creator>techman41973</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/shell-scripting/threads/454901/adding-date-elements-to-file-name-in-zip-command</guid>
		</item>
				<item>
			<title>getting start with robotic...</title>
			<link>http://www.daniweb.com/software-development/computer-science/threads/454900/getting-start-with-robotic</link>
			<pubDate>Sun, 19 May 2013 05:33:30 +0000</pubDate>
			<description>i want to learn about robotic and i have no idea where to start. problem is that my college dont have any robotic class. so i have to learn every thing on my own. goal is to build and program a robot. should i start learning about hardware or software? ...</description>
			<content:encoded><![CDATA[ <p>i want to learn about robotic and i have no idea where to start. problem is that my college dont have any robotic class. so i have to learn every thing on my own. goal is to build and program a robot.</p>

<p>should i start learning about hardware or software? even with software i guess there are in many different languages.</p>

<p>would i have to buy hardware parts? or a kit? is it cheap? any idea of good kits? and would i have to buy any software too? any there any good tutorial on youtube? sorry for a lot of question. any advice you give me will be helpful.</p>

<p>i want to software in java or c just become i already how who to use it. also i dont want to program kids looking robot like legos etc.. i want to program a robot that i can show other people. i am sure some legos robots are not for kids but my family and friends dont understand software or computers so they probably would laugh it me for it.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/computer-science/14">Computer Science</category>
			<dc:creator>game06</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/computer-science/threads/454900/getting-start-with-robotic</guid>
		</item>
				<item>
			<title>samsung s4</title>
			<link>http://www.daniweb.com/hardware-and-software/tablets-and-mobile-devices/threads/454898/samsung-s4</link>
			<pubDate>Sun, 19 May 2013 04:36:23 +0000</pubDate>
			<description>i have a problem with s4 samsung when its in sleep mode the network for voice connection is off hence i am not able to receive any call and message comes later that you had a miss call..</description>
			<content:encoded><![CDATA[ <p>i have a problem with s4 samsung when its in sleep mode the network for voice connection is off hence i am not able to receive any call and message comes later that you had a miss call..</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/tablets-and-mobile-devices/98">Tablets and Mobile Devices</category>
			<dc:creator>alexistacey4559</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/tablets-and-mobile-devices/threads/454898/samsung-s4</guid>
		</item>
				<item>
			<title>Using Grep command - output results to a text file?</title>
			<link>http://www.daniweb.com/software-development/shell-scripting/threads/454897/using-grep-command-output-results-to-a-text-file</link>
			<pubDate>Sun, 19 May 2013 04:19:04 +0000</pubDate>
			<description>When using the Grep command to find a search string in a set of files, is there a way to dump the results to a text file? Also is there a switch for the Grep command that provides cleaner results for better readability, such as a line feed between each ...</description>
			<content:encoded><![CDATA[ <p>When using the Grep command to find a search string in a set of files, is there a way to dump the results<br />
  to a text file?<br />
 Also is there a switch for the Grep command that provides cleaner results for better readability,<br />
such as a line feed between each entry?<br />
Perhaps there is a Grep script that outputs cleaner results</p>

<p>Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/shell-scripting/113">Shell Scripting</category>
			<dc:creator>techman41973</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/shell-scripting/threads/454897/using-grep-command-output-results-to-a-text-file</guid>
		</item>
				<item>
			<title>JavaScript Radio button selection and validates text field?</title>
			<link>http://www.daniweb.com/web-development/php/threads/454896/javascript-radio-button-selection-and-validates-text-field</link>
			<pubDate>Sun, 19 May 2013 03:10:03 +0000</pubDate>
			<description>I need to use javascript so that when the one radio button is selected nothing happens but if the other one is (for example, Cheque) it will then validate the field (Cheque Number)..</description>
			<content:encoded><![CDATA[ <p>I need to use javascript so that when the one radio button is selected nothing happens but if the other one is (for example, Cheque) it will then validate the field (Cheque Number)..</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>dina85</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454896/javascript-radio-button-selection-and-validates-text-field</guid>
		</item>
				<item>
			<title>Queue link list c++ need to capture time of registration</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454895/queue-link-list-c-need-to-capture-time-of-registration</link>
			<pubDate>Sun, 19 May 2013 02:34:13 +0000</pubDate>
			<description>I am writing a program for a clinic now. here is my code ,the problem now is I need to write 2 functions for my program The first function : is to capture time of registration The second function: is for treated time of patient -each patient can consult DR ...</description>
			<content:encoded><![CDATA[ <p>I am writing a program for a clinic now. here is my code ,the problem now is I need to write 2 functions for my program</p>

<p>The first function : is to capture time of registration The second function: is for treated time of patient -each patient can consult DR max 15 mints- Can you please help me how to do that or if you have any Idea what field / where I should search about this ? thanks</p>

<p>here is my registration Class(if its needed I put the whole code here let me know )</p>

<pre><code class="language-cpp">template &lt;class Type1,class Type2,class Type3&gt; 
              LinkedQueueType&lt;Type1,Type2,Type3&gt;::void setpatientInfo()
    {
               long double IC;
               long double aptNo;
               nodeType&lt;Type1,Type2,Type3&gt;*newNode;
               newNode=new nodeType&lt;Type1,Type2,Type3&gt;;
                newNode-&gt;link=NULL:
                cout&lt;&lt;"whats patient name? "&lt;&lt;endl ;
             cin&gt;&gt;patientName;
             cout &lt;&lt;"enter the patient IC"&lt;&lt; endl;
             cin&gt;&gt;IC;
               newNode-&gt;patientName=patientName;
             newNode-&gt;IC=IC;
               //add new patient
     }
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>nilou.far.79</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454895/queue-link-list-c-need-to-capture-time-of-registration</guid>
		</item>
				<item>
			<title>Recursion inside a loop (Permutation)</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454893/recursion-inside-a-loop-permutation</link>
			<pubDate>Sun, 19 May 2013 00:36:19 +0000</pubDate>
			<description>I was wondering guys if you could explain me how RECURSION works inside a loop!? I got lost here so please anything we ll be much appreciated. public void perm(int[] list, int k, int m) { int i; if (k == m) { for (i = 0; i &lt;= m; ...</description>
			<content:encoded><![CDATA[ <p>I was wondering guys if you could explain me how RECURSION works inside a loop!? I got lost here so please anything we ll be much appreciated.</p>

<pre><code class="language-cs"> public void perm(int[] list, int k, int m)
                {
                    int i;
                    if (k == m)
                    {
                        for (i = 0; i &lt;= m; i++)
                            Console.Write(list[i]);
                        Console.WriteLine(" ");
                    }
                    else
                        for (i = k; i &lt;= m; i++)
                        {
                            swap(ref list[k], ref list[i]);
                            perm(list, k + 1, m);
                            swap(ref list[k], ref list[i]);
                        }
                }
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>castajiz_2</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454893/recursion-inside-a-loop-permutation</guid>
		</item>
				<item>
			<title>Corruption Lingers Following Removal of Malware</title>
			<link>http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/454892/corruption-lingers-following-removal-of-malware</link>
			<pubDate>Sat, 18 May 2013 23:59:14 +0000</pubDate>
			<description>Greetings, My laptop was infected with the Rogue Malware called Internet Security 2013. I had some success in removing it after using Malwarebytes, but there are corruptions that linger. For instance, my Microsoft Security Essentials was not recognizing the only user as the administrator. I fixed this by entirely removing ...</description>
			<content:encoded><![CDATA[ <p>Greetings,</p>

<p>My laptop was infected with the Rogue Malware called Internet Security 2013. I had some success in removing it after using Malwarebytes, but there are corruptions that linger. For instance, my Microsoft Security Essentials was not recognizing the only user as the administrator. I fixed this by entirely removing MSE with Microsoft's fix it program; however, I'm now unable to reinstall MSE--even from a flash drive. It is an installation error (probably due to lingering corruption) and not a download error. Of second order is the problem with Internet Explorer. With the infection of the rogue software, IE9 began to refuse everything I tried to download (firefox[second browser], all antivirus/anti-malware software) as a virus and rejected it. I am able to use firefox (once again, ported from a flash drive) and download anything including software.</p>

<p>I have run several different programs and each has either found something that another did not find or has come up clean.</p>

<pre><code>Malwarebytes
Security Check
AdwCleaner
RogueKiller
Microsoft Fix It
RKill
DDS 
</code></pre>

<p>Let me know which logs are desired.</p>

<p>Thanks a bunch,</p>

<p>-OB</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/64">Viruses, Spyware and other Nasties</category>
			<dc:creator>OutbreaK</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/454892/corruption-lingers-following-removal-of-malware</guid>
		</item>
				<item>
			<title>Resource ID 3 produced - cannot see what is wrong</title>
			<link>http://www.daniweb.com/web-development/php/threads/454891/resource-id-3-produced-cannot-see-what-is-wrong</link>
			<pubDate>Sat, 18 May 2013 23:56:20 +0000</pubDate>
			<description>Hi, I've had a look through the forum(s), however, can't seem to find a solution to my issue (and I don't understand the PHP Manual). Basically, got a website linked to a database, trying to pull data from one table and display onto the website where appropriate. I have the ...</description>
			<content:encoded><![CDATA[ <p>Hi,</p>

<p>I've had a look through the forum(s), however, can't seem to find a solution to my issue (and I don't understand the PHP Manual).</p>

<p>Basically, got a website linked to a database, trying to pull data from one table and display onto the website where appropriate.</p>

<p>I have the following code:</p>

<pre><code>&lt;?php
    include "console/include/code/common.php";  
    //Connect to Database
    DBConnect();
    $Link = mysql_connect(dbhost,user,password);?&gt;

    $Query = "SELECT * FROM database.tablename WHERE eventDay=1";
    $Result = mysql_query ($Query, $Link) or die (mysql_error($Link));

    //ON Debugging - code stops here resulting in Resource ID #3 - suggesting there is a problem
    with the $Result. However, please check the following code to see if there are errors (if poss).

    $Rows=mysql_num_rows($Result) or die (mysql_error($Rows));
    $loop=0;
    while ($loop&lt;$Rows){
            //Add all variables to the output loop.
            $eventVisible=mysql_result($Result,$loop,"eventVisible");
            $eventDay=mysql_result($Result,$loop,"eventDay");
            $eventImagePath=mysql_result($Result,$loop,"eventImagePath");
            $eventTitle=mysql_result($Result,$loop,"eventTitle");
            $eventInfo=mysql_result($Result,$loop,"eventInfo");
            $expiryYear=mysql_result($Result,$loop,"expiryYear");
            $expiryMonth=mysql_result($Result,$loop,"expiryMonth");
            $expiryDay=mysql_result($Result,$loop,"expiryDay");
        //Print out the values into a table
    }

    if($eventVisible==1){
        //EVENT VISIBLE
            date_default_timezone_set('Europe/London');
                if(mktime() &lt; mktime(23,59,59,$expiryMonth,$expiryDay,$expiryYear)) {
                //Event is before expiry?&gt;
                &lt;img src="&lt;?php echo $eventImagePath;?&gt;" width="160" height="160" style="float:left"/&gt; &lt;p&gt;&lt;b&gt;&lt;?php echo $eventTitle;?&gt;&lt;/b&gt;&lt;p&gt;&lt;font color="#000"&gt;&lt;?php echo $eventInfo;?&gt;&lt;/font&gt;   
                &lt;?php }; ?&gt;
        &lt;?php };?&gt;
        &lt;br clear="all"&gt;  
        &lt;br&gt;
        &lt;?php
        //Increment the loop by 1 - so we actually get to an end!
        $loop++;
        //};?&gt;
    &lt;/div&gt;
</code></pre>

<p>This code is for one tab - there are 6, so i simply copy the code, and change the query based on the tab that's selected.<br />
As you can probably tell, I've tried to cut down and explain the code as much as possible - any questions though, feel free to ask.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>maharrington</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454891/resource-id-3-produced-cannot-see-what-is-wrong</guid>
		</item>
				<item>
			<title>super class and sub class, where do they go?</title>
			<link>http://www.daniweb.com/software-development/java/threads/454890/super-class-and-sub-class-where-do-they-go</link>
			<pubDate>Sat, 18 May 2013 23:12:33 +0000</pubDate>
			<description>Hi all, I am reading a bit about inheritance, super classes and subclasses. Now when I build a java program I usually have a java file for the class and another one to test the class. I was wondering if I use a superclass and a subclass, should they be ...</description>
			<content:encoded><![CDATA[ <p>Hi all, I am reading a bit about inheritance, super classes and subclasses. Now when I build a java program I usually have a java file for the class and another one to test the class. I was wondering if I use a superclass and a subclass, should they be in the same file or in 2 different files?<br />
thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>Violet_82</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454890/super-class-and-sub-class-where-do-they-go</guid>
		</item>
				<item>
			<title>win32com error with cx_freeze </title>
			<link>http://www.daniweb.com/software-development/python/threads/454889/win32com-error-with-cx_freeze-</link>
			<pubDate>Sat, 18 May 2013 22:28:30 +0000</pubDate>
			<description>hi guy, i have created an app why my beloved python. i have frozen it using cx_freeze for easy distribution but the problem is, on my development computer (win7) it runs perfectly but when i send it to a testing pc (windows XP sp3 32bit) it give me the error ...</description>
			<content:encoded><![CDATA[ <p>hi guy, i have created an app why my beloved python. i have frozen it using cx_freeze for easy distribution but the problem is, on my development computer (win7) it runs perfectly but when i send it to a testing pc (windows XP sp3 32bit) it give me the error</p>

<pre><code class="language-py">Traceback (most recent call last):
File "C:\Python27\lib\site-packages\cx_Freeze\initscripts\Console.py", line 27, in &lt;module&gt;
File "timeTracker.py", line 555, in &lt;module&gt;
File "timeTracker.py", line 381, in __init__
File "timeTracker.py", line 427, in runTimeThread
File "timeTracker.py", line 494, in __init__
File "timeTracker.py", line 118, in __init__
File "C:\Python27\lib\site-packages\pyttsx-1.1-py2.7.egg\pyttsx\__init__.py", line 39, in init
File "C:\Python27\lib\site-packages\pyttsx-1.1-py2.7.egg\pyttsx\engine.py", line 45, in __init__
File "C:\Python27\lib\site-packages\pyttsx-1.1-py2.7.egg\pyttsx\driver.py", line 66, in __init__
File "C:\Python27\lib\site-packages\pyttsx-1.1-py2.7.egg\pyttsx\drivers\sapi5.py", line 37, in buildDriver
File "C:\Python27\lib\site-packages\pyttsx-1.1-py2.7.egg\pyttsx\drivers\sapi5.py", line 46, in __init__
File "C:\Python27\lib\site-packages\win32com\client\__init__.py", line 317, in WithEvents
AttributeError: 'NoneType' object has no attribute 'CLSID'
</code></pre>

<p>and there is the setup.py file that build the cx_freeze files</p>

<pre><code class="language-py">import sys

from cx_Freeze import setup, Executable

includes =['atexit']
packages = ['pyttsx','win32com.server','win32com.client']
base = None
if sys.platform == "win32":
    base = "Win32GUI"

setup(
        name = "timeTracker",
        version = "1.0.0",
        description = "Keep track of your time take control of your life",
        options = {"build_exe" : {"includes" : includes, "packages": packages }},
        executables = [Executable("timeTracker.py", base = base)])
</code></pre>

<p>help me out. i have searched and searched but no result Note i am new to setup.py and cx_freeze</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/python/114">Python</category>
			<dc:creator>otengkwaku</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/python/threads/454889/win32com-error-with-cx_freeze-</guid>
		</item>
				<item>
			<title>[JS/JQ] Display larger image of a thumbnail</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454888/jsjq-display-larger-image-of-a-thumbnail</link>
			<pubDate>Sat, 18 May 2013 22:16:42 +0000</pubDate>
			<description>So I have this code here: http://jsfiddle.net/4Cqkh/1/ What I'm trying to do is when I click on a thumbnail, the below larger image of it should display according to which thumbnail is clicked. I tried switching the larger image's src to that of the thumbnail src's value when clicked but ...</description>
			<content:encoded><![CDATA[ <p>So I have this code here: <a href="http://jsfiddle.net/4Cqkh/1/" rel="nofollow">http://jsfiddle.net/4Cqkh/1/</a></p>

<p>What I'm trying to do is when I click on a thumbnail, the below larger image of it should display according to which thumbnail is clicked. I tried switching the larger image's src to that of the thumbnail src's value when clicked but it's not working correctly.</p>

<p>(I had to exectuce the js's function by calling itself instead of using onclick since the onclick doesn't seem to work when I tried wrapping it into the img tag).</p>

<p>Any help would be appreciated.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>serph09</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454888/jsjq-display-larger-image-of-a-thumbnail</guid>
		</item>
				<item>
			<title>code for converting csv file to excel</title>
			<link>http://www.daniweb.com/web-development/php/threads/454887/code-for-converting-csv-file-to-excel</link>
			<pubDate>Sat, 18 May 2013 21:11:15 +0000</pubDate>
			<description>hii can any give me a php code that converts a csv file to an excel file</description>
			<content:encoded><![CDATA[ <p>hii can any give me a php code that converts a csv file to an excel file</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>gvsamrat</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454887/code-for-converting-csv-file-to-excel</guid>
		</item>
				<item>
			<title>Broken connector in 1TB external drive</title>
			<link>http://www.daniweb.com/hardware-and-software/pc-hardware/storage/threads/454886/broken-connector-in-1tb-external-drive</link>
			<pubDate>Sat, 18 May 2013 20:37:29 +0000</pubDate>
			<description>Hi, I am afraid somebody somehow broke the usb connector of my Lacie 1TB hard drive (Starck), so I can't connect it ot the laptop anymore. I have removed it from the case and noticed that the plug is actually gone completely and the filaments that used to connect it ...</description>
			<content:encoded><![CDATA[ <p>Hi,<br />
I am afraid somebody somehow broke the usb connector of my Lacie 1TB hard drive (Starck), so I can't connect it ot the laptop anymore. I have removed it from the case and noticed that the plug is actually gone completely and the filaments that used to connect it to the circuit board are broken. Now, I don't have a soldering iron or anything like that, I would just like to be able to access my data in the HD, what should I do?<br />
This is the HD I have <a href="http://www.amazon.co.uk/LaCie-Starck-Desktop-Hard-Drive/dp/B002SGATQE" rel="nofollow">http://www.amazon.co.uk/LaCie-Starck-Desktop-Hard-Drive/dp/B002SGATQE</a></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/pc-hardware/storage/105">Storage</category>
			<dc:creator>Violet_82</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/pc-hardware/storage/threads/454886/broken-connector-in-1tb-external-drive</guid>
		</item>
				<item>
			<title>my table wont update</title>
			<link>http://www.daniweb.com/web-development/php/threads/454885/my-table-wont-update</link>
			<pubDate>Sat, 18 May 2013 20:30:49 +0000</pubDate>
			<description>hallo there, Its a very complicate problem and i wiil try to be as brief as i can. I hope you ll be able to understand my description. i ve coded a script that works perfect in my localhost. When i uploaded the files to a server some things just ...</description>
			<content:encoded><![CDATA[ <p>hallo there,</p>

<p>Its a very complicate problem and i wiil try to be as brief as i can. I hope you ll be able to understand my description.</p>

<p>i ve coded a script that works perfect in my localhost. When i uploaded the files to a server some things just did not work.</p>

<p>For the script i used 2 mysql tambles. The tables have the same exact structure and different names. They are 'big' tables. 46 fields each.</p>

<p>the fields from the tables fills by forms section by section (lets say that a section is 3-5 fields). (one insert and then with updates).</p>

<p>It seems that when  most fields are already filled up the next fields just wont update. There are no errors. When i try to fill up those fields by hand using PHPMYADMIN and the same sql command i used in my code the fields updates just fine.</p>

<p>Is there something i am missing? Do u thing it is a coding mistake or there is a apache setting i did not think about? it is important to mention that if i reapet the procedure by starting filling the table from the section that wouldnt update it will, and soon another section wont update.</p>

<p>i know i may did not give a quite good description. If you dont understand what i am saynig i will try again including some code..</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>dourvas</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454885/my-table-wont-update</guid>
		</item>
				<item>
			<title>Mystery of Multiple Record Insertions</title>
			<link>http://www.daniweb.com/web-development/php/threads/454884/mystery-of-multiple-record-insertions</link>
			<pubDate>Sat, 18 May 2013 20:09:51 +0000</pubDate>
			<description>Hi All I'm sure I'm missing something very small - and embarrassing! I'm being lazy - I could have entered the data manually, but wanted to automate it. I have a small csv file containing swimming meets, dates and locations along the following lines: May-13;;;; 17;other;Level 1 Program 1;Arboretum; 24;other;All ...</description>
			<content:encoded><![CDATA[ <p>Hi All<br />
I'm sure I'm missing something very small - and embarrassing!<br />
I'm being lazy - I could have entered the data manually, but wanted to automate it.</p>

<p>I have a small csv file containing swimming meets, dates and locations along the following lines:</p>

<pre><code>May-13;;;;
17;other;Level 1 Program 1;Arboretum;
24;other;All Levels Program 2;King's Park;
June-13;;;;
15;other;Level 2 3 Program3;Pmb;
.
. and so forth
</code></pre>

<p>I read this into an array, run through the array to correct the date format and then insert each line into a mySQL database table.<br />
All easy, but my code is inserting multiple entries for each key in the array! Sometimes it inserts 6 records for each key and sometimes 19. It jsut seems to be quite random!</p>

<p>My code:</p>

<pre><code>//===== Read csv into array =====
if (($handle = fopen("../uploads/KZNCal.csv", "r")) !== FALSE) {
    while (($data = fgetcsv($handle, 1000, ";")) !== FALSE) {
        $Cal[] = $data;
    }
  fclose($data);
}
$con  = new mysqli($HOST, $USER, $PASS, $NAME);
if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}

$query = $con-&gt;prepare("INSERT INTO `kzn_upcoming` (`meet_name`, `location`, `start_date`) VALUES (?, ?, ?)");
foreach ($Cal as $Key =&gt; $Event) {
    //===== First 2 rows not needed =====
    if ($Key &gt; 1) {
        if (!is_numeric(substr($Event[0], 0, 1))) {
            //===== Get month and year =====
            $Month = date('m', strtotime(substr($Event[0], 0, 3)));
            $Year  = '20' . substr($Event[0], 4);
        }
        else {
            $Day        = trim(substr($Event[0], 0, 2));
            if ($Day &lt; 10) {$Day = '0' . $Day;}
            // === Discarded $Event[1] - of no consequence for this table. ===
            $Name       = $Event[2];
            $Location   = $Event[3];
            $Start      = "$Year-$Month-$Day";
            //===== Inserted into "clean" array to see if there was something wrong =====
            $Calendar[] = array($Name, $Location, $Start);
        }
    }
}
echo "&lt;br&gt;Count: " . count($Calendar) . "&lt;br&gt;"; //===== Produces expected result of 39 =====

$query = $con-&gt;prepare("INSERT INTO `kzn_upcoming` (`meet_name`, `location`, `start_date`) VALUES (?, ?, ?)");
foreach ($Calendar as $Key =&gt; $Meet) {
    echo "$Key: $Meet[0] - $Meet[1] - $Meet[2]&lt;br&gt;"; //===== All displayed correctly =====
    $query-&gt;bind_param("sss", $Meet[0], $Meet[1], $Meet[2]);
    $query-&gt;execute();
}

$query-&gt;close();
$con-&gt;close();
</code></pre>

<p>There are a whole 39 rows in the $Calendar array. The echo produces the expected result - 39 rows, as per the count(). I get random duplication of each record inserted into the table! One run, I had 91 records for each Meet, another "only" 6!<br />
What have I missed?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>RoryGren</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454884/mystery-of-multiple-record-insertions</guid>
		</item>
				<item>
			<title>Eurovision</title>
			<link>http://www.daniweb.com/community-center/geeks-lounge/threads/454883/eurovision</link>
			<pubDate>Sat, 18 May 2013 20:09:30 +0000</pubDate>
			<description>Watching the Eurovision Song Contest. For those of you who have no idea about it, it's a song contest (duh, obviously), contested by 26 countries - in the final anyway. It's truly dire and brilliant in equal measure. I love wathcing it for the scantily clad Eastern Europeans - but ...</description>
			<content:encoded><![CDATA[ <p>Watching the Eurovision Song Contest. For those of you who have no idea about it, it's a song contest (duh, obviously), contested by 26 countries - in the final anyway. It's truly dire and brilliant in equal measure. I love wathcing it for the scantily clad Eastern Europeans - but don't tell the wife. I'm here dutifully scoring the contestants on their musical prowess of course. :)</p>

<p><a href="http://www.eurovision.tv/page/timeline" rel="nofollow">http://www.eurovision.tv/page/timeline</a></p>

<p>A secret passion...</p>

<p>//EDIT</p>

<p>OMG - Romania have to win!!!</p>

<p>Even if Bonnie Tyler (UK entry) is Welsh. That's going to be embarrassing.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/community-center/geeks-lounge/6">Geeks' Lounge</category>
			<dc:creator>diafol</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/community-center/geeks-lounge/threads/454883/eurovision</guid>
		</item>
				<item>
			<title>Assembly Beginner, question</title>
			<link>http://www.daniweb.com/software-development/assembly/threads/454882/assembly-beginner-question</link>
			<pubDate>Sat, 18 May 2013 20:07:19 +0000</pubDate>
			<description>Howdy Friends; I have just started learning assembly, and am currently working with NASM, in Linux. I am not creating anything close to advanced, yet because I would like to know if I am on the right path with what I am learning. The code that is posted below is ...</description>
			<content:encoded><![CDATA[ <p>Howdy Friends;<br />
I have just started learning assembly, and am currently working with NASM, in Linux. I am not creating anything close to advanced, yet because I would like to know if I am on the right path with what I am learning. The code that is posted below is simply a hello world with two lines of output (but it doesn't work the way I intended). The output that I was hoping for was:</p>

<blockquote>
  <p>Howdy Folks!<br />
  Another line!</p>
</blockquote>

<p>However; I simlpy get:</p>

<blockquote>
  <p>Another line!</p>
</blockquote>

<p>Here is my code:</p>

<pre><code>SECTION .text
            global start
START:
            mov eax, 4          ;sys_write
            mov ebx, 1          ;output to screen
            mov ecx, string ;creates address for my string variable
            mov ecx, string2    ;creates address for another string
            mov edx, length ;creates address for my length variable
            mov edx, length2    ;creates address for another length
            int 80h             ;call the kernel
            mov eax, 1          ;sys_exit
            mov ebx, 0          ;no error exit
            int 80h             ;call the kernel
SECTION .data
string: db 'Howdy Folks!', 0Ah  ;output string
length: equ 12                      ;length of string
string2: db 'Another line!', 0Ah    ;output another string
length2: equ 13                 ;length of string2
</code></pre>

<p>Where did I go wrong?<br />
Did I accidentally overwrite string ('Howdy Folks') with the value of string2 ('Another Line!')?<br />
How can I go about fixing this?<br />
Also, are my comments appropriate with how the line actually functions?</p>

<p>For instance;</p>

<pre><code>int 80h             ;call the kernel
</code></pre>

<p>Does this line really call the kernel?<br />
If so what is it actually doing there?</p>

<p>Thanks for any help.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/assembly/125">Assembly</category>
			<dc:creator>pbj.codez</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/assembly/threads/454882/assembly-beginner-question</guid>
		</item>
				<item>
			<title>how to include java file in jsp file?</title>
			<link>http://www.daniweb.com/software-development/java/threads/454881/how-to-include-java-file-in-jsp-file</link>
			<pubDate>Sat, 18 May 2013 19:44:48 +0000</pubDate>
			<description>i want to use JavaFunctions.java into login.jsp file. my plan is to store all my java functions in one file and i can use them later. ex check for string or number etc functions... first my folder tree. webside_01 &gt;.settings &gt;build &gt;src &gt;newServlet JavaFunctions.java website_01_Servlet.java &gt;WebContent &gt;META-INF &gt;WEB-INF index.jsp login.jsp ...</description>
			<content:encoded><![CDATA[ <p>i want to use JavaFunctions.java into login.jsp file. my plan is to store all my java functions in one file and i can use them later. ex check for string or number etc functions...</p>

<p>first my folder tree.</p>

<pre><code class="language-java">webside_01
    &gt;.settings
    &gt;build
    &gt;src
         &gt;newServlet
              JavaFunctions.java
              website_01_Servlet.java
    &gt;WebContent
        &gt;META-INF
        &gt;WEB-INF
        index.jsp
        login.jsp
</code></pre>

<p>JavaFunctions.java</p>

<pre><code class="language-java">public class JavaFunctions {
    /*** test to see if its a number ***/
    public static boolean isNumber(String str){
        try{
            int num = Integer.parseInt(str);
        }
        catch(NumberFormatException e){
            return false;
        }
        return true;
    }/*** End of isnumber Method***/
}
</code></pre>

<p>Know in this login.jsp file i want to use 'isNumber()' method. but iam getting error on:<br />
 &lt;%@ include file="JavaFunctions.java" %&gt;</p>

<p>login.jsp</p>

<pre><code class="language-java">&lt;%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%&gt;
 &lt;%@ include file="JavaFunctions.java" %&gt;
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "<a href="http://www.w3.org/TR/html4/loose.dtd" rel="nofollow">http://www.w3.org/TR/html4/loose.dtd</a>"&gt;
&lt;html&gt;
&lt;head&gt;&lt;/head&gt;
&lt;body&gt;

    .....
&lt;/body&gt;
....
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>game06</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454881/how-to-include-java-file-in-jsp-file</guid>
		</item>
				<item>
			<title>Auto-Populate Based on Text Box</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454880/auto-populate-based-on-text-box</link>
			<pubDate>Sat, 18 May 2013 18:23:54 +0000</pubDate>
			<description>I have Visual Studio Express for Desktop 2012. I am trying to make an accouunt search feature. Similair to this: http://tinypic.com/r/4r2cer/5 Anyways, the Account Holder Name and Balance fields are read-only. How do I type in the Account Number and auto-populate those two fields based on the acct. number. If ...</description>
			<content:encoded><![CDATA[ <p>I have Visual Studio Express for Desktop 2012.</p>

<p>I am trying to make an accouunt search feature. Similair to this: <a href="http://tinypic.com/r/4r2cer/5" rel="nofollow">http://tinypic.com/r/4r2cer/5</a></p>

<p>Anyways, the Account Holder Name and Balance fields are read-only. How do I type in the Account Number and auto-populate those two fields based on the acct. number. If no existance, pop up message. Any info? Which db should i use? Tutorial link?</p>

<p>Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>ahudson</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454880/auto-populate-based-on-text-box</guid>
		</item>
				<item>
			<title>How to solve this case</title>
			<link>http://www.daniweb.com/web-development/databases/mysql/threads/454879/how-to-solve-this-case</link>
			<pubDate>Sat, 18 May 2013 17:25:09 +0000</pubDate>
			<description>There are two tables &quot;LESSON&quot; TABLE Attributes : - id_lesson -lesson_name - semester &quot;LECTURES&quot; TABLE Attributes : - id_lectures - id_lesson - id_lecturer - hour - day How to display all atributes in lectures table where lessons in 2nd semester ? Note : there's id_lesson in lectures table</description>
			<content:encoded><![CDATA[ <p>There are two tables<br />
"LESSON" TABLE<br />
Attributes :<br />
- id_lesson<br />
-lesson_name<br />
- semester</p>

<p>"LECTURES" TABLE<br />
Attributes :<br />
- id_lectures<br />
- id_lesson<br />
- id_lecturer<br />
- hour<br />
- day</p>

<p>How to display all atributes in lectures table where lessons in 2nd semester ?</p>

<p>Note : there's id_lesson in lectures table</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/databases/mysql/126">MySQL</category>
			<dc:creator>andika.kurniawan.121</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/databases/mysql/threads/454879/how-to-solve-this-case</guid>
		</item>
				<item>
			<title>Color Picker - Hover selector</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454878/color-picker-hover-selector</link>
			<pubDate>Sat, 18 May 2013 17:22:01 +0000</pubDate>
			<description>I need to make that when you use a color picker the hover styling would work too. So far I've only got background and border bottom working here is the code below (uses JQuery): var customElements2 =&quot;#search .submit_input, .reputation.positive, .members li.positive&quot;; var customElements = &quot;.maintitle, #community_app_menu &gt; li.active &gt; a, ...</description>
			<content:encoded><![CDATA[ <p>I need to make that when you use a color picker the hover styling would work too. So far I've only got background and border bottom working here is the code below (uses JQuery):</p>

<pre><code class="language-js">    var customElements2 ="#search .submit_input, .reputation.positive, .members li.positive";
    var customElements = ".maintitle, #community_app_menu &gt; li.active &gt; a, .ipsSideBlock h3, #sc-topbar";
    var customText = "#user_navigation a, #main_search, #search_options, #community_app_menu div  li:hover &gt; a, #community_app_menu  li:hover &gt; a, #community_app_menu li.click.click_active &gt; a, #more_apps_menucontentul  li &gt; a:hover, #community_app_menu &gt; li.active &gt; a";

    jQuery('#colorpicker').ColorPicker({
        onSubmit: function(hsb, hex, rgb, el) {
            jQuery(el).val(hex);
            jQuery(el).ColorPickerHide();
            jQuery(el).css("borderBottomColor", "#" + hex);
            jQuery(el).css("backgroundColor", "#" + hex);
            jQuery(customElements).css("border-bottom-color", "#" + hex);
            jQuery(customElements2).css("background-color", "#" + hex);
            jQuery(customText).css("color", "#" + hex);
            jQuery.cookie('customcolor',hex,{ expires: 365, path: '/'});
        },
        onBeforeShow: function () {
            jQuery(this).ColorPickerSetColor(this.value);
        },
        onChange: function (hsb, hex, rgb) {
            jQuery(customElements).css("border-bottom-color", "#" + hex);
            jQuery(customElements2).css("background-color", "#" + hex);
            jQuery(customText).css("color", "#" + hex);
            jQuery.cookie('customcolor',hex,{ expires: 365, path: '/'});
        }
    })
    .bind('keyup', function(){
        jQuery(this).ColorPickerSetColor(this.value);
    });

    if ( (jQuery.cookie('customcolor') != null))    {
        jQuery(customElements).css("border-bottom-color", "#" + jQuery.cookie('customcolor'));
        jQuery(customElements2).css("background-color", "#" + jQuery.cookie('customcolor'));
        jQuery(customText).css("color", "#" + jQuery.cookie('customcolor'));
        jQuery("#colorpicker").val(jQuery.cookie('customcolor'));
    }
    else{
        jQuery(customElements).css("border-bottom-color","#C42323");
        jQuery(customText).css("color","#C42323");
    }

});
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>christian.mcquilkin.9</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454878/color-picker-hover-selector</guid>
		</item>
				<item>
			<title>win32com error with cx_freeze </title>
			<link>http://www.daniweb.com/software-development/python/threads/454877/win32com-error-with-cx_freeze-</link>
			<pubDate>Sat, 18 May 2013 17:17:11 +0000</pubDate>
			<description>Hi guys have a python software that i want to freeze for distribution. The problem is after freezing it with cx_freeze and i run it, it works fine on my development computer but when i sent it to my testing computer (window XP sp3 32bit) it give me this error ...</description>
			<content:encoded><![CDATA[ <p>Hi guys have a python software that i want to freeze for distribution. The problem is after freezing it with cx_freeze and i run it, it works fine on my development computer but when i sent it to my testing computer (window XP sp3 32bit) it give me this error</p>

<pre><code class="language-py">Traceback(mostresent call last):
    File "C:Python27\lib\site-packages\cx_Freeze\initscripts\Console.py", line27, in &lt;module?
    File "timeTracker.py", line 555, in &lt;module&gt;
    File "timeTracker.py", line 381, in __init__
    File "timeTracker.py", line 427, in runTimeThread
    File "timeTracker.py", line 494, in __init__
    File "timeTracker.py", line 118, in __init__
    File "C:Python27\lib\site-packages\pyttsx1.1-py2.7.egg\pyttsx\__init__.py", line 39, in init
    File "C:Python27\lib\site-packages\pyttsx1.1-py2.7.egg\pyttsx\engine.py", line 45, in __init__
    File "C:Python27\lib\site-packages\pyttsx1.1-py2.7.egg\pyttsx\driver.py", line 66, in __init__
    File "C:Python27\lib\site-packages\pyttsx1.1-py2.7.egg\pyttsx\drivers\sapi5.py", line 37, in buildDriver
    File "C:Python27\lib\site-packages\pyttsx1.1-py2.7.egg\pyttsx\drivers\sapi5.py", line 46, in __init__
    File "C:Python27\lib\site-packages\win32com\client\__init__.py", line 317, in WithEvents
    AttributeError: 'NoneType' object has no attribute 'CLSID'
</code></pre>

<p>the setup.py script for the building cx_freeze is</p>

<pre><code class="language-py">import sys

from cx_Freeze import setup, Executable

includes =['atexit']
packages = ['pyttsx','win32com.server','win32com.client']
base = None
if sys.platform == "win32":
    base = "Win32GUI"

setup(
        name = "timeTracker",
        version = "1.0.0",
        description = "Keep track of your time take control of your life",
        options = {"build_exe" : {"includes" : includes, "packages": packages }},
        executables = [Executable("timeTracker.py", base = base)])
</code></pre>

<p>Note i don't have much expereince i</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/python/114">Python</category>
			<dc:creator>otengkwaku</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/python/threads/454877/win32com-error-with-cx_freeze-</guid>
		</item>
				<item>
			<title>IE automaticlly open on startup!</title>
			<link>http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/454876/ie-automaticlly-open-on-startup</link>
			<pubDate>Sat, 18 May 2013 16:58:14 +0000</pubDate>
			<description>I seem to have a problem with my internet explorer. it is starting up automatically when I start my computerI have checked the MSCONFIG and regitry settings for startup but iexplore is not listed anywhere, not even in the startup folder. I also did a HijackThis scan and i am ...</description>
			<content:encoded><![CDATA[ <h2>I seem to have a problem with my internet explorer. it is starting up automatically when I start my computerI have checked the MSCONFIG and regitry settings for startup but iexplore is not listed anywhere, not even in the startup folder. I also did a HijackThis scan and i am posting it here.</h2>

<p>Logfile of Trend Micro HijackThis v2.0.4<br />
Scan saved at 12:54:56 AM, on 19/5/2013<br />
Platform: Windows 7 SP1 (WinNT 6.00.3505)<br />
MSIE: Internet Explorer v10.0 (10.00.9200.16576)<br />
Boot mode: Normal</p>

<p>Running processes:<br />
C:\Windows\SysWOW64\rundll32.exe<br />
C:\Program Files (x86)\WebcamMax\wcmmon.exe<br />
C:\Program Files (x86)\NTI\Acer Backup Manager\BackupManagerTray.exe<br />
C:\Program Files (x86)\Launch Manager\LManager.exe<br />
C:\Program Files (x86)\Acer\clear.fi\Movie\clear.fiMovieService.exe<br />
C:\Program Files (x86)\Winamp\winampa.exe<br />
C:\Program Files (x86)\Celcom Broadband\UIExec.exe<br />
C:\Program Files (x86)\Acer\clear.fi\MVP\clear.fiAgent.exe<br />
C:\Program Files (x86)\Launch Manager\LMworker.exe<br />
C:\Program Files (x86)\Acer\clear.fi\MVP.\Kernel\DMR\DMREngine.exe<br />
C:\Program Files (x86)\Mozilla Firefox\firefox.exe<br />
C:\Program Files (x86)\Internet Download Manager\IDMan.exe<br />
C:\Program Files (x86)\Internet Download Manager\IEMonitor.exe<br />
C:\Windows\system32.exe<br />
C:\Program Files (x86)\Internet Explorer\IELowutil.exe<br />
C:\Program Files (x86)\HijackThis\Trend Micro\HiJackThis\HiJackThis.exe</p>

<p>R1 - HKCU\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = <a href="http://acer.msn.com" rel="nofollow">http://acer.msn.com</a><br />
R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = <a href="http://acer.msn.com/" rel="nofollow">http://acer.msn.com/</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = <a href="http://go.microsoft.com/fwlink/p/?LinkId=255141" rel="nofollow">http://go.microsoft.com/fwlink/p/?LinkId=255141</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = <a href="http://go.microsoft.com/fwlink/?LinkId=54896" rel="nofollow">http://go.microsoft.com/fwlink/?LinkId=54896</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Search Page = <a href="http://go.microsoft.com/fwlink/?LinkId=54896" rel="nofollow">http://go.microsoft.com/fwlink/?LinkId=54896</a><br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = <a href="http://go.microsoft.com/fwlink/p/?LinkId=255141" rel="nofollow">http://go.microsoft.com/fwlink/p/?LinkId=255141</a><br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,SearchAssistant =<br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,CustomizeSearch =<br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Local Page = C:\Windows\SysWOW64\blank.htm<br />
R0 - HKCU\Software\Microsoft\Internet Explorer\Toolbar,LinksFolderName =<br />
F2 - REG:system.ini: UserInit=userinit.exe<br />
O2 - BHO: IDM Helper - {0055C089-8582-441B-A0BF-17B458C2A3A8} - C:\Program Files (x86)\Internet Download Manager\IDMIECC.dll<br />
O2 - BHO: WsSVRIEHelper - {65DEE40A-3E93-4cae-9F98-B8E06DCEE2BF} - C:\Program Files (x86)\Wondershare\Video Converter Ultimate\SVRIEPlugin.dll<br />
O2 - BHO: IESpeakDoc - {8D10F6C4-0E01-4BD4-8601-11AC1FDF8126} - C:\Program Files (x86)\Bluetooth Suite\IEPlugIn.dll<br />
O2 - BHO: Windows Live ID Sign-in Helper - {9030D464-4C02-4ABF-8ECC-5164760863C6} - C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll<br />
O2 - BHO: SingleInstance Class - {FDAD4DA1-61A2-4FD8-9C17-86F7AC245081} - C:\Program Files (x86)\Yahoo!\Companion\Installs\cpn0\YTSingleInstance.dll<br />
O4 - HKLM..\Run: [BackupManagerTray] "C:\Program Files (x86)\NTI\Acer Backup Manager\BackupManagerTray.exe" -h -k<br />
O4 - HKLM..\Run: [SuiteTray] "C:\Program Files (x86)\EgisTec MyWinLockerSuite\x86\SuiteTray.exe"<br />
O4 - HKLM..\Run: [Dolby Advanced Audio v2] "C:\Dolby PCEE4\pcee4.exe" -autostart<br />
O4 - HKLM..\Run: [LManager] C:\Program Files (x86)\Launch Manager\LManager.exe<br />
O4 - HKLM..\Run: [ArcadeMovieService] "C:\Program Files (x86)\Acer\clear.fi\Movie\clear.fiMovieService.exe"<br />
O4 - HKLM..\Run: [WinampAgent] "C:\Program Files (x86)\Winamp\winampa.exe"<br />
O4 - HKLM..\Run: [BrowserPlugInHelper] C:\Program Files (x86)\Wondershare\Video Converter Ultimate\BrowserPlugInHelper.exe<br />
O4 - HKLM..\Run: [SwitchBoard] C:\Program Files (x86)\Common Files\Adobe\SwitchBoard\SwitchBoard.exe<br />
O4 - HKLM..\Run: [AdobeCS6ServiceManager] "C:\Program Files (x86)\Common Files\Adobe\CS6ServiceManager\CS6ServiceManager.exe" -launchedbylogin<br />
O4 - HKLM..\Run: [UIExec] "C:\Program Files (x86)\Celcom Broadband\UIExec.exe"<br />
O4 - HKLM..\Run: [Windows Data Serivce] system32.exe<br />
O4 - HKCU..\Run: [Messenger (Yahoo!)] "C:\PROGRA~2\Yahoo!\MESSEN~1\YahooMessenger.exe" -quiet<br />
O4 - HKCU..\Run: [Facebook Update] "C:\Users\User\AppData\Local\Facebook\Update\FacebookUpdate.exe" /c /nocrashserver<br />
O4 - HKCU..\Run: [LightShot] C:\Users\User\AppData\Local\Skillbrains\lightshot\LightShot.exe Flags: uninsdeletevalue<br />
O4 - HKCU..\Run: [Sidebar] C:\Program Files\Windows Sidebar\sidebar.exe /autoRun<br />
O4 - HKCU..\Run: [GarenaPlus] "C:\Program Files (x86)\Garena Plus\GarenaMessenger.exe" -autolaunch<br />
O4 - HKCU..\Run: [WebcamMaxAutoRun] "C:\Program Files (x86)\WebcamMax\wcmmon.exe" -a<br />
O4 - HKCU..\Run: [Rfeiez] C:\Users\User\AppData\Roaming\Rfeiez.exe<br />
O4 - HKUS\S-1-5-19..\Run: [Sidebar] %ProgramFiles%\Windows Sidebar\Sidebar.exe /autoRun (User 'LOCAL SERVICE')<br />
O4 - HKUS\S-1-5-19..\RunOnce: [mctadmin] C:\Windows\System32\mctadmin.exe (User 'LOCAL SERVICE')<br />
O4 - HKUS\S-1-5-20..\Run: [Sidebar] %ProgramFiles%\Windows Sidebar\Sidebar.exe /autoRun (User 'NETWORK SERVICE')<br />
O4 - HKUS\S-1-5-20..\RunOnce: [mctadmin] C:\Windows\System32\mctadmin.exe (User 'NETWORK SERVICE')<br />
O4 - HKUS\S-1-5-18..\RunOnce: [IsMyWinLockerReboot] msiexec.exe /qn /x{voidguid} (User 'SYSTEM')<br />
O4 - HKUS.DEFAULT..\RunOnce: [IsMyWinLockerReboot] msiexec.exe /qn /x{voidguid} (User 'Default user')<br />
O8 - Extra context menu item: Download all links with IDM - C:\Program Files (x86)\Internet Download Manager\IEGetAll.htm<br />
O8 - Extra context menu item: Download with IDM - C:\Program Files (x86)\Internet Download Manager\IEExt.htm<br />
O9 - Extra button: @C:\Program Files (x86)\Windows Live\Writer\WindowsLiveWriterShortcuts.dll,-1004 - {219C3416-8CB2-491a-A3C7-D9FCDDC9D600} - C:\Program Files (x86)\Windows Live\Writer\WriterBrowserExtension.dll<br />
O9 - Extra 'Tools' menuitem: @C:\Program Files (x86)\Windows Live\Writer\WindowsLiveWriterShortcuts.dll,-1003 - {219C3416-8CB2-491a-A3C7-D9FCDDC9D600} - C:\Program Files (x86)\Windows Live\Writer\WriterBrowserExtension.dll<br />
O9 - Extra button: (no name) - {7815BE26-237D-41A8-A98F-F7BD75F71086} - C:\Program Files (x86)\Bluetooth Suite\IEPlugIn.dll<br />
O9 - Extra 'Tools' menuitem: Send by Bluetooth to - {7815BE26-237D-41A8-A98F-F7BD75F71086} - C:\Program Files (x86)\Bluetooth Suite\IEPlugIn.dll<br />
O9 - Extra button: (no name) - {9819CC0E-9669-4D01-9CD7-2C66DA43AC6C} - (no file)<br />
O10 - Unknown file in Winsock LSP: c:\program files (x86)\common files\microsoft shared\windows live\wlidnsp.dll<br />
O10 - Unknown file in Winsock LSP: c:\program files (x86)\common files\microsoft shared\windows live\wlidnsp.dll<br />
O11 - Options group: [ACCELERATED_GRAPHICS] Accelerated graphics<br />
O18 - Protocol: skype4com - {FFC8B962-9B40-4DFF-9458-1830C7DD7F5D} - C:\PROGRA~2\COMMON~1\Skype\SKYPE4~1.DLL<br />
O18 - Protocol: wlpg - {E43EF6CD-A37A-4A9B-9E6F-83F89B8E6324} - C:\Program Files (x86)\Windows Live\Photo Gallery\AlbumDownloadProtocolHandler.dll<br />
O23 - Service: Adobe Acrobat Update Service (AdobeARMservice) - Adobe Systems Incorporated - C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\armsvc.exe<br />
O23 - Service: Adobe Flash Player Update Service (AdobeFlashPlayerUpdateSvc) - Adobe Systems Incorporated - C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe<br />
O23 - Service: Arp Intelligent Protection Service (AIPS) - Arcai.com - C:\Program Files (x86)\netcut\services\AIPS.exe<br />
O23 - Service: @%SystemRoot%\system32\Alg.exe,-112 (ALG) - Unknown owner - C:\Windows\System32\alg.exe (file missing)<br />
O23 - Service: AtherosSvc - Atheros Commnucations - C:\Program Files (x86)\Bluetooth Suite\adminservice.exe<br />
O23 - Service: Dritek WMI Service (DsiWMIService) - Dritek System Inc. - C:\Program Files (x86)\Launch Manager\dsiwmis.exe<br />
O23 - Service: @%SystemRoot%\system32\efssvc.dll,-100 (EFS) - Unknown owner - C:\Windows\System32\lsass.exe (file missing)<br />
O23 - Service: EgisTec Ticket Service - Egis Technology Inc.  - C:\Program Files (x86)\Common Files\EgisTec\Services\EgisTicketService.exe<br />
O23 - Service: Acer ePower Service (ePowerSvc) - Acer Incorporated - C:\Program Files\Acer\Acer ePower Management\ePowerSvc.exe<br />
O23 - Service: @%systemroot%\system32\fxsresm.dll,-118 (Fax) - Unknown owner - C:\Windows\system32\fxssvc.exe (file missing)<br />
O23 - Service: FLEXnet Licensing Service - Acresso Software Inc. - C:\Program Files (x86)\Common Files\Macrovision Shared\FLEXnet Publisher\FNPLicensingService.exe<br />
O23 - Service: FLEXnet Licensing Service 64 - Acresso Software Inc. - C:\Program Files\Common Files\Macrovision Shared\FLEXnet Publisher\FNPLicensingService64.exe<br />
O23 - Service: GamesAppService - WildTangent, Inc. - C:\Program Files (x86)\WildTangent Games\App\GamesAppService.exe<br />
O23 - Service: GREGService - Acer Incorporated - C:\Program Files (x86)\Acer\Registration\GREGsvc.exe<br />
O23 - Service: Google Update Service (gupdate) (gupdate) - Google Inc. - C:\Program Files (x86)\Google\Update\GoogleUpdate.exe<br />
O23 - Service: Google Update Service (gupdatem) (gupdatem) - Google Inc. - C:\Program Files (x86)\Google\Update\GoogleUpdate.exe<br />
O23 - Service: @keyiso.dll,-100 (KeyIso) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)<br />
O23 - Service: Live Updater Service - Acer Incorporated - C:\Program Files\Acer\Acer Updater\UpdaterService.exe<br />
O23 - Service: Intel(R) Management and Security Application Local Management Service (LMS) - Intel Corporation - C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\LMS\LMS.exe<br />
O23 - Service: Mozilla Maintenance Service (MozillaMaintenance) - Mozilla Foundation - C:\Program Files (x86)\Mozilla Maintenance Service\maintenanceservice.exe<br />
O23 - Service: @comres.dll,-2797 (MSDTC) - Unknown owner - C:\Windows\System32\msdtc.exe (file missing)<br />
O23 - Service: @C:\Program Files (x86)\Nero\Update\NASvc.exe,-200 (NAUpdate) - Nero AG - C:\Program Files (x86)\Nero\Update\NASvc.exe<br />
O23 - Service: NitroPDFReaderDriverCreatorReadSpool2 (NitroReaderDriverReadSpool2) - Nitro PDF Software - C:\Program Files\Common Files\Nitro PDF\Reader\2.0\NitroPDFReaderDriverService2x64.exe<br />
O23 - Service: nProtect GameGuard Service (npggsvc) - Unknown owner - C:\Windows\system32\GameMon.des.exe (file missing)<br />
O23 - Service: NTI IScheduleSvc - NTI Corporation - C:\Program Files (x86)\NTI\Acer Backup Manager\IScheduleSvc.exe<br />
O23 - Service: Overwolf Updater Service (OverwolfUpdaterService) - Overwolf Ltd - C:\Program Files (x86)\Overwolf\OverwolfUpdater.exe<br />
O23 - Service: @%systemroot%\system32\psbase.dll,-300 (ProtectedStorage) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)<br />
O23 - Service: @%systemroot%\system32\Locator.exe,-2 (RpcLocator) - Unknown owner - C:\Windows\system32\locator.exe (file missing)<br />
O23 - Service: @%SystemRoot%\system32\samsrv.dll,-1 (SamSs) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)<br />
O23 - Service: ScsiAccess - Unknown owner - C:\Program Files (x86)\Photodex\ProShow Producer\ScsiAccess.exe<br />
O23 - Service: Skype Updater (SkypeUpdate) - Skype Technologies - C:\Program Files (x86)\Skype\Updater\Updater.exe<br />
O23 - Service: @%systemroot%\system32\spoolsv.exe,-1 (Spooler) - Unknown owner - C:\Windows\System32\spoolsv.exe (file missing)<br />
O23 - Service: @%SystemRoot%\system32\sppsvc.exe,-101 (sppsvc) - Unknown owner - C:\Windows\system32\sppsvc.exe (file missing)<br />
O23 - Service: SwitchBoard - Adobe Systems Incorporated - C:\Program Files (x86)\Common Files\Adobe\SwitchBoard\SwitchBoard.exe<br />
O23 - Service: TuneUp Utilities Service (TuneUp.UtilitiesSvc) - TuneUp Software - C:\Program Files (x86)\TuneUp Utilities 2013\TuneUpUtilitiesService64.exe<br />
O23 - Service: UI Assistant Service - Unknown owner - C:\Program Files (x86)\Celcom Broadband\AssistantServices.exe<br />
O23 - Service: @%SystemRoot%\system32\ui0detect.exe,-101 (UI0Detect) - Unknown owner - C:\Windows\system32\UI0Detect.exe (file missing)<br />
O23 - Service: Intel(R) Management and Security Application User Notification Service (UNS) - Intel Corporation - C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\UNS\UNS.exe<br />
O23 - Service: @%SystemRoot%\system32\vaultsvc.dll,-1003 (VaultSvc) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)<br />
O23 - Service: @%SystemRoot%\system32\vds.exe,-100 (vds) - Unknown owner - C:\Windows\System32\vds.exe (file missing)<br />
O23 - Service: @%systemroot%\system32\vssvc.exe,-102 (VSS) - Unknown owner - C:\Windows\system32\vssvc.exe (file missing)<br />
O23 - Service: @%SystemRoot%\system32\Wat\WatUX.exe,-601 (WatAdminSvc) - Unknown owner - C:\Windows\system32\Wat\WatAdminSvc.exe (file missing)<br />
O23 - Service: @%systemroot%\system32\wbengine.exe,-104 (wbengine) - Unknown owner - C:\Windows\system32\wbengine.exe (file missing)<br />
O23 - Service: @%Systemroot%\system32\wbem\wmiapsrv.exe,-110 (wmiApSrv) - Unknown owner - C:\Windows\system32\wbem\WmiApSrv.exe (file missing)<br />
O23 - Service: Yahoo! Updater (YahooAUService) - Yahoo! Inc. - C:\Program Files (x86)\Yahoo!\SoftwareUpdate\YahooAUService.exe</p>

<p>--<br />
End of file - 12844 bytes</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/64">Viruses, Spyware and other Nasties</category>
			<dc:creator>hakka.tokumeino</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/454876/ie-automaticlly-open-on-startup</guid>
		</item>
				<item>
			<title>Problem installing XNA </title>
			<link>http://www.daniweb.com/software-development/game-development/threads/454875/problem-installing-xna-</link>
			<pubDate>Sat, 18 May 2013 14:44:43 +0000</pubDate>
			<description>**Am having vB.Net on my system, am about installing XNA application but it still ask me that some requirement are missing i.e visual studio 2008, l don't know what to do about that.**</description>
			<content:encoded><![CDATA[ <p><strong>Am having vB.Net on my system, am about installing XNA application but it still ask me that some requirement are missing i.e visual studio 2008, l don't know what to do about that.</strong></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/game-development/71">Game Development</category>
			<dc:creator>odunfa.toptiner</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/game-development/threads/454875/problem-installing-xna-</guid>
		</item>
				<item>
			<title>Saved File Format</title>
			<link>http://www.daniweb.com/software-development/java/threads/454874/saved-file-format</link>
			<pubDate>Sat, 18 May 2013 14:43:51 +0000</pubDate>
			<description>Hi...! I'm working on a notepad project,in save or saveas option just like the real notepad i want that the file automaticly save as .txt file if in the option below i choose &quot;all files&quot; it saves a file and if i choose &quot;text documnet&quot; save as *.txt file how ...</description>
			<content:encoded><![CDATA[ <p>Hi...! I'm working on a notepad project,in save or saveas option just like the real notepad i want that the file automaticly save as .txt file<br />
if in the option below i choose "all files" it saves a file and if i choose "text documnet" save as *.txt file how can i do that?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>peymankop</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454874/saved-file-format</guid>
		</item>
				<item>
			<title>Datagridview combobox column add items</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454873/datagridview-combobox-column-add-items</link>
			<pubDate>Sat, 18 May 2013 14:01:06 +0000</pubDate>
			<description>I have a combobox with 5 coloums of which coloumn 1 is DataGridViewComboBoxColumn I want to populate / add items to DataGridViewComboBoxColumn with data from access database using datatable. i am not getting how to add items to DataGridViewComboBoxColumn. How can i do it. Thanks</description>
			<content:encoded><![CDATA[ <p>I have a combobox with 5 coloums of which coloumn 1 is DataGridViewComboBoxColumn</p>

<p>I want to populate / add items to DataGridViewComboBoxColumn with data from access database using datatable.</p>

<p>i am not getting how to add items to DataGridViewComboBoxColumn. How can i do it.</p>

<p>Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>PM312</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454873/datagridview-combobox-column-add-items</guid>
		</item>
				<item>
			<title>Windows 8 - Internet Stops working after a while</title>
			<link>http://www.daniweb.com/hardware-and-software/microsoft-windows/windows-vista-and-windows-7-8/threads/454872/windows-8-internet-stops-working-after-a-while</link>
			<pubDate>Sat, 18 May 2013 13:47:56 +0000</pubDate>
			<description>I have a computer that came preloaded with windows 8, and I have noticed that when I leave it on without using it for a while (maybe 15 mins, haven't actually timed it) it will say that I am connected to the internet with internet access, but when I try ...</description>
			<content:encoded><![CDATA[ <p>I have a computer that came preloaded with windows 8, and I have noticed that when I leave it on without using it for a while (maybe 15 mins, haven't actually timed it) it will say that I am connected to the internet with internet access, but when I try to use it it displays that I have no internet connection in the browser. If I run the windows diagnosis from the network &amp; sharing center it says that there is no problem with the internet. Then I click search for online solutions and it says I need to connect to the internet (while already being connected with internet access).</p>

<p>I searched online, and came across a site which said there was a power saving feature in windows 8 that would turn off the wireless if the computer was not being used, and it said to go to the battery options, select the mode you are running and hit advanced settings, and then set wireless adapter settings power saving mode to max performance. I did this, but my computer is still losing connection to the internet. So far the only working solution I have found is to restart the computer. How can I fix this problem?</p>

<p>Thanks for the help.</p>

<p>ps.</p>

<p>I have tried:<br />
disconnect from internet and reconnect to internet<br />
locking the screen<br />
changing power plans (both had wireless adapter setting set to max performance)<br />
putting the computer to sleep and restarting it<br />
doing something else for 5 mins then trying the internet</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/microsoft-windows/windows-vista-and-windows-7-8/38">Windows Vista and Windows 7 / 8</category>
			<dc:creator>sirlink99</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/microsoft-windows/windows-vista-and-windows-7-8/threads/454872/windows-8-internet-stops-working-after-a-while</guid>
		</item>
				<item>
			<title>Build a new pc</title>
			<link>http://www.daniweb.com/hardware-and-software/threads/454871/build-a-new-pc</link>
			<pubDate>Sat, 18 May 2013 13:16:19 +0000</pubDate>
			<description>I am planning to build a budget gaming pc this June. **Not worth more than $600.** Here's the configuration: http://www.flipkart.com/wishlist/navking.venkat7-7098 [$215] CPU: Intel i5 3470 3.2 GHz [$78] GPU: ZOTAC NVidia GEforce GT630 Synergy edition (2GB) [$86] HDD: Seagate Barracuda 1TB [$89] Mobo: Gigabyte GA-B75M-D3H [$92] RAM: Corsair Vengeance 4GB ...</description>
			<content:encoded><![CDATA[ <p>I am planning to build a budget gaming pc this June. <strong>Not worth more than $600.</strong><br />
Here's the configuration: <a href="http://www.flipkart.com/wishlist/navking.venkat7-7098" rel="nofollow">http://www.flipkart.com/wishlist/navking.venkat7-7098</a></p>

<p>[$215] CPU: Intel i5 3470 3.2 GHz<br />
[$78] GPU: ZOTAC NVidia GEforce GT630 Synergy edition (2GB)<br />
[$86] HDD: Seagate Barracuda 1TB<br />
[$89] Mobo: Gigabyte GA-B75M-D3H<br />
[$92] RAM: Corsair Vengeance 4GB x 2 (8GB total)<br />
[$20] ODD: Samsung SH-224BB DVD Burner Internal Optical Drive<br />
[$63] PSU: Corsair VS550 550 watt<br />
[$39]Cab: Cooler Master Elite 310 (blue)</p>

<p><strong>Q1. Will each component be compatible with the others?</strong></p>

<p><strong>Q2. I saw that i5 has technologies like vPro technology but the motherboard does not have. Will that be a liability for me or will those technologies work?</strong></p>

<p><strong>Q3. Would there be any bottleneck issues in this configuration?</strong></p>

<p><strong>Q4. The above configuration is coming out to be $680!!! I want to reduce the cost to like $600 as I need to buy a monitor too which itself will be around $100. Where should I cut the cost?</strong></p>

<p><strong>Q5. Will this configuration be future proof, for like, 5 years - until I graduate from college?</strong></p>

<p><strong>Q6. Is AMD better than Intel for gaming? Is ATI Radeon better than Nvidia for gaming?</strong></p>

<p><em>Thanks to everyone in advance!</em></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/1">Hardware and Software</category>
			<dc:creator>nmakes</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/threads/454871/build-a-new-pc</guid>
		</item>
				<item>
			<title>input data from text file</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454870/input-data-from-text-file</link>
			<pubDate>Sat, 18 May 2013 13:11:17 +0000</pubDate>
			<description> 3 years ago, one brother solved this problem, i need this program to make some calculation. actually, i have some fractional/decimal component t (like 2.0213, 3.047) this program can only take integer. Can anybody please help me !!! #include&lt;iostream&gt; #include&lt;fstream&gt; #include&lt;string&gt; #include&lt;cstdlib&gt; #include&lt;cmath&gt; #include&lt;iomanip&gt; #include &lt;windows.h&gt; using namespace std; //void ...</description>
			<content:encoded><![CDATA[ <p>3 years ago, one brother solved this problem, i need this program to make some calculation. actually, i have some fractional/decimal component t (like 2.0213, 3.047) this program can only take integer. Can anybody please help me !!!</p>

<p>#include&lt;iostream&gt;<br />
   #include&lt;fstream&gt;<br />
   #include&lt;string&gt;<br />
   #include&lt;cstdlib&gt;<br />
   #include&lt;cmath&gt;<br />
   #include&lt;iomanip&gt;<br />
   #include &lt;windows.h&gt;</p>

<pre><code class="language-cpp">using namespace std;
//void calculateAverage();
//int calculateGrade();
//void updateFrequency();
int main()
       {

        const int size=25;
        int debug=size;
        int test1[size], test2[size];
        ifstream infile;


            for(int i=0;i&lt;size;i++)
                {
                    test1[i]=0;
                    test2[i]=0;
                }


                cout&lt;&lt;"Reading from file ''input.txt''..."&lt;&lt;endl;
                infile.open("input.txt");
                while(size==debug)
                {
            for(int i=0;i&lt;size;i++)
                {
                    infile&gt;&gt;test1[i];
                    infile&gt;&gt;test2[i];
                }
                debug--;
                }
             for(int i=0;i&lt;size;i++)
                {
                cout&lt;&lt;test1[i]&lt;&lt;" "&lt;&lt;test2[i]&lt;&lt;" "&lt;&lt;endl;
                }
        infile.close();


        system("pause");
        return 0;
        }
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>siddiquedu</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454870/input-data-from-text-file</guid>
		</item>
				<item>
			<title>Not display the alert if email does not exist in table</title>
			<link>http://www.daniweb.com/web-development/php/threads/454869/not-display-the-alert-if-email-does-not-exist-in-table</link>
			<pubDate>Sat, 18 May 2013 12:50:14 +0000</pubDate>
			<description>Can someone have a look at some code for me? Here the problem. This is meant to delet an email address form a mysql table then alert the user this has been done. If the address does not exist then it alerts the user to that too. But even if ...</description>
			<content:encoded><![CDATA[ <p>Can someone have a look at some code for me?</p>

<p>Here the problem. This is meant to delet an email address form a mysql table then alert the user this has been done. If the address does not exist then it alerts the user to that too.</p>

<p>But even if the address ddoes not exist it alerts the user that the address has been deleted!</p>

<p>Heres the code</p>

<pre><code>if (filter_var($email, FILTER_VALIDATE_EMAIL)) {
   if($r = mysql_query("DELETE FROM maillist WHERE email = '$mail'")){
      echo '&lt;script type="text/javascript"&gt; alert("Email Address Has Been Deleted") &lt;/script&gt;';
   }
   else {
      echo '&lt;script type="text/javascript"&gt; alert("Email Does Not Exist In Database") &lt;/script&gt;';
   }
   }
   else {
      echo '&lt;script type="text/javascript"&gt; alert("This Is Not A Valid Email Address!") &lt;/script&gt;';
   }
   }
</code></pre>

<p>Thanks for looking...............</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>GlenRogers</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454869/not-display-the-alert-if-email-does-not-exist-in-table</guid>
		</item>
				<item>
			<title>Find a String in Several Files at a ago</title>
			<link>http://www.daniweb.com/software-development/perl/code/454868/find-a-string-in-several-files-at-a-ago</link>
			<pubDate>Sat, 18 May 2013 12:41:45 +0000</pubDate>
			<description>I really got bored and tired of trying to find or remember some codes usage in so many files saved on my system, when it was needed. So, I called 'Monsieur' perl for help, hacking together some codes which works great for me and solve my problem of boredom. You ...</description>
			<content:encoded><![CDATA[ <p>I really got bored and tired of trying to find or remember some codes usage in so many files saved on my system, when it was needed.</p>

<p>So, I called 'Monsieur' perl for help, hacking together some codes which works great for me and solve my problem of boredom.</p>

<p>You run the code from the CLI, like so: perl &lt;perl_script.pl&gt; &lt;-l | -location&gt; &lt;-s | -search &gt;<br />
 E.g. perl search_doc.pl -l Desktop/Doc_file -s Win32::OLE</p>

<ol><li>Your perl file : search_doc.pl</li>
<li>Your location  : -l Desktop/Doc_file or -location Desktop/Doc_file</li>
<li>Your search string: -s Win32::OLE or -search Win32::OLE</li>
</ol>

<p>You can decide to use <code>--l</code> or <code>--search</code> as you want.</p>

<p>Please feel free to add comments, to ask question and use as you want.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/perl/112">Perl</category>
			<dc:creator>2teez</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/perl/code/454868/find-a-string-in-several-files-at-a-ago</guid>
		</item>
				<item>
			<title>Php overwrite file with variable</title>
			<link>http://www.daniweb.com/web-development/php/threads/454867/php-overwrite-file-with-variable</link>
			<pubDate>Sat, 18 May 2013 12:36:24 +0000</pubDate>
			<description>Hey all, i'm working on some code and i've got a little problem. $my_file = 'file.php'; $newline = &quot;&lt;?php $root = '&quot;$mylocation&quot;/'; ?&gt;&quot;; file_put_contents($my_file, $newline); As you can see i want to post a line into a file.. The problem is, this file will output: &lt;?php = 'your location'; ?&gt; ...</description>
			<content:encoded><![CDATA[ <p>Hey all,</p>

<p>i'm working on some code and i've got a little problem.</p>

<pre><code>$my_file = 'file.php';
$newline = "&lt;?php $root = '"$mylocation"/'; ?&gt;";
file_put_contents($my_file, $newline);
</code></pre>

<p>As you can see i want to post a line into a file.. The problem is, this file will output:</p>

<p>&lt;?php = 'your location'; ?&gt;</p>

<p>the $root is gone..<br />
Please help me.<br />
Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>martjojo1</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454867/php-overwrite-file-with-variable</guid>
		</item>
				<item>
			<title>Converting mysql class to sqlite class</title>
			<link>http://www.daniweb.com/web-development/php/threads/454865/converting-mysql-class-to-sqlite-class</link>
			<pubDate>Sat, 18 May 2013 11:36:02 +0000</pubDate>
			<description>I need to convert mysql class of one script to make a support for sqlite,but problem is sqlite dont have username/password thing nor database select as well,which means how some parts need to be removed.If i would convert to mssql one search and replace probaly would do the job.There is ...</description>
			<content:encoded><![CDATA[ <p>I need to convert mysql class of one script to make a support for sqlite,but problem is sqlite dont have username/password thing nor database select as well,which  means how some parts need to be removed.If i would convert to mssql one search and replace probaly would do the job.There is another file which contain queries but i belive that does'nt need to be touched.</p>

<p>So here is the code,what lines i need to remove and which just replace?</p>

<pre><code>&lt;?php
class _database {
    private $link       = false;
    private $result     = false;
    private $row        = false;

    public $settings    = array(
            "servername"=&gt; "localhost",
            "serverport"=&gt; "3306",
            "username"  =&gt; false,
            "password"  =&gt; false,
            "database"  =&gt; false,
            "persist"   =&gt; false,
            "dieonerror"=&gt; false,
            "showerror" =&gt; false,
            "error_file"=&gt; true
        );

    function __construct() {
        global $db_config;
        $this-&gt;settings = array_merge($this-&gt;settings, $db_config);
        if($this-&gt;settings["error_file"] === true) $this-&gt;settings["error_file"] = dirname(__FILE__)."/__mysql_errors.log";
    }

    function connect() {
        if (!$this-&gt;link) {
            $this-&gt;link = ($this-&gt;settings["persist"]) ? 
                mysql_pconnect(
                    $this-&gt;settings["servername"].":".$this-&gt;settings["serverport"], 
                    $this-&gt;settings["username"], 
                    $this-&gt;settings["password"]
                ) : 
                mysql_connect(
                    $this-&gt;settings["servername"].":".$this-&gt;settings["serverport"], 
                    $this-&gt;settings["username"], 
                    $this-&gt;settings["password"]
                ) or $this-&gt;error();
        }
        if (!mysql_select_db($this-&gt;settings["database"], $this-&gt;link)) $this-&gt;error();
        if($this-&gt;link) mysql_query("SET NAMES 'utf8'");
        return ($this-&gt;link) ? true : false;
    }

    function query($sql) {
        if (!$this-&gt;link &amp;&amp; !$this-&gt;connect()) $this-&gt;error();
        if (!($this-&gt;result = mysql_query($sql, $this-&gt;link))) $this-&gt;error($sql);
        return ($this-&gt;result) ? true : false;
    }

    function nextr() {
        if(!$this-&gt;result) {
            $this-&gt;error("No query pending");
            return false;
        }
        unset($this-&gt;row);
        $this-&gt;row = mysql_fetch_array($this-&gt;result, MYSQL_BOTH);
        return ($this-&gt;row) ? true : false ;
    }

    function get_row($mode = "both") {
        if(!$this-&gt;row) return false;

        $return = array();
        switch($mode) {
            case "assoc":
                foreach($this-&gt;row as $k =&gt; $v) {
                    if(!is_int($k)) $return[$k] = $v;
                }
                break;
            case "num":
                foreach($this-&gt;row as $k =&gt; $v) {
                    if(is_int($k)) $return[$k] = $v;
                }
                break;
            default:
                $return = $this-&gt;row;
                break;
        }
        return array_map("stripslashes",$return);
    }

    function get_all($mode = "both", $key = false) {
        if(!$this-&gt;result) {
            $this-&gt;error("No query pending");
            return false;
        }
        $return = array();
        while($this-&gt;nextr()) {
            if($key !== false) $return[$this-&gt;f($key)] = $this-&gt;get_row($mode);
            else $return[] = $this-&gt;get_row($mode);
        }
        return $return;
    }

    function f($index) {
        return stripslashes($this-&gt;row[$index]);
    }

    function go_to($row) {
        if(!$this-&gt;result) {
            $this-&gt;error("No query pending");
            return false;
        }
        if(!mysql_data_seek($this-&gt;result, $row)) $this-&gt;error();
    }

    function nf() {
        if ($numb = mysql_num_rows($this-&gt;result) === false) $this-&gt;error();
        return mysql_num_rows($this-&gt;result);
    }
    function af() {
        return mysql_affected_rows();
    }
    function error($string="") {
        $error = mysql_error();
        if($this-&gt;settings["show_error"]) echo $error;
        if($this-&gt;settings["error_file"] !== false) {
            $handle = @fopen($this-&gt;settings["error_file"], "a+");
            if($handle) {
                @fwrite($handle, "[".date("Y-m-d H:i:s")."] ".$string." &lt;".$error."&gt;\n");
                @fclose($handle);
            }
        }
        if($this-&gt;settings["dieonerror"]) {
            if(isset($this-&gt;result)) mysql_free_result($this-&gt;result);
            mysql_close($this-&gt;link);
            die();
        }
    }
    function insert_id() {
        if(!$this-&gt;link) return false;
        return mysql_insert_id();
    }
    function escape($string){
        if(!$this-&gt;link) return addslashes($string);
        return mysql_real_escape_string($string);
    }

    function destroy(){
        if (isset($this-&gt;result)) mysql_free_result($this-&gt;result);
        if (isset($this-&gt;link)) mysql_close($this-&gt;link);
    }


}
?&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>JACOBKELL</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454865/converting-mysql-class-to-sqlite-class</guid>
		</item>
				<item>
			<title>Image popup from text</title>
			<link>http://www.daniweb.com/web-development/web-design-html-and-css/threads/454864/image-popup-from-text</link>
			<pubDate>Sat, 18 May 2013 10:47:39 +0000</pubDate>
			<description>I want to make a image pop up on my site, where if you hover over a line of text, a image will pop up on top of everything else on the page, using HTML5 and CSS3, can someone help me with this? ~I've tried some tutorials online but they ...</description>
			<content:encoded><![CDATA[ <p>I want to make a image pop up on my site, where if you hover over a line of text, a image will pop up on top of everything else on the page, using HTML5 and CSS3, can someone help me with this?</p>

<p>~I've tried some tutorials online but they havent worked.</p>

<p>Thanks in advance!</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/web-design-html-and-css/15">Web Design, HTML and CSS</category>
			<dc:creator>Hazzag1995</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/web-design-html-and-css/threads/454864/image-popup-from-text</guid>
		</item>
				<item>
			<title>Custom Class</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454863/custom-class</link>
			<pubDate>Sat, 18 May 2013 10:32:49 +0000</pubDate>
			<description>I have created custom text box for specific purpose i.e to accept alphanumeric values only and the length of text should be 6. If the user put less than six characters the code in below block converts it to 6 characters by filling in zeros . ‘Custom Clss block Protected ...</description>
			<content:encoded><![CDATA[ <p>I have created custom text box for specific purpose i.e to accept alphanumeric values only and the length of text should be 6. If the user put less than six characters the  code in below block converts it to 6 characters by filling in zeros .</p>

<pre><code class="language-vb">‘Custom Clss block
Protected Overrides Sub OnLostFocus(ByVal e As System.EventArgs)
‘some code
End sub 
</code></pre>

<p>Also i write code for LostFocus in in form code</p>

<pre><code class="language-vb">‘Form class block
Private Sub TxtPurchasePLCode_LostFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles TxtPurchasePLCode.LostFocus

‘some code
End sub
</code></pre>

<p>**<br />
Now the  problem is code written  on form class block get triggered before code in Custom Clss block<br />
How can i make Custom Clss block Trigger  before form class<br />
**</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>PM312</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454863/custom-class</guid>
		</item>
				<item>
			<title>PHP wont make a file.</title>
			<link>http://www.daniweb.com/web-development/php/threads/454862/php-wont-make-a-file</link>
			<pubDate>Sat, 18 May 2013 09:55:21 +0000</pubDate>
			<description>I am trying to create a file that with some values the user entered in the webpage. But my code doesnt create a file. And I have other code that is more or less similar that creates the file: Here is my code: &lt;?php echo &quot;&lt;p&gt; In order to create ...</description>
			<content:encoded><![CDATA[ <p>I am trying to create a file that with some values the user entered in the webpage. But my code doesnt create a file. And I have other code that is more or less similar that creates the file:</p>

<p>Here is my code:</p>

<pre><code>        &lt;?php
            echo "&lt;p&gt; In order to create an account we need certain information about you. We will not in anyway use this information &lt;br&gt; ";
            echo "  To identify you personaly. Read out privacy statement &lt;a href='privacy.php'&gt;HERE&lt;/a&gt;&lt;/p&gt;";
            echo "&lt;div class='min_h_personal'&gt;";
            echo "  &lt;h2 class='per_h2'&gt;Required information&lt;/h2&gt; ";
            echo "&lt;/div&gt;";

            echo "&lt;center&gt;";
            echo "&lt;form&gt;";
            echo "First name:&lt;br&gt;";
            echo "&lt;input type='text' name='fname'/&gt;&lt;br&gt;";
            echo "Last name:&lt;br&gt;";
            echo "&lt;input type='text' name='lname'/&gt;&lt;br&gt;";
            echo "Email: &lt;br&gt;";
            echo "&lt;i style='font-size:12;'&gt; Is also your account name &lt;/i&gt;&lt;br&gt;";
            echo "&lt;input type='text' name='email'/&gt;&lt;br&gt;";
            echo "Password: &lt;br&gt;";
            echo "      &lt;i style='font-size:12;'&gt; Must contain atleas 1 number and 1 upper case character &lt;/i&gt;&lt;br&gt;";
            echo "      &lt;input type='password' name='password'/&gt;&lt;br&gt;";
            echo "      &lt;input type='checkbox' name='gender'/&gt; Male&lt;br&gt;";
            echo "      &lt;input type='checkbox' name='gender'/&gt; Female&lt;br&gt;";
            echo "      Country:&lt;br&gt;";
            echo "      &lt;!-- this took me a long time to list all the countries :| --&gt;";
            echo "      &lt;select&gt;";
            echo "          &lt;option name='c' id='country'&gt; --- Select onse --- &lt;/option&gt;";
            echo "          &lt;option name='africa' id='country'&gt; Africa &lt;/option&gt;";
            echo "          &lt;option name='america' id='country' America &lt;/option&gt;";
            echo "          &lt;option name='europe' id='country' Europe &lt;/option&gt;";
            echo "          &lt;option name='ociania' id='country'&gt; Ociania &lt;/option&gt;";
            echo "          &lt;option name='antartica' id='country'&gt; Antartica &lt;/option&gt;";
            echo "      &lt;/select&gt;";
            echo "      &lt;br&gt;";
            echo "      &lt;iframe src='forumrulesexcept.php' width='500' height='450'&gt;";
            echo "      &lt;/iframe&gt;&lt;br&gt;";
            echo "      &lt;input type='checkbox' name='no'/&gt; No &lt;br&gt;";
            echo "      &lt;input type='checkbox' name='yes'/&gt; Yes &lt;br&gt;";
            echo "  &lt;/form&gt;";
            echo "&lt;/center&gt;";

            echo "&lt;div class='add_info'&gt;";
            echo "  &lt;h2 class='add_h2'&gt;Additional infromation&lt;/h2&gt;";
            echo "&lt;/div&gt;";
            echo "&lt;center&gt;";
            echo "  &lt;form&gt;";
            echo "      Job position: &lt;br&gt;";
            echo "      &lt;input type='text' name='job'/&gt;&lt;br&gt;";
            echo "      Company: &lt;br&gt; ";
            echo "      &lt;input type='text' name='company'&gt;&lt;br&gt;";
            echo "      Cellphone: &lt;br&gt;";
            echo "      &lt;input type='text' name='cell'/&gt;&lt;br&gt;";
            echo "  &lt;/form&gt;";
            echo "  &lt;input type='submit' name='submit' value='Submit'&gt;";
            echo "&lt;/center&gt;";

            if(isset($_REQUEST['submit'])){
            $email = $_REQUEST['email'];
            $pass = $_REQUEST['password'];

            $file = fopen($email.$pass.".html");

            fwrite($file, "$email");

            fclose($file);
            }

            ?&gt;
</code></pre>

<p>This is only a peice, this piece is contained in a larger .php file.<br />
What is wrong and how do I fix it?</p>

<p>Thanks...</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>MasterHacker110</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454862/php-wont-make-a-file</guid>
		</item>
				<item>
			<title>Abstract Class in Java</title>
			<link>http://www.daniweb.com/software-development/java/threads/454861/abstract-class-in-java</link>
			<pubDate>Sat, 18 May 2013 09:37:26 +0000</pubDate>
			<description>What is abstract class in Java? and why is it use?</description>
			<content:encoded><![CDATA[ <p>What is abstract class in Java? and why is it use?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>sushants</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454861/abstract-class-in-java</guid>
		</item>
				<item>
			<title>Will my idea for a login script work?</title>
			<link>http://www.daniweb.com/web-development/php/threads/454859/will-my-idea-for-a-login-script-work</link>
			<pubDate>Sat, 18 May 2013 08:51:03 +0000</pubDate>
			<description>I am a noob at web programming. I am currently writing a test forum. People will be able to create accounts and then login. But my problem is I dont know how a login script works. So I came up with this idea: 1): Every time an user creates an ...</description>
			<content:encoded><![CDATA[ <p>I am a noob at web programming. I am currently writing a test forum. People will be able to create accounts and then login. But my problem is I dont know how a login script works. So I came up with this idea:</p>

<pre><code>1): 
    Every time an user creates an account I will write the user's name, email and password to a database file.
    Then when he tries to login he my php program will query the file line by line and see if there is a match.
    Once it has a match it will load the users profile page, the name of his page will be [name]+[email]+[password].html
    So that each file will be unique.
</code></pre>

<p>So will it work or is there a nother way, posibly better, more secure way?</p>

<p>Also (I am not sure if this is against daniweb rules, I couldnt find anything that said it was) but if anyone would like to work with me on this project please contact me by sending me a message through daniweb.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>MasterHacker110</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454859/will-my-idea-for-a-login-script-work</guid>
		</item>
				<item>
			<title>Program Java</title>
			<link>http://www.daniweb.com/software-development/java/threads/454858/program-java</link>
			<pubDate>Sat, 18 May 2013 08:03:53 +0000</pubDate>
			<description>I am a final year student. My supervisor had asked me for creating one chat program using java. i don't have any idea on how to started it. he asked me for doing a standalone system. please help me solve this problem?</description>
			<content:encoded><![CDATA[ <p>I am a final year student. My supervisor had asked me for creating one chat program using java. i don't have any idea on how to started it. he asked me for doing a standalone system. please help me solve this problem?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>nurib</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454858/program-java</guid>
		</item>
				<item>
			<title>Backbone post - php does not see $_POST array</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454857/backbone-post-php-does-not-see-_post-array</link>
			<pubDate>Sat, 18 May 2013 07:38:48 +0000</pubDate>
			<description>Hello, there is a function which saves and sends post request: save_car: function(e) { if (e.keyCode != 13) return; if (!this.brand.val()) return; Cars.create({brand: this.brand.val(), color: this.color.val(), max_speed: this.max_speed.val() }); this.brand.val(''); this.color.val(''); this.max_speed.val(''); }, Request URL:http://localhost/backbone/car_list/backend/index.php/welcome/index Request Method:POST Status Code:200 OK Request Headersview source Accept:application/json, text/javascript, */*; q=0.01 Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3 Accept-Encoding:gzip,deflate,sdch Accept-Language:en,lt;q=0.8,en-US;q=0.6,ru;q=0.4,pl;q=0.2 ...</description>
			<content:encoded><![CDATA[ <p>Hello,</p>

<p>there is a function which saves and sends post request:</p>

<pre><code class="language-js">save_car: function(e) {

      if (e.keyCode != 13) return;
      if (!this.brand.val()) return;

      Cars.create({brand: this.brand.val(), color: this.color.val(), max_speed: this.max_speed.val() });

      this.brand.val('');
      this.color.val('');
      this.max_speed.val('');
    },





Request URL:<a href="http://localhost/backbone/car_list/backend/index.php/welcome/index" rel="nofollow">http://localhost/backbone/car_list/backend/index.php/welcome/index</a>
Request Method:POST
Status Code:200 OK
Request Headersview source
Accept:application/json, text/javascript, */*; q=0.01
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en,lt;q=0.8,en-US;q=0.6,ru;q=0.4,pl;q=0.2
Connection:keep-alive
Content-Length:70
Content-Type:application/json
Cookie:PHPSESSID=5dndo82fup9pi838f9uterrci6; ci_session=a%3A4%3A%7Bs%3A10%3A%22session_id%22%3Bs%3A32%3A%227a7e53ab078672515aec9b4b8a73cb83%22%3Bs%3A10%3A%22ip_address%22%3Bs%3A9%3A%22127.0.0.1%22%3Bs%3A10%3A%22user_agent%22%3Bs%3A50%3A%22Mozilla%2F5.0+%28Windows+NT+6.1%3B+WOW64%29+AppleWebKit%2F53%22%3Bs%3A13%3A%22last_activity%22%3Bi%3A1368858542%3B%7D48f6946a4ed6a07726f1d2790a67993c
Host:localhost
Origin:<a href="http://localhost" rel="nofollow">http://localhost</a>
Referer:<a href="http://localhost/backbone/car_list/" rel="nofollow">http://localhost/backbone/car_list/</a>
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31
X-Requested-With:XMLHttpRequest
Request Payloadview source
{brand:sad, color:sf, max_speed:sd, order:1, remove:false}
brand: "sad"
color: "sf"
max_speed: "sd"
order: 1
remove: false
</code></pre>

<p>So as we see from headers there is post request with various parameters.</p>

<p>Now the php function:</p>

<pre><code class="language-js">public function index()
    {

        $this-&gt;load-&gt;model('Backbone_model');

        //$res = $this-&gt;Backbone_model-&gt;get_all();

        if (isset($_GET)) {
            echo json_encode($this-&gt;Backbone_model-&gt;get_all());
        }
        else if (isset($_POST)) {

            echo 'ts';

            //SELECT name as brand, address as color, tel as max_speed FROM contacts

            $sql = "INSERT INTO contacts (name, address, tel) VALUES (?, ?, ?)";
            $this-&gt;db-&gt;query($sql, array($_POST['brand'], $_POST['color'], $_POST['max_speed'] ));

            echo $this-&gt;db-&gt;last_query();

        }

        echo 'asss';

        print_r($_REQUEST);

    }
</code></pre>

<p>it returns;</p>

<p>[{"brand":"Darius","color":"maciuleviciaus 30","max_speed":"866612345"},{"brand":"arvydas","color":"zidiku","max_speed":"866"}]asssArray()</p>

<p>so it looks like it see $_GET request. WHy this could be? It returns json and later string 'asss'</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>SPeed_FANat1c</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454857/backbone-post-php-does-not-see-_post-array</guid>
		</item>
				<item>
			<title>Components of Rails</title>
			<link>http://www.daniweb.com/web-development/ruby/threads/454856/components-of-rails</link>
			<pubDate>Sat, 18 May 2013 07:01:38 +0000</pubDate>
			<description>What are the various Components of Rails?</description>
			<content:encoded><![CDATA[ <p>What are the various Components of Rails?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/ruby/73">Ruby</category>
			<dc:creator>chrispitt</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/ruby/threads/454856/components-of-rails</guid>
		</item>
				<item>
			<title>Integer Type</title>
			<link>http://www.daniweb.com/software-development/c/threads/454855/integer-type</link>
			<pubDate>Sat, 18 May 2013 06:57:04 +0000</pubDate>
			<description>How should i decide which integer type to use?</description>
			<content:encoded><![CDATA[ <p>How should i decide which integer type to use?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/c/118">C</category>
			<dc:creator>chrispitt</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/c/threads/454855/integer-type</guid>
		</item>
				<item>
			<title>javascript for popup on selected item in dropdown</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454854/javascript-for-popup-on-selected-item-in-dropdown</link>
			<pubDate>Sat, 18 May 2013 06:22:40 +0000</pubDate>
			<description>I want to show popup on item selected in dropdown control. I tried popup script on this but doesn't works. my code is as below &lt;select&gt; &lt;option value=&quot;1990&quot;&gt;1990&lt;/option&gt; &lt;option value=&quot;1991&quot;&gt;1991&lt;/option&gt; &lt;option value=&quot;1992&quot;&gt;1992&lt;/option&gt; &lt;option value=&quot;1993&quot;&gt;1993&lt;/option&gt; &lt;option value=&quot;1994&quot;&gt;1994&lt;/option&gt; &lt;/select&gt; now if I have select option i.e 1992 popup window should display the ...</description>
			<content:encoded><![CDATA[ <p>I want to show popup on item selected in dropdown control. I tried popup script on this but doesn't works.<br />
my code is as below</p>

<pre><code class="language-js">&lt;select&gt;
    &lt;option value="1990"&gt;1990&lt;/option&gt;
    &lt;option value="1991"&gt;1991&lt;/option&gt;
    &lt;option value="1992"&gt;1992&lt;/option&gt;
    &lt;option value="1993"&gt;1993&lt;/option&gt;
    &lt;option value="1994"&gt;1994&lt;/option&gt;                
&lt;/select&gt;
</code></pre>

<p>now if I have select option i.e 1992 popup window should display the result 1992<br />
please help me...<br />
Thank you in adv.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>shilu2</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454854/javascript-for-popup-on-selected-item-in-dropdown</guid>
		</item>
				<item>
			<title>cpu fan speed</title>
			<link>http://www.daniweb.com/hardware-and-software/pc-hardware/threads/454852/cpu-fan-speed</link>
			<pubDate>Sat, 18 May 2013 05:55:09 +0000</pubDate>
			<description>hi is there any software that can controll the fan speed of the cpu, I already try &quot;fan speed&quot; but it is not compatible with my laptop. I also try in bios, but my bios doesnt have an option to edit the cpu speed. I am using acer aspire 4750z, ...</description>
			<content:encoded><![CDATA[ <p>hi<br />
is there any software that can controll the fan speed of the cpu, I already try "fan speed" but it is not compatible with my laptop. I also try in bios, but my bios doesnt have an option to edit the cpu speed.</p>

<p>I am using acer aspire 4750z, with win 7 ultimate.</p>

<p>I will appreciate for any suggestions, thank you.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/pc-hardware/7">PC Hardware</category>
			<dc:creator>ZER09</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/pc-hardware/threads/454852/cpu-fan-speed</guid>
		</item>
				<item>
			<title>php and jquery chat</title>
			<link>http://www.daniweb.com/web-development/php/threads/454851/php-and-jquery-chat</link>
			<pubDate>Sat, 18 May 2013 05:10:33 +0000</pubDate>
			<description>I am trying to make a jquery/php chat and i append data to the chat box, but then when the jquery loop trys to get the .last() data it gets the one before the appended data causing it to append the same data over and over again. hHow would i ...</description>
			<content:encoded><![CDATA[ <p>I am trying to make a jquery/php chat and i append data to the chat box, but then when the jquery loop trys to get the .last() data it gets the one before the appended data causing it to append the same data over and over again. hHow would i get the .last() div added even if its appended?</p>

<pre><code>&lt;script type="text/javascript" charset="utf-8"&gt;
    function addmsg(type, msg){
        /* Simple helper to add a div.
        type is the name of a CSS class (old/new/error).
        msg is the contents of the div */
        $("#messages").append(
            "&lt;div class='msg "+ type +"'&gt;"+ msg +"&lt;/div&gt;"
        );
    }

    function waitForMsg(){
        /* This requests the url "msgsrv.php"
        When it complete (or errors)*/
        var className = $('.messages:last-child').attr('class');
        $.ajax({
            type: "GET",
            url: "msgsrv.php?ID=11&amp;MID=409&amp;SELECT=" + className,

            async: true, /* If set to non-async, browser shows page as "Loading.."*/
            cache: false,
            timeout:50000, /* Timeout in ms */

            success: function(data){ /* called when request to barge.php completes */
                addmsg("new", data); /* Add response to a .msg div (with the "new" class)*/
                setTimeout(
                    waitForMsg, /* Request next message */
                    1000 /* ..after 1 seconds */
                );
            },
            error: function(XMLHttpRequest, textStatus, errorThrown){
                addmsg("error", textStatus + " (" + errorThrown + ")");
                setTimeout(
                    waitForMsg, /* Try again after.. */
                    15000); /* milliseconds (15seconds) */
            }
        });
    };

    $(document).ready(function(){
        waitForMsg(); /* Start the inital request */
    });
    &lt;/script&gt;

    &lt;div id="chat" style="overflow:auto;"&gt;
        &lt;div id="messages" class="0" style="display:inline;"&gt;
        &lt;/div&gt;
        &lt;div id="messages" class="0" style="display:inline;"&gt;
        &lt;/div&gt;
    &lt;/div&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>zacharysr</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454851/php-and-jquery-chat</guid>
		</item>
				<item>
			<title>Help new programmer</title>
			<link>http://www.daniweb.com/software-development/python/threads/454850/help-new-programmer</link>
			<pubDate>Sat, 18 May 2013 04:55:47 +0000</pubDate>
			<description>So, I'm a new programmer python is my first language. I'm trying to create a program to randomly open a pdf from a directory and read/display one page. Anyway thats what I got so far. I'm just wondering if theres a more efficient way to write this. Any advice? import ...</description>
			<content:encoded><![CDATA[ <p>So, I'm a new programmer python is my first language. I'm trying to create a program to randomly open a pdf from a directory and read/display one page. Anyway thats what I got so far. I'm just wondering if theres a more efficient way to write this. Any advice?</p>

<pre><code class="language-py">import os, random, Pdf
from Pdf import PdfFileReader, PageObject 

b = random.choice(os.listdir("/home/illman/reading/books/PDF")) 

Pdf_toRead = PdfFileReader(open(b, 'r'))
page_one = pdf_toRead.getPage(random.randrange(0, 10000))
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/python/114">Python</category>
			<dc:creator>wolf_one</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/python/threads/454850/help-new-programmer</guid>
		</item>
				<item>
			<title>Vundo and maybe other issues</title>
			<link>http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/454849/vundo-and-maybe-other-issues</link>
			<pubDate>Sat, 18 May 2013 03:13:06 +0000</pubDate>
			<description>I need to remove Vundo and potentially other issues from my son's computer. BTW **Do not allow your kids to play Pickle **as that seems to be where he got it. *sigh* I've followed all of the instructions from the &quot;Read me before posting&quot; instructions. Your help is much appreciated! ...</description>
			<content:encoded><![CDATA[ <p>I need to remove Vundo and potentially other issues from my son's computer. BTW **Do not allow your kids to play Pickle **as that seems to be where he got it. <em>sigh</em></p>

<p>I've followed all of the instructions from the "Read me before posting" instructions. Your help is much appreciated!</p>

<pre><code>'=========== malwarebytes log =========

Malwarebytes Anti-Malware (Trial) 1.75.0.1300
www.malwarebytes.org

Database version: v2013.05.17.07

Windows 7 Service Pack 1 x64 NTFS
Internet Explorer 10.0.9200.16576
Vincent :: VINCENT-PC [administrator]

Protection: Enabled

5/17/2013 8:47:49 PM
mbam-log-2013-05-17 (20-47-49).txt

Scan type: Full scan (C:\|)
Scan options enabled: Memory | Startup | Registry | File System | Heuristics/Extra | Heuristics/Shuriken | PUP | PUM
Scan options disabled: P2P
Objects scanned: 375978
Time elapsed: 34 minute(s), 4 second(s)

Memory Processes Detected: 0
(No malicious items detected)

Memory Modules Detected: 0
(No malicious items detected)

Registry Keys Detected: 2
HKCU\SOFTWARE\Microsoft\Internet Explorer\SearchScopes\{56256A51-B582-467e-B8D4-7786EDA79AE0} (Trojan.Vundo) -&gt; Quarantined and deleted successfully.
HKLM\SOFTWARE\Microsoft\Internet Explorer\SearchScopes\{56256A51-B582-467e-B8D4-7786EDA79AE0} (Trojan.Vundo) -&gt; Quarantined and deleted successfully.

Registry Values Detected: 0
(No malicious items detected)

Registry Data Items Detected: 0
(No malicious items detected)

Folders Detected: 0
(No malicious items detected)

Files Detected: 0
(No malicious items detected)

(end)

============ GMER One.log ===========
GMER 2.1.19163 - <a href="http://www.gmer.net" rel="nofollow">http://www.gmer.net</a>
Rootkit scan 2013-05-17 20:20:14
Windows 6.1.7601 Service Pack 1 x64 \Device\Harddisk0\DR0 -&gt; \Device\Ide\IdeDeviceP0T0L0-0 WDC_WD1001FAES-75W7A0 rev.05.01D05 931.51GB
Running: fq2lk3vl.exe; Driver: C:\Users\Vincent\AppData\Local\Temp\uxriifog.sys


---- Threads - GMER 2.1 ----

Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3476]                                          0000000071b01dd4
Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3540]                                          0000000071b01dd4
Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3568]                                          000007fefb79d880
Thread   C:\Windows\System32\svchost.exe [3700:4476]                                                             000007fef0509688
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:4152]                                          000007fefe5d0168
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:808]                                           000007fefbc72a7c
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:4424]                                          000007feeab1d618
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:2104]                                          000007fefad35124
---- Processes - GMER 2.1 ----

Library  C:\Program Files\SUPERAntiSpyware\SASCTXMN64.DLL (*** suspicious ***) @ C:\Windows\Explorer.EXE [1896]  0000000002ee0000

---- EOF - GMER 2.1 ----


======== GMER Two.log ========

GMER 2.1.19163 - <a href="http://www.gmer.net" rel="nofollow">http://www.gmer.net</a>
Rootkit scan 2013-05-17 20:39:58
Windows 6.1.7601 Service Pack 1 x64 \Device\Harddisk0\DR0 -&gt; \Device\Ide\IdeDeviceP0T0L0-0 WDC_WD1001FAES-75W7A0 rev.05.01D05 931.51GB
Running: fq2lk3vl.exe; Driver: C:\Users\Vincent\AppData\Local\Temp\uxriifog.sys


---- Threads - GMER 2.1 ----

Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3476]                                                                                                                                    0000000071b01dd4
Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3540]                                                                                                                                    0000000071b01dd4
Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3568]                                                                                                                                    000007fefb79d880
Thread   C:\Windows\System32\svchost.exe [3700:4476]                                                                                                                                                       000007fef0509688
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:4152]                                                                                                                                    000007fefe5d0168
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:808]                                                                                                                                     000007fefbc72a7c
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:4424]                                                                                                                                    000007feeab1d618
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:2104]                                                                                                                                    000007fefad35124
---- Processes - GMER 2.1 ----

Library  C:\Program Files\SUPERAntiSpyware\SASCTXMN64.DLL (*** suspicious ***) @ C:\Windows\Explorer.EXE [1896]                                                                                            0000000002ee0000

---- Registry - GMER 2.1 ----

Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@Type                                                                                                                                              2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@Start                                                                                                                                             2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@ErrorControl                                                                                                                                      1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@DisplayName                                                                                                                                       aswFsBlk
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@Group                                                                                                                                             FSFilter Activity Monitor
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@DependOnService                                                                                                                                   FltMgr?
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@Description                                                                                                                                       avast! mini-filter driver (aswFsBlk)
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@Tag                                                                                                                                               3
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk\Instances                                                                                                                                         
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk\Instances@DefaultInstance                                                                                                                         aswFsBlk Instance
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk\Instances\aswFsBlk Instance                                                                                                                       
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk\Instances\aswFsBlk Instance@Altitude                                                                                                              388400
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk\Instances\aswFsBlk Instance@Flags                                                                                                                 0
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk                                                                                                                                                   
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@Type                                                                                                                                             2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@Start                                                                                                                                            2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@ErrorControl                                                                                                                                     1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@ImagePath                                                                                                                                        \??\C:\Windows\system32\drivers\aswMonFlt.sys
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@DisplayName                                                                                                                                      aswMonFlt
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@Group                                                                                                                                            FSFilter Anti-Virus
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@DependOnService                                                                                                                                  FltMgr?
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@Description                                                                                                                                      avast! mini-filter driver (aswMonFlt)
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt\Instances                                                                                                                                        
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt\Instances@DefaultInstance                                                                                                                        aswMonFlt Instance
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt\Instances\aswMonFlt Instance                                                                                                                     
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt\Instances\aswMonFlt Instance@Altitude                                                                                                            320700
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt\Instances\aswMonFlt Instance@Flags                                                                                                               0
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt                                                                                                                                                  
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@Type                                                                                                                                                1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@Start                                                                                                                                               1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@ErrorControl                                                                                                                                        1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@DisplayName                                                                                                                                         aswRdr
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@Group                                                                                                                                               PNP_TDI
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@DependOnService                                                                                                                                     tcpip?
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@Description                                                                                                                                         avast! WFP Redirect driver
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@ImagePath                                                                                                                                           \SystemRoot\System32\Drivers\aswrdr2.sys
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr\Parameters                                                                                                                                          
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr\Parameters@MSIgnoreLSPDefault                                                                                                                       
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr\Parameters@WSIgnoreLSPDefault                                                                                                                       nl_lsp.dll,imon.dll,xfire_lsp.dll,mslsp.dll,mssplsp.dll,cwhook.dll,spi.dll,bmnet.dll,winsflt.dll
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr                                                                                                                                                     
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt@Type                                                                                                                                               1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt@Start                                                                                                                                              0
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt@ErrorControl                                                                                                                                       1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt@DisplayName                                                                                                                                        aswRvrt
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt@Description                                                                                                                                        avast! Revert
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt\Parameters                                                                                                                                         
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt\Parameters@BootCounter                                                                                                                             14
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt\Parameters@TickCounter                                                                                                                             3373043
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt\Parameters@SystemRoot                                                                                                                              \Device\Harddisk0\Partition3\Windows
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt\Parameters@ImproperShutdown                                                                                                                        1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt                                                                                                                                                    
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@Type                                                                                                                                                2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@Start                                                                                                                                               1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@ErrorControl                                                                                                                                        1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@DisplayName                                                                                                                                         aswSnx
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@Group                                                                                                                                               FSFilter Virtualization
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@DependOnService                                                                                                                                     FltMgr?
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@Description                                                                                                                                         avast! virtualization driver (aswSnx)
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@Tag                                                                                                                                                 2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Instances                                                                                                                                           
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Instances@DefaultInstance                                                                                                                           aswSnx Instance
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Instances\aswSnx Instance                                                                                                                           
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Instances\aswSnx Instance@Altitude                                                                                                                  137600
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Instances\aswSnx Instance@Flags                                                                                                                     0
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Parameters                                                                                                                                          
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Parameters@ProgramFolder                                                                                                                            \DosDevices\C:\Program Files\AVAST Software\Avast
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Parameters@DataFolder                                                                                                                               \DosDevices\C:\ProgramData\AVAST Software\Avast
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx                                                                                                                                                     
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP@Type                                                                                                                                                 1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP@Start                                                                                                                                                1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP@ErrorControl                                                                                                                                         1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP@DisplayName                                                                                                                                          aswSP
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP@Description                                                                                                                                          avast! Self Protection
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters                                                                                                                                           
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters@BehavShield                                                                                                                               1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters@ProgramFolder                                                                                                                             \DosDevices\C:\Program Files\AVAST Software\Avast
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters@DataFolder                                                                                                                                \DosDevices\C:\ProgramData\AVAST Software\Avast
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters@ProgramFilesFolder                                                                                                                        \DosDevices\C:\Program Files
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters@GadgetFolder                                                                                                                              \DosDevices\C:\Program Files\Windows Sidebar\Shared Gadgets\aswSidebar.gadget
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP                                                                                                                                                      
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@Type                                                                                                                                                1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@Start                                                                                                                                               1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@ErrorControl                                                                                                                                        1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@DisplayName                                                                                                                                         avast! Network Shield Support
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@Group                                                                                                                                               PNP_TDI
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@DependOnService                                                                                                                                     tcpip?
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@Description                                                                                                                                         avast! Network Shield TDI driver
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@Tag                                                                                                                                                 12
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi                                                                                                                                                     
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm@Type                                                                                                                                                1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm@Start                                                                                                                                               3
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm@ErrorControl                                                                                                                                        1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm@DisplayName                                                                                                                                         aswVmm
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm@Description                                                                                                                                         avast! VM Monitor
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm\Parameters                                                                                                                                          
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm                                                                                                                                                     
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@Type                                                                                                                                      32
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@Start                                                                                                                                     2
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@ErrorControl                                                                                                                              1
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@ImagePath                                                                                                                                 "C:\Program Files\AVAST Software\Avast\AvastSvc.exe"
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@DisplayName                                                                                                                               avast! Antivirus
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@Group                                                                                                                                     ShellSvcGroup
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@DependOnService                                                                                                                           aswMonFlt?RpcSS?
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@WOW64                                                                                                                                     1
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@ObjectName                                                                                                                                LocalSystem
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@ServiceSidType                                                                                                                            1
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@Description                                                                                                                               Manages and implements avast! antivirus services for this computer. This includes the resident protection, the virus chest and the scheduler.
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus                                                                                                                                           
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@Type                                                                                                                                                  2
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@Start                                                                                                                                                 2
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@ErrorControl                                                                                                                                          1
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@DisplayName                                                                                                                                           aswFsBlk
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@Group                                                                                                                                                 FSFilter Activity Monitor
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@DependOnService                                                                                                                                       FltMgr?
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@Description                                                                                                                                           avast! mini-filter driver (aswFsBlk)
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@Tag                                                                                                                                                   3
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk\Instances (not active ControlSet)                                                                                                                     
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk\Instances@DefaultInstance                                                                                                                             aswFsBlk Instance
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk\Instances\aswFsBlk Instance (not active ControlSet)                                                                                                   
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk\Instances\aswFsBlk Instance@Altitude                                                                                                                  388400
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk\Instances\aswFsBlk Instance@Flags                                                                                                                     0
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@Type                                                                                                                                                 2
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@Start                                                                                                                                                2
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@ErrorControl                                                                                                                                         1
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@ImagePath                                                                                                                                            \??\C:\Windows\system32\drivers\aswMonFlt.sys
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@DisplayName                                                                                                                                          aswMonFlt
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@Group                                                                                                                                                FSFilter Anti-Virus
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@DependOnService                                                                                                                                      FltMgr?
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@Description                                                                                                                                          avast! mini-filter driver (aswMonFlt)
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt\Instances (not active ControlSet)                                                                                                                    
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt\Instances@DefaultInstance                                                                                                                            aswMonFlt Instance
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt\Instances\aswMonFlt Instance (not active ControlSet)                                                                                                 
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt\Instances\aswMonFlt Instance@Altitude                                                                                                                320700
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt\Instances\aswMonFlt Instance@Flags                                                                                                                   0
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@Type                                                                                                                                                    1
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@Start                                                                                                                                                   1
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@ErrorControl                                                                                                                                            1
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@DisplayName                                                                                                                                             aswRdr
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@Group                                                                                                                                                   PNP_TDI
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@DependOnService                                                                                                                                         tcpip?
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@Description                                                                                                                                             avast! WFP Redirect driver
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@ImagePath                                                                                                                                               \SystemRoot\System32\Drivers\aswrdr2.sys
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr\Parameters (not active ControlSet)                                                                                                                      
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr\Parameters@MSIgnoreLSPDefault                                                                                                                           
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr\Parameters@WSIgnoreLSPDefault                                                                                                                           nl_lsp.dll,imon.dll,xfire_lsp.dll,mslsp.dll,mssplsp.dll,cwhook.dll,spi.dll,bmnet.dll,winsflt.dll
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt@Type                                                                                                                                                   1
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt@Start                                                                                                                                                  0
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt@ErrorControl                                                                                                                                           1
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt@DisplayName                                                                                                                                            aswRvrt
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt@Description                                                                                                                                            avast! Revert
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt\Parameters (not active ControlSet)                                                                                                                     
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt\Parameters@BootCounter                                                                                                                                 14
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt\Parameters@TickCounter                                                                                                                                 3373043
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt\Parameters@SystemRoot                                                                                                                                  \Device\Harddisk0\Partition3\Windows
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt\Parameters@ImproperShutdown                                                                                                                            1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@Type                                                                                                                                                    2
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@Start                                                                                                                                                   1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@ErrorControl                                                                                                                                            1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@DisplayName                                                                                                                                             aswSnx
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@Group                                                                                                                                                   FSFilter Virtualization
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@DependOnService                                                                                                                                         FltMgr?
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@Description                                                                                                                                             avast! virtualization driver (aswSnx)
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@Tag                                                                                                                                                     2
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Instances (not active ControlSet)                                                                                                                       
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Instances@DefaultInstance                                                                                                                               aswSnx Instance
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Instances\aswSnx Instance (not active ControlSet)                                                                                                       
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Instances\aswSnx Instance@Altitude                                                                                                                      137600
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Instances\aswSnx Instance@Flags                                                                                                                         0
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Parameters (not active ControlSet)                                                                                                                      
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Parameters@ProgramFolder                                                                                                                                \DosDevices\C:\Program Files\AVAST Software\Avast
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Parameters@DataFolder                                                                                                                                   \DosDevices\C:\ProgramData\AVAST Software\Avast
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP@Type                                                                                                                                                     1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP@Start                                                                                                                                                    1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP@ErrorControl                                                                                                                                             1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP@DisplayName                                                                                                                                              aswSP
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP@Description                                                                                                                                              avast! Self Protection
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters (not active ControlSet)                                                                                                                       
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters@BehavShield                                                                                                                                   1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters@ProgramFolder                                                                                                                                 \DosDevices\C:\Program Files\AVAST Software\Avast
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters@DataFolder                                                                                                                                    \DosDevices\C:\ProgramData\AVAST Software\Avast
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters@ProgramFilesFolder                                                                                                                            \DosDevices\C:\Program Files
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters@GadgetFolder                                                                                                                                  \DosDevices\C:\Program Files\Windows Sidebar\Shared Gadgets\aswSidebar.gadget
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@Type                                                                                                                                                    1
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@Start                                                                                                                                                   1
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@ErrorControl                                                                                                                                            1
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@DisplayName                                                                                                                                             avast! Network Shield Support
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@Group                                                                                                                                                   PNP_TDI
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@DependOnService                                                                                                                                         tcpip?
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@Description                                                                                                                                             avast! Network Shield TDI driver
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@Tag                                                                                                                                                     12
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm@Type                                                                                                                                                    1
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm@Start                                                                                                                                                   3
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm@ErrorControl                                                                                                                                            1
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm@DisplayName                                                                                                                                             aswVmm
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm@Description                                                                                                                                             avast! VM Monitor
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm\Parameters (not active ControlSet)                                                                                                                      
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@Type                                                                                                                                          32
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@Start                                                                                                                                         2
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@ErrorControl                                                                                                                                  1
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@ImagePath                                                                                                                                     "C:\Program Files\AVAST Software\Avast\AvastSvc.exe"
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@DisplayName                                                                                                                                   avast! Antivirus
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@Group                                                                                                                                         ShellSvcGroup
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@DependOnService                                                                                                                               aswMonFlt?RpcSS?
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@WOW64                                                                                                                                         1
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@ObjectName                                                                                                                                    LocalSystem
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@ServiceSidType                                                                                                                                1
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@Description                                                                                                                                   Manages and implements avast! antivirus services for this computer. This includes the resident protection, the virus chest and the scheduler.
Reg      HKCU\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Compatibility Assistant\Persisted@C:\Users\Vincent\AppData\Local\Logitech\xae Webcam Software\Logishrd\LU2.0\LogitechUpdate.exe  1

---- EOF - GMER 2.1 ----


=========== dds.txt ===========

DDS (Ver_2012-11-20.01) - NTFS_AMD64 
Internet Explorer: 10.0.9200.16576
Run by Vincent at 21:44:22 on 2013-05-17
Microsoft Windows 7 Home Premium   6.1.7601.1.1252.1.1033.18.5943.4078 [GMT -5:00]
.
AV: avast! Antivirus *Disabled/Updated* {2B2D1395-420B-D5C9-657E-930FE358FC3C}
SP: avast! Antivirus *Disabled/Updated* {904CF271-6431-DA47-5FCE-A87D98DFB681}
SP: Windows Defender *Enabled/Updated* {D68DDC3A-831F-4fae-9E44-DA132C1ACF46}
.
============== Running Processes ===============
.
C:\Windows\system32\lsm.exe
C:\Windows\system32\svchost.exe -k DcomLaunch
C:\Windows\system32\svchost.exe -k RPCSS
C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted
C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted
C:\Windows\system32\svchost.exe -k LocalService
C:\Windows\system32\svchost.exe -k netsvcs
C:\Program Files\Dell\DellDock\DockLogin.exe
C:\Windows\system32\svchost.exe -k NetworkService
C:\Program Files\AVAST Software\Avast\AvastSvc.exe
C:\Windows\System32\spoolsv.exe
C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork
C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\armsvc.exe
C:\Windows\system32\taskhost.exe
C:\Windows\system32\Dwm.exe
C:\Windows\Explorer.EXE
C:\Program Files (x86)\Common Files\Apple\Mobile Device Support\AppleMobileDeviceService.exe
C:\Program Files\Bonjour\mDNSResponder.exe
C:\Program Files (x86)\Common Files\Portrait Displays\Shared\DTSRVC.exe
C:\Windows\system32\svchost.exe -k LocalServiceAndNoImpersonation
C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbamscheduler.exe
C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbamservice.exe
C:\Program Files (x86)\Common Files\Portrait Displays\Drivers\pdisrvc.exe
C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbamgui.exe
C:\Program Files (x86)\Secunia\PSI\PSIA.exe
C:\Windows\system32\svchost.exe -k imgsvc
C:\Program Files\Common Files\Microsoft Shared\Windows Live\WLIDSVC.EXE
C:\Program Files\Common Files\Microsoft Shared\Windows Live\WLIDSvcM.exe
C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted
C:\Windows\System32\WUDFHost.exe
C:\Program Files (x86)\Secunia\PSI\sua.exe
C:\Program Files\Realtek\Audio\HDA\RAVCpl64.exe
C:\Windows\System32\hkcmd.exe
C:\Windows\System32\igfxpers.exe
C:\Program Files\Microsoft Device Center\itype.exe
C:\Program Files\Microsoft Device Center\ipoint.exe
C:\Program Files (x86)\Secunia\PSI\psi_tray.exe
C:\Program Files\Dell\DellDock\DellDock.exe
C:\Program Files (x86)\Multimedia Card Reader(9106)\ShwiconXP9106.exe
C:\Program Files (x86)\CyberLink\PowerDVD DX\PDVDDXSrv.exe
C:\Program Files (x86)\Roxio\Roxio Burn\RoxioBurnLauncher.exe
C:\Program Files\AVAST Software\Avast\AvastUI.exe
C:\Program Files (x86)\Logitech\LWS\Webcam Software\LWS.exe
C:\Program Files (x86)\Acer Display\eDisplay Management\DTHtml.exe
C:\Program Files (x86)\iTunes\iTunesHelper.exe
C:\Program Files (x86)\AirPort\APAgent.exe
C:\Program Files (x86)\Logitech\LWS\Webcam Software\CameraHelperShell.exe
C:\Program Files (x86)\Common Files\Portrait Displays\Shared\HookManager.exe
C:\Windows\system32\SearchIndexer.exe
C:\Program Files\iPod\bin\iPodService.exe
C:\Program Files (x86)\Common Files\Portrait Displays\Drivers\pdiSdkHelperx64.exe
C:\Program Files (x86)\Portrait Displays\Pivot Pro Plugin\wpctrl.exe
C:\Program Files (x86)\Portrait Displays\Pivot Pro Plugin\floater.exe
C:\Program Files (x86)\Common Files\Logishrd\LQCVFX\COCIManager.exe
C:\Windows\system32\igfxsrvc.exe
C:\Windows\system32\igfxext.exe
C:\Windows\System32\svchost.exe -k secsvcs
C:\Program Files\Windows Media Player\wmpnetwk.exe
C:\Windows\system32\wbem\wmiprvse.exe
C:\Users\Vincent\AppData\Local\Google\Chrome\Application\chrome.exe
C:\Users\Vincent\AppData\Local\Google\Chrome\Application\chrome.exe
C:\Users\Vincent\AppData\Local\Google\Chrome\Application\chrome.exe
C:\Users\Vincent\AppData\Local\Google\Chrome\Application\chrome.exe
C:\Windows\system32\wuauclt.exe
C:\Windows\SysWOW64\ctfmon.exe
C:\Windows\system32\SearchProtocolHost.exe
C:\Windows\system32\SearchFilterHost.exe
C:\Windows\system32\wbem\wmiprvse.exe
C:\Windows\System32\cscript.exe
.
============== Pseudo HJT Report ===============
.
uURLSearchHooks: {2e9331d0-b42b-42b7-9824-a6545d0ceaa6} - &lt;orphaned&gt;
mWinlogon: Userinit = userinit.exe,
BHO: {761497BB-D6F0-462C-B6EB-D4DAF1D92D43} - &lt;orphaned&gt;
BHO: avast! WebRep: {8E5E2654-AD2D-48bf-AC2D-D17F00898D06} - C:\Program Files\AVAST Software\Avast\aswWebRepIE.dll
BHO: Windows Live ID Sign-in Helper: {9030D464-4C02-4ABF-8ECC-5164760863C6} - C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll
BHO: Java(tm) Plug-In 2 SSV Helper: {DBC80044-A445-435b-BC74-9C25C1C588A9} - 
TB: avast! WebRep: {8E5E2654-AD2D-48bf-AC2D-D17F00898D06} - C:\Program Files\AVAST Software\Avast\aswWebRepIE.dll
uRun: [Google Update] "C:\Users\Vincent\AppData\Local\Google\Update\GoogleUpdate.exe" /c
mRun: [ShwiconXP9106] C:\Program Files (x86)\Multimedia Card Reader(9106)\ShwiconXP9106.exe
mRun: [PDVDDXSrv] "C:\Program Files (x86)\CyberLink\PowerDVD DX\PDVDDXSrv.exe"
mRun: [Desktop Disc Tool] "c:\Program Files (x86)\Roxio\Roxio Burn\RoxioBurnLauncher.exe"
mRun: [PivotSoftware] "C:\Program Files (x86)\Portrait Displays\Pivot Pro Plugin\Pivot_startup.exe" -delay=10
mRun: [DT ACR] C:\Program Files (x86)\Common Files\Portrait Displays\Shared\DT_startup.exe -ACR
mRun: [avast] "C:\Program Files\AVAST Software\Avast\avastUI.exe" /nogui
mRun: [APSDaemon] "C:\Program Files (x86)\Common Files\Apple\Apple Application Support\APSDaemon.exe"
mRun: [LWS] C:\Program Files (x86)\Logitech\LWS\Webcam Software\LWS.exe -hide
mRun: [QuickTime Task] "C:\Program Files (x86)\QuickTime\QTTask.exe" -atboottime
mRun: [iTunesHelper] "C:\Program Files (x86)\iTunes\iTunesHelper.exe"
mRun: [AirPort Base Station Agent] "C:\Program Files (x86)\AirPort\APAgent.exe"
mRun: [Adobe ARM] "C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\AdobeARM.exe"
StartupFolder: C:\Users\Vincent\AppData\Roaming\MICROS~1\Windows\STARTM~1\Programs\Startup\DELLDO~1.LNK - C:\Program Files\Dell\DellDock\DellDock.exe
StartupFolder: C:\PROGRA~3\MICROS~1\Windows\STARTM~1\Programs\Startup\SECUNI~1.LNK - C:\Program Files (x86)\Secunia\PSI\psi_tray.exe
uPolicies-Explorer: NoDriveTypeAutoRun = dword:145
IE: {219C3416-8CB2-491a-A3C7-D9FCDDC9D600} - {5F7B1267-94A9-47F5-98DB-E99415F33AEC} - C:\Program Files (x86)\Windows Live\Writer\WriterBrowserExtension.dll
TCP: NameServer = 209.18.47.61 209.18.47.62
TCP: Interfaces\{7B6E9E3E-35B2-4192-9038-6C2AABAE4735} : DHCPNameServer = 209.18.47.61 209.18.47.62
Handler: skype4com - {FFC8B962-9B40-4DFF-9458-1830C7DD7F5D} - C:\Program Files (x86)\Common Files\Skype\Skype4COM.dll
Handler: wlpg - {E43EF6CD-A37A-4A9B-9E6F-83F89B8E6324} - C:\Program Files (x86)\Windows Live\Photo Gallery\AlbumDownloadProtocolHandler.dll
SSODL: WebCheck - &lt;orphaned&gt;
x64-BHO: avast! WebRep: {318A227B-5E9F-45bd-8999-7F8F10CA4CF5} - C:\Program Files\AVAST Software\Avast\aswWebRepIE64.dll
x64-BHO: Java(tm) Plug-In SSV Helper: {761497BB-D6F0-462C-B6EB-D4DAF1D92D43} - C:\Program Files\Java\jre6\bin\ssv.dll
x64-BHO: Windows Live ID Sign-in Helper: {9030D464-4C02-4ABF-8ECC-5164760863C6} - C:\Program Files\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll
x64-BHO: Java(tm) Plug-In 2 SSV Helper: {DBC80044-A445-435b-BC74-9C25C1C588A9} - C:\Program Files\Java\jre6\bin\jp2ssv.dll
x64-TB: avast! WebRep: {318A227B-5E9F-45bd-8999-7F8F10CA4CF5} - C:\Program Files\AVAST Software\Avast\aswWebRepIE64.dll
x64-Run: [RtHDVCpl] C:\Program Files\Realtek\Audio\HDA\RAVCpl64.exe -s
x64-Run: [IgfxTray] C:\Windows\System32\igfxtray.exe
x64-Run: [HotKeysCmds] C:\Windows\System32\hkcmd.exe
x64-Run: [Persistence] C:\Windows\System32\igfxpers.exe
x64-Run: [IntelliType Pro] "c:\Program Files\Microsoft Device Center\itype.exe"
x64-Run: [IntelliPoint] "c:\Program Files\Microsoft Device Center\ipoint.exe"
x64-DPF: {8AD9C840-044E-11D1-B3E9-00805F499D93} - hxxp://java.sun.com/update/1.6.0/jinstall-1_6_0_45-windows-i586.cab
x64-DPF: {CAFEEFAC-0016-0000-0045-ABCDEFFEDCBA} - hxxp://java.sun.com/update/1.6.0/jinstall-1_6_0_45-windows-i586.cab
x64-DPF: {CAFEEFAC-FFFF-FFFF-FFFF-ABCDEFFEDCBA} - hxxp://java.sun.com/update/1.6.0/jinstall-1_6_0_45-windows-i586.cab
x64-Handler: skype4com - {FFC8B962-9B40-4DFF-9458-1830C7DD7F5D} - &lt;orphaned&gt;
x64-Handler: wlpg - {E43EF6CD-A37A-4A9B-9E6F-83F89B8E6324} - &lt;orphaned&gt;
x64-Notify: igfxcui - igfxdev.dll
x64-SSODL: WebCheck - &lt;orphaned&gt;
.
============= SERVICES / DRIVERS ===============
.
R0 aswRvrt;aswRvrt;C:\Windows\System32\drivers\aswRvrt.sys [2013-4-1 65336]
R0 PxHlpa64;PxHlpa64;C:\Windows\System32\drivers\PxHlpa64.sys [2010-11-30 55280]
R1 aswSnx;aswSnx;C:\Windows\System32\drivers\aswSnx.sys [2011-10-12 1025808]
R1 aswSP;aswSP;C:\Windows\System32\drivers\aswSP.sys [2011-10-12 377920]
R2 aswFsBlk;aswFsBlk;C:\Windows\System32\drivers\aswFsBlk.sys [2011-10-12 33400]
R2 aswMonFlt;aswMonFlt;C:\Windows\System32\drivers\aswMonFlt.sys [2011-10-12 80816]
R2 avast! Antivirus;avast! Antivirus;C:\Program Files\AVAST Software\Avast\AvastSvc.exe [2013-4-1 45248]
R2 DockLoginService;Dock Login Service;C:\Program Files\Dell\DellDock\DockLogin.exe [2009-6-9 155648]
R2 MBAMScheduler;MBAMScheduler;C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbamscheduler.exe [2013-5-17 418376]
R2 MBAMService;MBAMService;C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbamservice.exe [2013-5-17 701512]
R2 PdiService;Portrait Displays SDK Service;C:\Program Files (x86)\Common Files\Portrait Displays\Drivers\pdisrvc.exe [2011-6-25 109168]
R2 Secunia PSI Agent;Secunia PSI Agent;C:\Program Files (x86)\Secunia\PSI\psia.exe [2011-1-10 993848]
R2 Secunia Update Agent;Secunia Update Agent;C:\Program Files (x86)\Secunia\PSI\sua.exe [2011-1-10 399416]
R3 HECIx64;Intel(R) Management Engine Interface;C:\Windows\System32\drivers\HECIx64.sys [2010-11-30 56344]
R3 IntcDAud;Intel(R) Display Audio;C:\Windows\System32\drivers\IntcDAud.sys [2010-11-30 271872]
R3 k57nd60a;Broadcom NetLink (TM) Gigabit Ethernet - NDIS 6.0;C:\Windows\System32\drivers\k57nd60a.sys [2010-11-30 321064]
R3 MBAMProtector;MBAMProtector;C:\Windows\System32\drivers\mbam.sys [2013-5-17 25928]
R3 PSI;PSI;C:\Windows\System32\drivers\psi_mf.sys [2010-9-1 17976]
S2 clr_optimization_v4.0.30319_32;Microsoft .NET Framework NGEN v4.0.30319_X86;C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorsvw.exe [2010-3-18 130384]
S2 clr_optimization_v4.0.30319_64;Microsoft .NET Framework NGEN v4.0.30319_X64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe [2010-3-18 138576]
S2 SkypeUpdate;Skype Updater;C:\Program Files (x86)\Skype\Updater\Updater.exe [2013-4-19 161384]
S3 aswVmm;aswVmm;C:\Windows\System32\drivers\aswVmm.sys [2013-4-1 178624]
S3 Impcd;Impcd;C:\Windows\System32\drivers\Impcd.sys [2010-11-30 158976]
S3 LVRS64;Logitech RightSound Filter Driver;C:\Windows\System32\drivers\lvrs64.sys [2012-1-18 351136]
S3 TsUsbFlt;TsUsbFlt;C:\Windows\System32\drivers\TsUsbFlt.sys [2011-7-1 59392]
S3 USBAAPL64;Apple Mobile USB Driver;C:\Windows\System32\drivers\usbaapl64.sys [2012-7-9 52736]
S3 WatAdminSvc;Windows Activation Technologies Service;C:\Windows\System32\Wat\WatAdminSvc.exe [2010-12-26 1255736]
.
=============== Created Last 30 ================
.
2013-05-18 01:41:36 --------    d-----w-    C:\Users\Vincent\AppData\Roaming\Malwarebytes
2013-05-18 01:41:27 --------    d-----w-    C:\ProgramData\Malwarebytes
2013-05-18 01:41:26 25928   ----a-w-    C:\Windows\System32\drivers\mbam.sys
2013-05-18 01:41:26 --------    d-----w-    C:\Program Files (x86)\Malwarebytes' Anti-Malware
2013-05-18 01:41:05 --------    d-----w-    C:\Users\Vincent\AppData\Local\Programs
2013-05-17 23:16:26 --------    d-----w-    C:\Program Files (x86)\Free Window Registry Repair
2013-05-17 23:15:02 388096  ----a-r-    C:\Users\Vincent\AppData\Roaming\Microsoft\Installer\{45A66726-69BC-466B-A7A4-12FCBA4883D7}\HiJackThis.exe
2013-05-17 23:15:01 --------    d-----w-    C:\Program Files (x86)\Trend Micro
2013-05-17 19:12:14 --------    d-----r-    C:\Program Files (x86)\Skype
2013-05-17 16:02:11 9460464 ----a-w-    C:\ProgramData\Microsoft\Windows Defender\Definition Updates\{F70E6934-0AF8-479E-A557-6A665C951823}\mpengine.dll
2013-05-15 08:00:59 1767424 ----a-w-    C:\Windows\SysWow64\wininet.dll
2013-05-15 08:00:57 2242048 ----a-w-    C:\Windows\System32\wininet.dll
2013-05-07 08:03:22 9728    ---ha-w-    C:\Windows\SysWow64\api-ms-win-downlevel-shlwapi-l1-1-0.dll
2013-05-04 21:31:56 737072  ----a-w-    C:\ProgramData\Microsoft\eHome\Packages\SportsV2\SportsTemplateCore\Microsoft.MediaCenter.Sports.UI.dll
2013-05-04 21:31:36 2876528 ----a-w-    C:\ProgramData\Microsoft\eHome\Packages\MCEClientUX\UpdateableMarkup\markup.dll
2013-05-04 21:31:08 42776   ----a-w-    C:\ProgramData\Microsoft\eHome\Packages\MCEClientUX\dSM\StartResources.dll
2013-05-04 21:30:59 539984  ----a-w-    C:\ProgramData\Microsoft\eHome\Packages\MCESpotlight\MCESpotlight\SpotlightResources.dll
2013-05-02 00:35:14 --------    d-----w-    C:\Users\Vincent\AppData\Roaming\.minecraft
2013-04-28 00:10:28 --------    d-----w-    C:\Program Files (x86)\AirPort
2013-04-23 22:06:10 1656680 ----a-w-    C:\Windows\System32\drivers\ntfs.sys
.
==================== Find3M  ====================
.
2013-05-15 05:05:10 71048   ----a-w-    C:\Windows\SysWow64\FlashPlayerCPLApp.cpl
2013-05-15 05:05:10 692104  ----a-w-    C:\Windows\SysWow64\FlashPlayerApp.exe
2013-05-07 08:03:22 9728    ---ha-w-    C:\Windows\System32\api-ms-win-downlevel-shlwapi-l1-1-0.dll
2013-05-05 22:36:15 545200  ----a-w-    C:\Windows\System32\npdeployJava1.dll
2013-05-05 22:36:15 526768  ----a-w-    C:\Windows\System32\deployJava1.dll
2013-05-02 07:06:08 278800  ------w-    C:\Windows\System32\MpSigStub.exe
2013-04-13 05:49:23 135168  ----a-w-    C:\Windows\apppatch\AppPatch64\AcXtrnal.dll
2013-04-13 05:49:19 350208  ----a-w-    C:\Windows\apppatch\AppPatch64\AcLayers.dll
2013-04-13 05:49:19 308736  ----a-w-    C:\Windows\apppatch\AppPatch64\AcGenral.dll
2013-04-13 05:49:19 111104  ----a-w-    C:\Windows\apppatch\AppPatch64\acspecfc.dll
2013-04-13 04:45:16 474624  ----a-w-    C:\Windows\apppatch\AcSpecfc.dll
2013-04-13 04:45:15 2176512 ----a-w-    C:\Windows\apppatch\AcGenral.dll
2013-04-10 06:01:54 265064  ----a-w-    C:\Windows\System32\drivers\dxgmms1.sys
2013-04-10 06:01:53 983400  ----a-w-    C:\Windows\System32\drivers\dxgkrnl.sys
2013-04-10 03:30:50 3153920 ----a-w-    C:\Windows\System32\win32k.sys
2013-04-08 22:00:05 796672  ----a-w-    C:\Windows\GPInstall.exe
2013-04-05 06:50:36 3958784 ----a-w-    C:\Windows\System32\jscript9.dll
2013-04-05 06:50:31 67072   ----a-w-    C:\Windows\System32\iesetup.dll
2013-04-05 06:50:31 136704  ----a-w-    C:\Windows\System32\iesysprep.dll
2013-04-05 05:26:26 2877440 ----a-w-    C:\Windows\SysWow64\jscript9.dll
2013-04-05 05:26:21 61440   ----a-w-    C:\Windows\SysWow64\iesetup.dll
2013-04-05 05:26:21 109056  ----a-w-    C:\Windows\SysWow64\iesysprep.dll
2013-04-05 04:43:00 2706432 ----a-w-    C:\Windows\System32\mshtml.tlb
2013-04-05 04:29:45 2706432 ----a-w-    C:\Windows\SysWow64\mshtml.tlb
2013-04-05 03:51:11 89600   ----a-w-    C:\Windows\System32\RegisterIEPKEYs.exe
2013-04-05 03:38:25 71680   ----a-w-    C:\Windows\SysWow64\RegisterIEPKEYs.exe
2013-03-19 06:04:06 5550424 ----a-w-    C:\Windows\System32\ntoskrnl.exe
2013-03-19 05:53:58 48640   ----a-w-    C:\Windows\System32\wwanprotdim.dll
2013-03-19 05:53:58 230400  ----a-w-    C:\Windows\System32\wwansvc.dll
2013-03-19 05:46:56 43520   ----a-w-    C:\Windows\System32\csrsrv.dll
2013-03-19 05:04:13 3968856 ----a-w-    C:\Windows\SysWow64\ntkrnlpa.exe
2013-03-19 05:04:10 3913560 ----a-w-    C:\Windows\SysWow64\ntoskrnl.exe
2013-03-19 04:47:50 6656    ----a-w-    C:\Windows\SysWow64\apisetschema.dll
2013-03-19 03:06:33 112640  ----a-w-    C:\Windows\System32\smss.exe
2013-03-06 22:33:21 70992   ----a-w-    C:\Windows\System32\drivers\aswRdr2.sys
2013-03-06 22:33:21 65336   ----a-w-    C:\Windows\System32\drivers\aswRvrt.sys
2013-03-06 22:33:21 178624  ----a-w-    C:\Windows\System32\drivers\aswVmm.sys
2013-03-06 22:33:21 1025808 ----a-w-    C:\Windows\System32\drivers\aswSnx.sys
2013-03-06 22:33:20 80816   ----a-w-    C:\Windows\System32\drivers\aswMonFlt.sys
2013-03-06 22:32:51 41664   ----a-w-    C:\Windows\avastSS.scr
2013-03-06 09:31:21 477616  ----a-w-    C:\Windows\SysWow64\npdeployJava1.dll
2013-03-06 09:31:21 473520  ----a-w-    C:\Windows\SysWow64\deployJava1.dll
2013-02-27 06:02:44 111448  ----a-w-    C:\Windows\System32\consent.exe
2013-02-27 05:48:00 1930752 ----a-w-    C:\Windows\System32\authui.dll
2013-02-27 05:47:10 70144   ----a-w-    C:\Windows\System32\appinfo.dll
2013-02-27 04:49:24 1796096 ----a-w-    C:\Windows\SysWow64\authui.dll
.
============= FINISH: 21:44:46.59 ===============



======= attach.txt ========

.
UNLESS SPECIFICALLY INSTRUCTED, DO NOT POST THIS LOG.
IF REQUESTED, ZIP IT UP &amp; ATTACH IT
.
DDS (Ver_2012-11-20.01)
.
Microsoft Windows 7 Home Premium 
Boot Device: \Device\HarddiskVolume2
Install Date: 12/12/2010 12:52:02 PM
System Uptime: 5/17/2013 9:35:16 PM (0 hours ago)
.
Motherboard: Dell Inc. |  | 0C2KJT
Processor: Intel(R) Core(TM) i3 CPU         550  @ 3.20GHz | CPU 1 | 3200/133mhz
.
==== Disk Partitions =========================
.
C: is FIXED (NTFS) - 923 GiB total, 865.713 GiB free.
D: is CDROM ()
E: is Removable
F: is Removable
G: is Removable
H: is Removable
.
==== Disabled Device Manager Items =============
.
==== System Restore Points ===================
.
RP527: 5/10/2013 3:00:11 AM - Windows Update
RP528: 5/11/2013 3:00:11 AM - Windows Update
RP529: 5/12/2013 3:00:16 AM - Windows Update
RP530: 5/13/2013 3:00:11 AM - Windows Update
RP531: 5/14/2013 3:00:11 AM - Windows Update
RP532: 5/15/2013 3:00:13 AM - Windows Update
RP533: 5/16/2013 3:00:12 AM - Windows Update
RP534: 5/17/2013 3:00:11 AM - Windows Update
RP535: 5/17/2013 2:20:56 PM - Windows Update
RP536: 5/17/2013 3:23:57 PM - Windows Update
RP537: 5/17/2013 3:48:22 PM - Windows Update
RP538: 5/17/2013 5:42:17 PM - Windows Update
RP539: 5/17/2013 6:14:45 PM - Installed HiJackThis
RP540: 5/17/2013 6:38:56 PM - Removed TheSkyX First Light Edition.
RP541: 5/17/2013 6:39:54 PM - Removed TONKA Search &amp; Rescue 2
.
==== Installed Programs ======================
.
4 Elements
Acer eDisplay Management
Adobe AIR
Adobe Flash Player 11 ActiveX
Adobe Flash Player 11 Plugin
Adobe Reader XI (11.0.03)
Adobe Shockwave Player 12.0
AirPort
Apple Application Support
Apple Mobile Device Support
Apple Software Update
avast! Free Antivirus
Bonjour
CameraHelperMsi
Chicken Invaders 3
Compatibility Pack for the 2007 Office system
D3DX10
Dell Dock
Dell Edoc Viewer
Dell Support Center
Dora's Big Birthday Adventure
Dora Saves the Crystal Kingdom!
erLT
Google Chrome
HiJackThis
Intel(R) Graphics Media Accelerator Driver
iTunes
Java(TM) 6 Update 45 (64-bit)
Junk Mail filter update
Kidzui
KONICA MINOLTA magicolor 1600W
Logitech Vid HD
Logitech Webcam Software
LWS Facebook
LWS Gallery
LWS Help_main
LWS Launcher
LWS Motion Detection
LWS Pictures And Video
LWS Twitter
LWS Video Mask Maker
LWS VideoEffects
LWS Webcam Software
LWS WLM Plugin
LWS YouTube Plugin
Malwarebytes Anti-Malware version 1.75.0.1300
Microsoft .NET Framework 4 Client Profile
Microsoft Application Error Reporting
Microsoft Mouse and Keyboard Center
Microsoft Office PowerPoint Viewer 2007 (English)
Microsoft Silverlight
Microsoft SQL Server 2005 Compact Edition [ENU]
Microsoft Virtual PC 2007 SP1
Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148
Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161
Microsoft Visual C++ 2010  x86 Redistributable - 10.0.30319
Microsoft Works
MSVCRT
MSVCRT_amd64
Multimedia Card Reader
Panel Utility
Pivot Pro Plugin
PowerDVD DX
QuickTime
Realtek High Definition Audio Driver
ROBLOX Player for Vincent
ROBLOX Studio 2013 for Vincent
Roxio Burn
Safari
SDK
Secunia PSI (2.0.0.3001)
Security Update for CAPICOM (KB931906)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2160841)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2446708)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2478663)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2518870)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2539636)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2572078)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2604121)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2633870)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2656351)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2656368)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2656368v2)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2656405)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2686827)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2729449)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2737019)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2742595)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2789642)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2804576)
Skype™ 6.3
SpongeBob and the Clash of Triton
swMSM
Unreal Tournament
Update for Microsoft .NET Framework 4 Client Profile (KB2468871)
Update for Microsoft .NET Framework 4 Client Profile (KB2473228)
Update for Microsoft .NET Framework 4 Client Profile (KB2533523)
Update for Microsoft .NET Framework 4 Client Profile (KB2600217)
Windows 7 Upgrade Advisor
Windows Live Communications Platform
Windows Live Essentials
Windows Live ID Sign-in Assistant
Windows Live Installer
Windows Live Language Selector
Windows Live Mail
Windows Live Messenger
Windows Live MIME IFilter
Windows Live Movie Maker
Windows Live Photo Common
Windows Live Photo Gallery
Windows Live PIMT Platform
Windows Live SOXE
Windows Live SOXE Definitions
Windows Live Sync
Windows Live UX Platform
Windows Live UX Platform Language Pack
Windows Live Writer
Windows Live Writer Resources
.
==== Event Viewer Messages From Past Week ========
.
5/17/2013 9:35:37 PM, Error: Microsoft-Windows-WER-SystemErrorReporting [1001]  - The computer has rebooted from a bugcheck.  The bugcheck was: 0x0000009f (0x0000000000000004, 0x0000000000000258, 0xfffffa800543f040, 0xfffff80000b9c510). A dump was saved in: C:\Windows\MEMORY.DMP. Report Id: 051713-17643-01.
5/17/2013 5:53:18 PM, Error: Service Control Manager [7001]  - The Computer Browser service depends on the Server service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 5:51:26 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1084" attempting to start the service WSearch with arguments "" in order to run the server: {9E175B6D-F52A-11D8-B9A5-505054503030}
5/17/2013 5:51:26 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1084" attempting to start the service WSearch with arguments "" in order to run the server: {7D096C5F-AC08-4F1F-BEB7-5C22C517CE39}
5/17/2013 5:51:24 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1084" attempting to start the service EventSystem with arguments "" in order to run the server: {1BE1F766-5536-11D1-B726-00C04FB926AF}
5/17/2013 5:51:17 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1084" attempting to start the service ShellHWDetection with arguments "" in order to run the server: {DD522ACC-F821-461A-A407-50B198B896DC}
5/17/2013 5:51:12 PM, Error: Service Control Manager [7026]  - The following boot-start or system-start driver(s) failed to load:  aswSnx aswSP aswTdi discache SASDIFSV SASKUTIL spldr vmm Wanarpv6
5/17/2013 5:44:18 PM, Error: Microsoft-Windows-WindowsUpdateClient [20]  - Installation Failure: Windows failed to install the following update with error 0x8024200d: Security Update for Windows 7 for x64-based Systems (KB2667402).
5/17/2013 4:29:27 PM, Error: Service Control Manager [7001]  - The Network List Service service depends on the Network Location Awareness service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:28:02 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1068" attempting to start the service netprofm with arguments "" in order to run the server: {A47979D2-C419-11D9-A5B4-001185AD2B89}
5/17/2013 4:28:02 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1068" attempting to start the service netman with arguments "" in order to run the server: {BA126AD1-2166-11D1-B1D0-00805FC1270E}
5/17/2013 4:27:49 PM, Error: Service Control Manager [7026]  - The following boot-start or system-start driver(s) failed to load:  AFD aswRdr aswSnx aswSP aswTdi DfsC discache NetBIOS NetBT nsiproxy Psched rdbss SASDIFSV SASKUTIL spldr tdx vmm Wanarpv6 WfpLwf
5/17/2013 4:27:49 PM, Error: Service Control Manager [7001]  - The SMB MiniRedirector Wrapper and Engine service depends on the Redirected Buffering Sub Sysytem service which failed to start because of the following error:  A device attached to the system is not functioning.
5/17/2013 4:27:49 PM, Error: Service Control Manager [7001]  - The SMB 2.0 MiniRedirector service depends on the SMB MiniRedirector Wrapper and Engine service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:27:49 PM, Error: Service Control Manager [7001]  - The SMB 1.x MiniRedirector service depends on the SMB MiniRedirector Wrapper and Engine service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:27:49 PM, Error: Service Control Manager [7001]  - The Network Location Awareness service depends on the Network Store Interface Service service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:27:49 PM, Error: Service Control Manager [7001]  - The IP Helper service depends on the Network Store Interface Service service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:27:48 PM, Error: Service Control Manager [7001]  - The Workstation service depends on the Network Store Interface Service service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:27:48 PM, Error: Service Control Manager [7001]  - The TCP/IP NetBIOS Helper service depends on the Ancillary Function Driver for Winsock service which failed to start because of the following error:  A device attached to the system is not functioning.
5/17/2013 4:27:48 PM, Error: Service Control Manager [7001]  - The Network Store Interface Service service depends on the NSI proxy service driver. service which failed to start because of the following error:  A device attached to the system is not functioning.
5/17/2013 4:27:48 PM, Error: Service Control Manager [7001]  - The DNS Client service depends on the NetIO Legacy TDI Support Driver service which failed to start because of the following error:  A device attached to the system is not functioning.
5/17/2013 4:27:48 PM, Error: Service Control Manager [7001]  - The DHCP Client service depends on the Ancillary Function Driver for Winsock service which failed to start because of the following error:  A device attached to the system is not functioning.
.
==== End Of File ==========================='
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/64">Viruses, Spyware and other Nasties</category>
			<dc:creator>slwf</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/454849/vundo-and-maybe-other-issues</guid>
		</item>
				<item>
			<title>help me on onsubmit and onclick</title>
			<link>http://www.daniweb.com/web-development/php/threads/454848/help-me-on-onsubmit-and-onclick</link>
			<pubDate>Sat, 18 May 2013 00:52:37 +0000</pubDate>
			<description>how to make javascript validation onsubmit go first before onclick submit button &lt;form name=&quot;daftar&quot; method=&quot;post&quot; action=&quot;daftar.php&quot; onsubmit=&quot;return checkscript()&quot;&gt; &lt;input type=&quot;submit&quot; name=&quot;Daftar&quot; value=&quot;Daftar&quot; id=&quot;submit&quot; onClick=&quot;return tq()&quot;/&gt; and my js: function checkscript() { if (document.daftar.terms.checked == false) { alert('Sila pastikan anda telah check ruangan persetujuan, untuk menandakan anda setuju dengan syarat-syarat kami.'); ...</description>
			<content:encoded><![CDATA[ <p>how to make javascript validation onsubmit go first before onclick submit button</p>

<p>&lt;form name="daftar" method="post" action="daftar.php" onsubmit="return checkscript()"&gt;</p>

<p>&lt;input type="submit" name="Daftar" value="Daftar" id="submit"  onClick="return tq()"/&gt;</p>

<p>and my js:</p>

<pre><code>function checkscript() {
if (document.daftar.terms.checked == false)
{ alert('Sila pastikan anda telah check ruangan persetujuan, untuk menandakan anda setuju dengan syarat-syarat kami.');
daftar.terms.focus();
return false ;
}
else return true;
}

function tq()
{
alert("Terima Kasih!");
}
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>dina85</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454848/help-me-on-onsubmit-and-onclick</guid>
		</item>
				<item>
			<title>c# , sql how to check if bool value is &quot;true&quot; for a choosen user.</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454847/c-sql-how-to-check-if-bool-value-is-true-for-a-choosen-user</link>
			<pubDate>Sat, 18 May 2013 00:51:14 +0000</pubDate>
			<description>Hello all, I was hoping You could help me with this. The code below is for the login screen in my project. the data is selected from UsersList (UserID,FirstName,LastName,UserDOB,UserUsername,UserPassword,UserAdmin) What way can I modify the &quot;cmd&quot; command to check if the value for UserAdmin is true and display a message ...</description>
			<content:encoded><![CDATA[ <p>Hello all, I was hoping You could help me with this. The code below is for the login screen in my project.<br />
the data is selected from UsersList (UserID,FirstName,LastName,UserDOB,UserUsername,UserPassword,UserAdmin)<br />
What way can I modify the "cmd" command to check if the value for UserAdmin is true and display a message box saying "admin" if the value is true ?</p>

<pre><code class="language-cs">namespace Transport_Management_System_Tools
{
    public partial class LoginPage : Form
    {
        public LoginPage()
        {
            InitializeComponent();
        }
        private void LoginPage_Load(object sender, EventArgs e)
        {

        }
        private void btnLogin_Click(object sender, EventArgs e)
        {
            OleDbDataAdapter dataAdapter;
            sqlConnector Connector = new sqlConnector();
            OleDbConnection connection;
            connection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=Database.accdb;Persist Security Info=False");
            connection.Open();
            DataTable dataTable = new DataTable();
            DataTable adminTable = new DataTable();
            OleDbCommand cmd = new OleDbCommand("SELECT UserUsername,UserPassword,UserAdmin FROM UsersList WHERE UserUsername='" + txtboxLogin.Text + "'AND UserPassword='" + txtboxPassword.Text + "'", connection);
            dataAdapter = new OleDbDataAdapter(cmd);
            dataAdapter.Fill(dataTable);

            if (dataTable.Rows.Count &gt; 0)
            {
                this.Hide();
                Main main = new Main();
                main.Show();
            }
            else
            {
                MessageBox.Show("Incorrect Username or Password");
            }
        }



    }
}
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>Haquo</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454847/c-sql-how-to-check-if-bool-value-is-true-for-a-choosen-user</guid>
		</item>
				<item>
			<title>class array</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454846/class-array</link>
			<pubDate>Sat, 18 May 2013 00:33:07 +0000</pubDate>
			<description>Sorry guys, this is a huge chunk of code that looks inefficient as f***. This was for a class I had last spring, so I'm not rying to cheat I just want an answer. So here's the assignment, Develop an object-oriented program to produce a grade report and an error ...</description>
			<content:encoded><![CDATA[ <p>Sorry guys, this is a huge chunk of code that looks inefficient as f***. This was for a class I had last spring, so I'm not rying to cheat I just want an answer. So here's the assignment,</p>

<p>Develop an object-oriented program to produce a grade report and an error report for a history teacher of a course named “HIST220”. Your task is to produce the reports with the following information in mind:<br />
Assume that the data file for this program contains no more than 100 records. Each record consists of five exam scores in the range of 0-100.<br />
Input record format:<br />
Student-ID-Number, Exam1-Score, Exam2-Score, Exam3-Score, Exam4-Score, Exam5-Score<br />
Compute the average and the letter grade for each student. The instructor has decided to drop the lowest of the five scores. Compute also the average and the letter grade based on the top four exam scores. Include these four pieces of information and the other six pieces of information from data file in your report (a total of ten values).<br />
Use the following grading scales when computing the letter grades (A = 90%, B = 80%, C = 70%, D = 60%, F = 0%).<br />
Data Validation: If the id or any of the scores is not valid then send that record to an error file. The error file should contain only the bad/invalid records with an appropriate main report heading and column. The records in the error file should be numbered (1, 2, 3 and so on).<br />
Each detail line in the main report should include the following items (all 10 fields on one line).<br />
Student-ID-Number, Exam1-Score*, Exam2-Score*, Exam3-Score*, Exam4-Score*, Exam5-Score*, Average Of 5 Scores, Letter grade, Average Of Top 4 Scores, New Letter Grade<br />
Each detail line should contain only one asterisk (*). It should be placed next to the smallest score for a give student.<br />
When defining the class for this program, make sure to have, among other member functions, a member function for each of the following tasks:<br />
Read in a record<br />
Print a record<br />
Compute the average (based on five scores)<br />
Compute the new average (based on the top four scores)<br />
Compute the letter grade<br />
A setter to assign six values (input record) to the corresponding member variables</p>

<p>Input record format:<br />
Student-ID-Number, Exam1-Score, Exam2-Score, Exam3-Score, Exam4-Score, Exam5-Score<br />
Output record format:<br />
Student-ID-Number, Exam1-Score*, Exam2-Score*, Exam3-Score*, Exam4-Score*, Exam5-Score*, Average Of 5 Scores, Letter grade, Average Of Top 4 Scores, New Letter Grade<br />
Store the following student records in a file and later read the data from it.</p>

<pre><code class="language-cpp">222300      90  90  80  90  90
333400      100 88  87  93  90
444444      200 90  90  90  85
555600      80  80  80  80  72
666666      90  90  -90 90  92
666700      77  77  77  66  77
777800      70  68  66  64  62
8888888     88  99  87  66  90
888900      80  0   0   60  70
</code></pre>

<p>I wanted to use a class array, and then an array for grades. I asked my teacher for help, but he just kept saying "what do you think you should do". I couldn't figure out how to create a default construtor for the class array, or the grade array. I asked my teacher again and again he said "what do you think you should do" I got angry and said forget it, if he's not gonna help I'm not gonna stress over it. here is the code I came up with because it's all I know how to do. So here's my code</p>

<pre><code class="language-cpp">//Project: Program3

    //Date: 5/20/2013

    //This program takes the student id and five exam scores from a file. It then
    //finds the average grade of the five exam scores. Then it drops the lowest
    //score and recalculates the average of four exam scores.


    #include &lt;iostream&gt;
    #include &lt;fstream&gt;
    #include &lt;iomanip&gt;
    using namespace std;

    int const NUMBEROFSUDENTS = 100;

    class student
    {

      public:
        void setGrades(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count);
        int getGrades(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[]);
        void error(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count);
        void average(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[],
         double total[], int count);
        void newAverage(double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int newAverage[], int count);
        void grade(int studentId[], int newAverage[], char grade[], int count);
        void print(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[],
          double total[], int newAverage[], char grade[], int count);
        student(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count);
        student();

      private:
        int id[NUMBEROFSUDENTS];
        double first[NUMBEROFSUDENTS];
        double second[NUMBEROFSUDENTS];
        double third[NUMBEROFSUDENTS];
        double fourth[NUMBEROFSUDENTS];
        double fifth[NUMBEROFSUDENTS];

    };



    int main()
    {

      int studentId[NUMBEROFSUDENTS];
      double exam1[NUMBEROFSUDENTS];
      double exam2[NUMBEROFSUDENTS];
      double exam3[NUMBEROFSUDENTS];
      double exam4[NUMBEROFSUDENTS];
      double exam5[NUMBEROFSUDENTS];
      double total[NUMBEROFSUDENTS];
      int newAverage[NUMBEROFSUDENTS];
      char grade[NUMBEROFSUDENTS];
      int count = 0;

      student firstStudent;
      firstStudent.setGrades(studentId, exam1, exam2, exam3, exam4, exam5, count);
      count = firstStudent.getGrades(studentId, exam1, exam2, exam3, exam4, exam5);
      firstStudent.error(studentId, exam1, exam2, exam3, exam4, exam5, count);
      firstStudent.average(studentId, exam1, exam2, exam3, exam4, exam5, total, count);
      firstStudent.newAverage(exam1, exam2, exam3, exam4, exam5, newAverage, count);
      firstStudent.grade(studentId, newAverage, grade, count);
      firstStudent.print(studentId, exam1, exam2, exam3, exam4, exam5, total, newAverage, grade, count);


    }
    //default constructor
    student::student()
    {
      for (int i = 0; i &lt;= 9; i++)
      {
        id[i] = 0;
        first[i] = 0;
        second[i] = 0;
        third[i] = 0;
        fourth[i] = 0;
        fifth[i] = 0;
      }
    }

    student::student(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count)
    {

      setGrades(studentId, exam1, exam2, exam3, exam4, exam5, count);

    }
    //gets grade from fie and puts student id and exams into arrays
    int student::getGrades(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[])
    {
      ifstream inFile;
      inFile.open("student.txt");

      int count = 0;

        while (inFile.peek() !=EOF)
        {
          inFile &gt;&gt; studentId[count] &gt;&gt; exam1[count] &gt;&gt; exam2[count] &gt;&gt; exam3[count] &gt;&gt; exam4[count] &gt;&gt; exam5[count];
          count++;

        }

      inFile.close();

      return count;

    }
    //looks through student id to see if number are within range
    //looks at exam scores and check if they are between 0 and 100
    void student::error(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count)
    {
      ofstream outFile;
      outFile.open("error.txt");

      int idError[NUMBEROFSUDENTS];
      int examError[NUMBEROFSUDENTS];

      for (int i = 0; i &lt;=count; i++)
      {
        if (0 &gt; studentId[i] || studentId[i] &gt; 1000000)
        {
          idError[i] = studentId[i];
          outFile &lt;&lt; "student id error: " &lt;&lt; idError[i] &lt;&lt; endl;
        }

        if (0 &gt; exam1[i] || exam1[i] &gt; 100)
        {
          examError[i] = exam1[i];
          outFile &lt;&lt; "exam error: " &lt;&lt; examError[i] &lt;&lt; endl;
        }

        if (0 &gt; exam2[i] || exam2[i] &gt; 100)
        {
          examError[i] = exam2[i];
          outFile &lt;&lt; "exam error: " &lt;&lt; examError[i] &lt;&lt; endl;
        }

        if (0 &gt; exam3[i] || exam3[i] &gt; 100)
        {
          examError[i] = exam1[i];
          outFile &lt;&lt; "exam error: " &lt;&lt; examError[i] &lt;&lt; endl;
        }

        if (0 &gt; exam4[i] || exam4[i] &gt; 100)
        {
          examError[i] = exam1[i];
          outFile &lt;&lt; "exam error: " &lt;&lt; examError[i] &lt;&lt; endl;
        }

        if (0 &gt; exam5[i] || exam5[i] &gt; 100)
        {
          examError[i] = exam1[i];
          outFile &lt;&lt; "exam error: " &lt;&lt; examError[i] &lt;&lt; endl;
        }
      }
        outFile.close();
    }
    //sets student ids and exams
    void student::setGrades(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count)
    {

      for (int i = 1; i &lt; count; i++)
      {
      studentId[i] = id[i];
      exam1[i] = first[i];
      exam2[i] = second[i];
      exam3[i] = third[i];
      exam4[i] = fourth[i];
      exam5[i] = fifth[i];

      }
    }
    //calculates average of five exam scores
    void student::average(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[],
     double total[], int count)
    {

      for (int i = 1; i &lt; count; i++)
      {
        total[i] = exam1[i] + exam2[i] + exam3[i] + exam4[i] + exam5[i];
      }

    }
    //calculates average of new exam score after lowest grade has been dropped
    void student::newAverage(double exam1[], double exam2[], double exam3[], double exam4[], double exam5[],
      int newAverage[], int count)
    {
      double lowest[9];
      double total[9];

      for (int i = 1; i &lt; count; i++)
      {

          lowest[i] = exam1[i];
          if(exam1[i] &lt; lowest[i])
              lowest[i] = exam2[i];
          if(exam3[i] &lt; lowest[i])
              lowest[i] = exam2[i];
          if(exam4[i] &lt; lowest[i])
              lowest[i] = exam4[i];
          if(exam5[i] &lt; lowest[i])
              lowest[i] = exam5[i];

          total[i] = exam1[i] + exam2[i] + exam3[i] + exam4[i] + exam5[i];

          newAverage[i] =  (total[i] - lowest[i]) / 4;

      }
    }
    //finds letter grade for exam average
    void student::grade(int studentId[], int newAverage[], char grade[], int count)
    {

      for (int i = 1; i &lt; count; i++)
      {
        if (newAverage[i] &gt;= 90)
        grade[i] = 'A';
      else if (newAverage[i] &gt;= 80)
        grade[i] = 'B';
      else if (newAverage[i] &gt;= 70)
        grade[i] = 'C';
      else if (newAverage[i] &gt;= 60)
        grade[i] = 'D';
      else
        grade[i] = 'F';

      }
    }
    //prints student id, exams, old exam score, new exam score, and grades
    void student::print(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[],
      double total[], int newAverage[], char grade[], int count)
    {

      ofstream outFile;
      outFile.open("report.txt");

      for (int i = 1; i &lt; count-1; i++)
      {
      outFile &lt;&lt; setw(10) &lt;&lt; left &lt;&lt; "Student Id: " &lt;&lt; setw(9) &lt;&lt; left &lt;&lt; studentId[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Exam 1: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; exam1[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Exam 2: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; exam2[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Exam 3: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; exam3[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Exam 4: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; exam4[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Exam 5: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; exam5[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(13) &lt;&lt; left &lt;&lt; "Total Score: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; total[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(16) &lt;&lt; left &lt;&lt; "Adjusted Score: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; newAverage[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Grade: " &lt;&lt; setw(3) &lt;&lt; left &lt;&lt; grade[i] &lt;&lt; endl;

      }

      outFile.close();

    }
</code></pre>

<p>This will drive me nuts. I learned nothing in that class, because any quesiton we had he would say "what do you think". Any help would be greatly appreciated. Sorry for the length.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>mc3330418</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454846/class-array</guid>
		</item>
				<item>
			<title>Action Listener trouble</title>
			<link>http://www.daniweb.com/software-development/java/threads/454845/action-listener-trouble</link>
			<pubDate>Fri, 17 May 2013 23:38:14 +0000</pubDate>
			<description>I have been having some trouble with this action listener scenareo, and I am doing it exactly like what my java book says to do, and something is still not working. In the action listener the if statement is not working correctly. Here is an example of my code. The ...</description>
			<content:encoded><![CDATA[ <p>I have been having some trouble with this action listener scenareo, and I am doing it exactly like what my java book says to do, and something is still not working. In the action listener the if statement is not working correctly. Here is an example of my code. The label in the center of the frame should be changing, but doesnt.</p>

<pre><code class="language-java">import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;


public class Test extends JFrame implements ActionListener{

    private JButton team1;
    private JLabel label;

    public static void main(String[] args) {
        new Test();
    }//end main

    public Test(){
        super("Favorite Teams");
        this.setVisible(true);
        this.setSize(300, 300);
        this.setLocationRelativeTo(null);//center the frame 
        this.setLayout(new BorderLayout());
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        //Initialize the JButtons
        JButton team1 = new JButton("Zerg");//video game starcraft

        //initialize the JLabel
        label = new JLabel("Please select a team. ");
        label.setHorizontalAlignment(JLabel.CENTER);

        //add the JButtons to the frame
        this.add(team1, BorderLayout.LINE_START);

        //add JLabel to the frame
        this.add(label, BorderLayout.CENTER);

        //add ActionListeners to the buttons
        team1.addActionListener(this);
    }

    public void actionPerformed(ActionEvent e) {
        Object source = e.getSource();
        if(source == team1)//Zerg
            label.setText("Ok, if you like critters. ");
    }//end method

}//end class
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>overwraith</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454845/action-listener-trouble</guid>
		</item>
				<item>
			<title>PHP Signup Form Errors</title>
			<link>http://www.daniweb.com/web-development/php/threads/454844/php-signup-form-errors</link>
			<pubDate>Fri, 17 May 2013 22:57:11 +0000</pubDate>
			<description>Okay so i have to make a signup form and i have pretty much everything finished but i keep getting this error **Warning: mysql_num_rows() expects parameter 1 to be resource**. I keep getting this error on my **$checkUserQuery** &amp; **$checkEmailQuery** and don't know how to fix it. Any Suggestions? &lt;?php ...</description>
			<content:encoded><![CDATA[ <p>Okay so i have to make a signup form and i have pretty much everything finished but i keep getting this error <strong>Warning: mysql_num_rows() expects parameter 1 to be resource</strong>. I keep getting this error on my <strong>$checkUserQuery</strong> &amp; <strong>$checkEmailQuery</strong> and don't know how to fix it. Any Suggestions?</p>

<pre><code>&lt;?php
    $db_name = "htmldb";
    $tbl_name = "phplogin";


    //connect to database
    $conn = mysql_connect("localhost","root","");
    mysql_select_db("$db_name");

    //post back to database and checks userName 
    //and email for no duplicates in database
    if($_POST['submit']){
        $first = $_POST['firstName'];
        $last = $_POST['lastName'];
        $user = $_POST['userName'];
        $pass = $_POST['p'];
        $email = $_POST['email'];
        $checkUserQuery = mysql_query("SELECT * FROM $tbl_name WHERE userName = '$user'"); 
        $checkEmailQuery = mysql_query("SELECT * FROM $tbl_name WHERE email = '$email'");

        if(!$first OR !$last OR !$user OR !$pass OR !$email)
        {
            echo("Error: Please make sure all fields are filled out!");
        }
        elseif(mysql_num_rows($checkUserQuery) &gt; 0)
        {
            echo("Error: Username already exists!");
        }
        elseif(mysql_num_rows($checkEmailQuery) &gt; 0)
        {
            echo("Error: E-mail Address has already been used please user another one!");
        }
        else 
        {
            $query = mysql_query("INSERT INTO phplogin
                VALUES(".$first.",'".$last."','".$user."','".$pass."','".$email."')");
            echo("Sign Up Successful!");
        }
    }
?&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>Gabe13</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454844/php-signup-form-errors</guid>
		</item>
				<item>
			<title>Website not display correctly in internet explorer</title>
			<link>http://www.daniweb.com/web-development/web-design-html-and-css/threads/454843/website-not-display-correctly-in-internet-explorer</link>
			<pubDate>Fri, 17 May 2013 21:40:02 +0000</pubDate>
			<description>Hy All I have a website, and i just got a new script platform for it. I start to test the site when i notied the site is not fully working when i use internet explorer. Its seems like internet explorer didnt want to load pictures or other details and ...</description>
			<content:encoded><![CDATA[ <p>Hy All</p>

<p>I have a website, and i just got a new script platform for it. I start to test the site when i notied the site is not fully working when i use internet explorer. Its seems like internet explorer didnt want to load pictures or other details and its really annoying as i cant launch my site before i get this sorted. I try to contact with the developer but he seems like "gone missing" Can anyof you give me an advice or helping hand how to fix the problem? The link what you can check is commingsoon.filemonster.org  I try with firefox and its fine, but with intetnet explorer its just looks riddicilous.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/web-design-html-and-css/15">Web Design, HTML and CSS</category>
			<dc:creator>rolanduk</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/web-design-html-and-css/threads/454843/website-not-display-correctly-in-internet-explorer</guid>
		</item>
				<item>
			<title>Monthly to Quarter to Annual</title>
			<link>http://www.daniweb.com/web-development/databases/ms-sql/threads/454842/monthly-to-quarter-to-annual</link>
			<pubDate>Fri, 17 May 2013 20:53:29 +0000</pubDate>
			<description>Hi All, I have a table that holds monthly data in it. I need to average that data into Quarterly and Annual data but I'm not sure how to go about that. For annual I tried something like: SELECT TOP (100) PERCENT b.vSeries_Type as [Description],b.vSeries_Number as [CANSIM], Year(a.IPI_Ref_Date)as [Year], avg(a.IPI_Value) ...</description>
			<content:encoded><![CDATA[ <p>Hi All,</p>

<p>I have a table that holds monthly data in it.  I need to average that data into Quarterly and Annual data but I'm not sure how to go about that.  For annual I tried something like:</p>

<pre><code class="language-sql">SELECT     TOP (100) PERCENT b.vSeries_Type as [Description],b.vSeries_Number as [CANSIM], Year(a.IPI_Ref_Date)as [Year], avg(a.IPI_Value) as [IPI]
FROM         dbo.tblIPI AS a INNER JOIN
                      dbo.tblVSeriesList AS b ON a.IPIvSeries_ID = b.vSeries_ID AND (b.vSeries_Number = 'v53384920' OR
                      b.vSeries_Number = 'v53384879' OR
                      b.vSeries_Number = 'v53433827' OR)
group by b.vSeries_Type,b.vSeries_Number,a.IPI_Ref_Date
ORDER BY b.vSeries_Number asc
</code></pre>

<p>However the output is definitely not Annual, I don't know exactly what the calculation did.  Can someone point me in the right direction?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/databases/ms-sql/127">MS SQL</category>
			<dc:creator>Stuugie</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/databases/ms-sql/threads/454842/monthly-to-quarter-to-annual</guid>
		</item>
				<item>
			<title>Effects of Div tags on following Table usage</title>
			<link>http://www.daniweb.com/web-development/web-design-html-and-css/threads/454841/effects-of-div-tags-on-following-table-usage</link>
			<pubDate>Fri, 17 May 2013 19:58:46 +0000</pubDate>
			<description>Just to note: My brain in engaged and has been for awhile on this topic. I've learned and implemented a lot over the past week or so regarding CSS and Div tags, BUT... I am running into issues with formatting of data within table cells that I've never seen before, ...</description>
			<content:encoded><![CDATA[ <p>Just to note:  My brain in engaged and has been for awhile on this topic.  I've learned and implemented a lot over the past week or so regarding CSS and Div tags, BUT...</p>

<p>I am running into issues with formatting of data within table cells that I've never seen before, when preceding them with div tags for the header portion of a webpage...</p>

<p>This is the site where the formatting is an issue: <a href="http://www.hctubs.com/index2.php" rel="nofollow">http://www.hctubs.com/index2.php</a></p>

<p>All I have ever used in the past has been tables for page layout, but just getting an education in CSS Div tags for layout to some degree.</p>

<p>What i'm wondering is if the use of Div tags for the header portion of a webpage would have any effect on the subsequent use of tables for remaining data on the page?</p>

<p>Header tags and line spacing and bolding of text are all acting differently then they ever have.  In fact, if you look at the page source, you will see that all the lines I designated to be bolded, are not being bolded.</p>

<p>If preceeding the tables with div tags is the issue, is there a way to overcome it?</p>

<p>Could / Should the entire page be displayed using Div tags and replace the use of tables altogether?</p>

<p>May sound like strange questions, but trying to figure out the practical use and reasoning of using one over the other.</p>

<p>Hope someone is understanding of these questions and can give me some positive energy feedback.</p>

<p>Thanks<br />
Douglas</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/web-design-html-and-css/15">Web Design, HTML and CSS</category>
			<dc:creator>showman13</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/web-design-html-and-css/threads/454841/effects-of-div-tags-on-following-table-usage</guid>
		</item>
			</channel>
</rss>