<?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>Problem in Java Game Development</title>
			<link>http://www.daniweb.com/software-development/java/threads/455004/problem-in-java-game-development</link>
			<pubDate>Mon, 20 May 2013 16:57:56 +0000</pubDate>
			<description>hey all I was watching a tutorial on java game development.In that video,the guy was making a window a on the screen,then making an oval,then moving it. His code worked fine and i am 100% sure that my code is similar to his(i checked it a few times). What my ...</description>
			<content:encoded><![CDATA[ <p>hey all</p>

<p>I was watching a tutorial on java game development.In that video,the guy was making a window a on the screen,then making an oval,then moving it.</p>

<p>His code worked fine and i am 100% sure that my code is similar to his(i checked it a few times).<br />
What my problem is that the window just display the image behind the window and not displays the blank screen.<br />
for eg. i use netbeans IDE.When i run the program,he window appears on the top left corner of the screen but what it displays is the things behind it such as : "file","edit","view","navigate","run"(basically,al the components behind the window) etc.<br />
THIS IS THE CODE:</p>

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

import javax.swing.JFrame;
import java.awt.Graphics;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;

public class JavaApplication1 extends JFrame{
int x,y;
    public class AL extends KeyAdapter{
        public void keyPressed(KeyEvent e){
            int keyCode = e.getKeyCode();
if(keyCode == e.VK_A){
        x-=5;
}
if(keyCode == e.VK_D){
    x+=5;
}
if(keyCode == e.VK_W){
    y-=5;
}
if(keyCode == e.VK_S){
    y+=5;
}

        }
        public void KeyReleased(KeyEvent e){

        }
    }

    public JavaApplication1(){
        addKeyListener(new AL());
         setTitle("Java Game");
    setSize(250,250);
    setVisible(true); 
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        x = 150;
        y = 150;
    }
    public void paint(Graphics g){    
        g.fillOval(x,y,15,15);
        repaint();
    }

    public static void main(String[] args) {
        new JavaApplication1();


    }
}
</code></pre>

<p>The ball is on the copied screen and is moving just fine.<br />
Please i am really going insane due to this frustration.I googles it but could'nt find any solution.Now, this is the place where i rely the most.</p>

<p>Thanks to all.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>Bhavya scripted</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/455004/problem-in-java-game-development</guid>
		</item>
				<item>
			<title>Restrict site access to authenticated Active Directory users</title>
			<link>http://www.daniweb.com/web-development/aspnet/threads/455003/restrict-site-access-to-authenticated-active-directory-users</link>
			<pubDate>Mon, 20 May 2013 16:56:31 +0000</pubDate>
			<description>I'm trying to create a site security strategy that will allow authenticated AD users hit a site, without a login page, and deny access to users who are not authenticated. I have developed a proof-of-concept site based on http://www.christowles.com/2011/04/aspnet-forms-based-authentication-with.html but all I can make it do is authenticate against an ...</description>
			<content:encoded><![CDATA[ <p>I'm trying to create a site security strategy that will allow authenticated AD users hit a site, without a login page, and deny access to users who are not authenticated.  I have developed a proof-of-concept site based on <a href="http://www.christowles.com/2011/04/aspnet-forms-based-authentication-with.html" rel="nofollow">http://www.christowles.com/2011/04/aspnet-forms-based-authentication-with.html</a> but all I can make it do is authenticate against an Active Directory Membership Provider via a login page. I'd like to avoid that whole login thing. Does any one have any advice as to how I go about this?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/aspnet/18">ASP.NET</category>
			<dc:creator>christopher.baker.969952</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/aspnet/threads/455003/restrict-site-access-to-authenticated-active-directory-users</guid>
		</item>
				<item>
			<title>Need help really quick</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/455002/need-help-really-quick</link>
			<pubDate>Mon, 20 May 2013 16:55:44 +0000</pubDate>
			<description>Main Module Declare itemName As String Declare itemQuantity As Integer Declare itemPrice As Real Declare itemTotal As Real Call GetInput(itemName,itemQuantity,itemPrice) itemTotal = Call CalculateTotalPrice(itemQuantity,itemPrice) Call DisplayResult(itemName,itemTotal) End Main Module GetInput (itemName As String,itemQuantity As Integer,itemPrice As Real) Display “Please enter item Name” Get itemName Display “Please enter quantity of item ...</description>
			<content:encoded><![CDATA[ <p>Main Module<br />
Declare itemName As String<br />
Declare itemQuantity As Integer<br />
Declare itemPrice As Real<br />
Declare itemTotal As Real<br />
Call GetInput(itemName,itemQuantity,itemPrice)<br />
itemTotal = Call CalculateTotalPrice(itemQuantity,itemPrice)<br />
Call DisplayResult(itemName,itemTotal)<br />
End Main</p>

<p>Module GetInput (itemName As String,itemQuantity As Integer,itemPrice As Real)<br />
Display “Please enter item Name”<br />
Get itemName<br />
Display “Please enter quantity of item bought”<br />
Get itemQuantity<br />
Display “Please enter item price”<br />
Get itemPrice<br />
End GetInput</p>

<p>Module CalculateTotalPrice (itemQuantity As Integer,itemPrice As Real)  As Real<br />
Declare itemTotal As Real<br />
itemTotal = itemQuantity * itemPrice<br />
Return itemTotal<br />
End CalculateTotalPrice</p>

<p>Module DisplayResult(itemName As String,itemTotal As Real)<br />
Display “The total price of “,itemName, “would be “, itemTotal<br />
End Module</p>

<p>All I need to do is add this in to my pseudocode The owner of the store now wants additional features for his application. He now wants to be able to give discounts to people who purchase more than 4 of a single item. The discount should apply to that item only and should be 10%. He also wants to be able to add tax, the current tax rate is 7.5 % Finally he wants to be able to continue to add new items to one order. When he is done entering the items for the order he should be able to see what the subtotal is, what the final tax is and what the final total is. This should be the only time the subtotal is displayed. Please I need someone to help me out sort of in a bind right now would really appreciate it.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>anibal.zuniga.5</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/455002/need-help-really-quick</guid>
		</item>
				<item>
			<title>error in php code last insert id</title>
			<link>http://www.daniweb.com/web-development/php/threads/455001/error-in-php-code-last-insert-id</link>
			<pubDate>Mon, 20 May 2013 16:46:09 +0000</pubDate>
			<description>Hi, I am working on an hotel booking system for a small hotel.I finally found a nice tutorial on HTML.it.It is in Italian but that's not a problem for me as Italian is my mother tongue.The site consists of the usual tables like clients, reservations, etc.I ran all the scripts ...</description>
			<content:encoded><![CDATA[ <p>Hi, I am working on an hotel booking system for a small hotel.I finally found a nice tutorial on HTML.it.It is in Italian but that's not a problem for me as Italian is my mother tongue.The site consists of the usual tables like clients, reservations, etc.I ran all the scripts from the command line and everything works fine. I still am not too sure of what I am doing but I figured that once I deliver the finished site to the hotel people, they are not going to want to fiddle with the command line, phpMyAdmin,MySQL etc.when they have to insert a reservation.So I started creating some user interface like a form to insert clients data as below.The problem is that last insert id business which is very important for the site to work.I searched the Internet but could not find a solution, I think the problem is that insert_id into @codeclient.Can you help me?this is the code involved.</p>

<pre><code>INSERT INTO client SET
nominativo = 'Rossi Mario',
indirizzo = via Manzi 2 00153 Rome,
telefono ='06 86123920';
SELECT_LAST_INSERT_ID() INTO @codCliente;

&lt;table width="300" border="0" align="center" cellspacing="1" cellpadding="0"&gt;
&lt;tr&gt;&lt;td&gt;&lt;form name="form1" method="post" action="insert_ac.php"&gt;
&lt;table width="100" border="0" cellspacing="1" cellpadding="3"&gt;
&lt;tr&gt;&lt;td colspan="3"&gt;&lt;strong&gt;Insert Data into MySQL Database&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width="71"&gt;Nominativo&lt;/td&gt;
&lt;td width="6"&gt;:&lt;/td&gt;
&lt;td width="301"&gt;&lt;input name="nominative" type="text" id="nominative"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;Indirizzo&lt;/td&gt;
&lt;td&gt;:&lt;/td&gt;
&lt;td&gt;&lt;input name="indirizzo" type="text" id="indirizzo&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Telefono&lt;/td&gt;
&lt;td&gt;:&lt;/td&gt;
&lt;td&gt;&lt;input name="telefono" type="text" id="telefono&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan="3" align="center"&gt;&lt;input type="submit" name="submit" value="submit"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/form&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;



&lt;?php

 $host="localhost"; // Host name 
$username="root"; // Mysql username 
$password="Fiorentino##"; // Mysql password 
$db_name="hotel"; // Database name 
$tbl_name="clienti"; // Table name 

// Connect to server and select database.
 mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
 mysql_select_db("$db_name")or die("cannot select DB");

// Get values from form 
 $nominativo=$_POST['nominativo'];
 $indirizzo=$_POST['indirizzo'];
 $telefono=$_POST['telefono'];

 // Insert data into mysql 
 $sql="INSERT INTO $tbl_name SET(nominativo, indirizzo, telefono)VALUES('$nominativo', '$indirizzo', '$telefono')";
 SELECT LAST_INSERT_ID() INTO @codCliente;

 $result=mysql_query($sql);



// if successfully insert data into database, displays message "Successful". 
 if($result){
 echo "Successful";
 echo "&lt;BR&gt;";
 echo "&lt;a href='insert.php'&gt;Back to main page&lt;/a&gt;";
 }

 else {
 echo "ERROR";
 }
 ?&gt; 

 &lt;?php 
// close connection 
 mysql_close();
 ?&gt;

 And this is the error I get:Parse error: syntax error, unexpected 'LAST_INSERT_ID' (T_STRING) in C:\inetpub\wwwroot\Hotel Site\insert_ac.php on line 20
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>Fiorentino01^</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/455001/error-in-php-code-last-insert-id</guid>
		</item>
				<item>
			<title>Android access method second activity</title>
			<link>http://www.daniweb.com/software-development/mobile-development/threads/455000/android-access-method-second-activity</link>
			<pubDate>Mon, 20 May 2013 16:15:21 +0000</pubDate>
			<description>Hi. I have read a bunch of posts,articles and everything but i cant get a solution.. i make an android app.. i start the first activity(first class). then i have a button for the second activity which i load it like this: Intent i=new Intent(firstactivity.this,secondactivity.class); startActivity(i); in the second activity ...</description>
			<content:encoded><![CDATA[ <p>Hi. I have read a bunch of posts,articles and everything but i cant get a solution..<br />
i make an android app..<br />
i start the first activity(first class). then i have a button for the second activity which i load it like this:</p>

<pre><code>Intent i=new Intent(firstactivity.this,secondactivity.class);
startActivity(i);
</code></pre>

<p>in the second activity on click event to a button i want to call one method from the first activity:</p>

<pre><code>firstactivity f1= new firstactivity();
f1.MyMethod("my string goes here")
</code></pre>

<p>when i run this the application crashes..i tried the try catch exeption and i printed to exeption which is one error for null... i cant get it to work.....</p>

<p>thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/mobile-development/181">Mobile Development</category>
			<dc:creator>christ123</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/mobile-development/threads/455000/android-access-method-second-activity</guid>
		</item>
				<item>
			<title>SMS gateways</title>
			<link>http://www.daniweb.com/software-development/java/threads/454999/sms-gateways</link>
			<pubDate>Mon, 20 May 2013 16:10:52 +0000</pubDate>
			<description>Am doing a project that involves exchanging sending sms via a website. Am told i can achieve this via sms gateway. Can i get some sample code please?</description>
			<content:encoded><![CDATA[ <p>Am doing a project that involves exchanging sending sms via a website. Am told i can achieve this via sms gateway. Can i get some sample code please?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>atabulwaire.john</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454999/sms-gateways</guid>
		</item>
				<item>
			<title>Need help badly </title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454998/need-help-badly-</link>
			<pubDate>Mon, 20 May 2013 16:10:09 +0000</pubDate>
			<description>I have been struggling with this since yesterday and I really need to get it finished. I have no clue why its not working. THe porblem im facing at the moment is as follows: I have a method loadDB(); That is looks like this: public static void loadDB() { // ...</description>
			<content:encoded><![CDATA[ <p>I have been struggling with this since yesterday and I really need to get it finished. I have no clue why its not working. THe porblem im facing at the moment is as follows:</p>

<p>I have a method loadDB(); That is looks like this:</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();
             con.ConnectionString = dbProvider + dbSource;

        }
</code></pre>

<p>I have stepped into the program and placed breakpoints and the method never does anything other than call the first method. Then it jumps off to the next section of the program. I call this loadDb method in a login form on load, the program then runs the first line which is to call loadTblStaff, but then it does nothing and awaits user interaction. When I type in details and click login it should run a validate method which uses the data loaded into the dataset. The form for login and the Data.cs class look like this:</p>

<p>login form:</p>

<pre><code class="language-cs">using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.Common;
using System.Data.OleDb;  

namespace WindowsFormsApplication1
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }

        // Variables------------------------------------------------------------------------------------------------------------------------   

        private static string userName;
        private static string userPin;

        private static int load;

        // Program Logic Below -------------------------------------------------------------------------------------------------------------

        private void Form2_Load(object sender, EventArgs e)
        {
            // calls the method to load the database
            Data.loadDB();

        }

        private void btnLogin_Click(object sender, EventArgs e)
        {
            userName = txtBoxAccount.Text;
            userPin = txtBoxPass.Text;

            // determine if credentials are valid 
           load = Data.Validate(userName,userPin);

            // switch statement to determine which form to load if any 
           switch (load)
           {
               case 0: 
                   MessageBox.Show("Invalid Credentials '\n' Please try again");
                   txtBoxAccount.Clear();
                   txtBoxPass.Clear();                   
                   break;

               case 1:
                   MessageBox.Show("Valid Credentials! '\n' You will now be given Staff privelages");
                   loadForms.loadStaff();
                   this.Hide();
                   break;

               case 2:
                   MessageBox.Show("Valid Credentials! '\n' You will now be given Admin privelages");
                   loadForms.loadAdmin();
                   this.Hide();
                   break;

               default:
                   MessageBox.Show("Invalid credentials! '\n' Please try again.");
                   txtBoxAccount.Clear();
                   txtBoxPass.Clear();
                   break;
           }
        }

        private void btnQuit_Click(object sender, EventArgs e)
        {            
            this.Hide();
            loadForms.loadWelcome();
        }              

    }
}
</code></pre>

<p>and the Data class looks like this</p>

<pre><code class="language-cs">using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Data.Common;
using System.Data.OleDb;  


namespace WindowsFormsApplication1
{
    // This class will contain methods and fields needed to handle the data. 
    class Data
    {
        // Fields -----------------------------------------------------------------------------------------------------------------

        private static System.Data.OleDb.OleDbConnection con = new System.Data.OleDb.OleDbConnection();
        private static System.Data.OleDb.OleDbDataAdapter da;
        private static DataSet ds1; // tblCars
        private static DataSet ds2; //tblStaff

        private static string sql;
        private static string dbProvider = "PROVIDER=Microsoft.ACE.OLEDB.12.0;";
        private static string dbSource = "Data Source = E:\\cars.accdb'";

        private static string userName;
        private static string userPin; 

        private static bool valid;

        private static int numOfRowsCars;
        private static int numOfRowsStaff;

        // Methods -----------------------------------------------------------------------------------------------------------------

        public static void loadDB()
        {
            // load data into datasets  - this will be called on form2 the login screen            

             loadTblStaff();
             loadTblCars();
             con.ConnectionString = dbProvider + dbSource;

        }

        public static void loadTblStaff()
        {
            // prepare, open and load the staff table into dataset ds2

            con.Open();

                sql = "SELECT * FROM tblStaff";
                ds2 = new DataSet();

                da = new OleDbDataAdapter(sql, con);
                numOfRowsStaff = da.Fill(ds2, "tblStaff");
                MessageBox.Show("Number of staff rows: " + numOfRowsStaff.ToString());
            con.Close();

        }

        public static void loadTblCars()
        {
            // prepare, open and load the cars table into dataset ds1

            con.Open();

                sql = "SELECT * FROM tblCars";
                ds1 = new DataSet();

                da = new OleDbDataAdapter(sql, con);
                numOfRowsCars = da.Fill(ds1, "tblCars");
                MessageBox.Show("Number of car rows: " + numOfRowsCars.ToString());
            con.Close();
        }       

        public static int Validate(string Name, string Pin)
        {
            // this method will be used to validate login credentials - it will return 0 for invalid, 1 for staff privalages and 2 for admin

            // check to see if log in details are valid
            for (int count = 1; count &lt; numOfRowsStaff; count++)
            {
                userName = ds2.Tables["tblStaff"].Rows[count][0].ToString();
                userPin = ds2.Tables["tblStaff"].Rows[count][1].ToString();

                if (Name == userName &amp;&amp; Pin == userPin)
                {
                    valid = true;
                }
                else
                {
                    valid = false;
                }
            }          



            if (valid &amp;&amp; Pin == "9999")
            {
                // returning 2 will load the admin screen
               return 2;
            }
            else if (valid)
            {
                // returning 1 will load the staff screen
               return 1;
            }
            else
            {
                // returning 0 will clear the input fields and return an error message
                return 0;
            }
        }

    }
}
</code></pre>

<p>The program just  skips everything and when I click login it returns 0 clearing the input fields. i dont understand whats wrong with this program. I realize I'm not good at this at all... but I need to get this done. Any help is greatly appreciated.</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/454998/need-help-badly-</guid>
		</item>
				<item>
			<title>HOW do I add A PHP Link</title>
			<link>http://www.daniweb.com/web-development/php/threads/454995/how-do-i-add-a-php-link</link>
			<pubDate>Mon, 20 May 2013 16:03:26 +0000</pubDate>
			<description>` $options[] = array( 'title' =&gt; __('Donate to the theme developers', 'default'), 'desc' =&gt; __('Note :Donate to the Developers of this theme, Donate any amount to keep the themes free ' , 'default'), 'id' =&gt; '', 'std' =&gt; '', 'type' =&gt; 'sep' ); How do I add a link to ...</description>
			<content:encoded><![CDATA[ <p>`</p>

<pre><code> $options[] = array( 'title' =&gt; __('Donate to the theme developers', 'default'),
                    'desc'  =&gt; __('Note :Donate to the Developers of this theme, Donate any amount to keep the themes free '  , 'default'),
                    'id'    =&gt; '',
                    'std'   =&gt; '',
                    'type'  =&gt; 'sep' );
</code></pre>

<p>How do I add a link to the text I want the word "Donate" to have a link</p>

<p>How do I do that. If anyone could help me I would really be grateful</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>sambulo.senda</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454995/how-do-i-add-a-php-link</guid>
		</item>
				<item>
			<title>link comboxes with LINQ</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454994/link-comboxes-with-linq</link>
			<pubDate>Mon, 20 May 2013 15:59:00 +0000</pubDate>
			<description>So I have items displayed in 2 diffrent comboxes. I want it so when I select a customer in combobox 1, In combobox 2 it only shows the jobs to that customer. I tried it many diffrent ways but can not seem to get it to work. Any help would ...</description>
			<content:encoded><![CDATA[ <p>So I have items displayed in 2 diffrent comboxes.</p>

<p>I want it so when I select a customer in combobox 1, In combobox 2 it only shows the jobs to that customer.</p>

<p>I tried it many diffrent ways but can not seem to get it to work.</p>

<p>Any help would be appreciative.</p>

<p>Thanks..</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>Kratoswoo</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454994/link-comboxes-with-linq</guid>
		</item>
				<item>
			<title>Globalization Country tag for resources what the hell!</title>
			<link>http://www.daniweb.com/web-development/aspnet/threads/454993/globalization-country-tag-for-resources-what-the-hell</link>
			<pubDate>Mon, 20 May 2013 15:35:14 +0000</pubDate>
			<description>Hi all, So i was doing globalization with resources, what happened, i tried basica country identification: pt - portugal; pl - poland; es - spain; and so on so on, what happen didnt work and a very big crash, after I put portugal file as language.pt-PT.esrx, and that one worked, ...</description>
			<content:encoded><![CDATA[ <p>Hi all,</p>

<p>So i was doing globalization with resources, what happened, i tried basica country identification:<br />
pt - portugal;<br />
pl - poland;<br />
es - spain;<br />
and so on so on,</p>

<p>what happen didnt work and a very big crash, after I put portugal file as language.pt-PT.esrx, and that one worked, when i tried to put poland.pl-PL.esrx it crashed again.<br />
poland it still to resolve, so wento to put Language.en-GB.esrx, and it created code that went to the language.esrx file and give incompatible code, what is this, cant globalizasion be easy? is the an easy way.</p>

<p>Can anybody knows what the hell is this, we have to put the correct iso code for each country?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/aspnet/18">ASP.NET</category>
			<dc:creator>maxpaine69</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/aspnet/threads/454993/globalization-country-tag-for-resources-what-the-hell</guid>
		</item>
				<item>
			<title>help : adding multiple images on single add button click</title>
			<link>http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454992/help-adding-multiple-images-on-single-add-button-click</link>
			<pubDate>Mon, 20 May 2013 15:15:49 +0000</pubDate>
			<description>help guys, i need to know how can i add multiple images in a single add button click for example and display it in multiple imageboxes..the project is also associated with an access database that when the user clicks on the button save..all the images inserted will be saved on ...</description>
			<content:encoded><![CDATA[ <p>help guys, i need to know how can i add multiple images in a single add button click for example and display it in multiple imageboxes..the project is also associated with an access database that when the user clicks on the button save..all the images inserted will be saved on to database..</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/visual-basic-4-5-6/4">Visual Basic 4 / 5 / 6</category>
			<dc:creator>raizuke.blademaster</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454992/help-adding-multiple-images-on-single-add-button-click</guid>
		</item>
				<item>
			<title>Where can I download the random module?</title>
			<link>http://www.daniweb.com/software-development/python/threads/454991/where-can-i-download-the-random-module</link>
			<pubDate>Mon, 20 May 2013 15:10:43 +0000</pubDate>
			<description>Where can I download the random module, because I've been looking for weeks and can't find a site where I can download it.</description>
			<content:encoded><![CDATA[ <p>Where can I download the random module, because I've been looking for weeks and can't find a site where I can download it.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/python/114">Python</category>
			<dc:creator>entropic3105</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/python/threads/454991/where-can-i-download-the-random-module</guid>
		</item>
				<item>
			<title>Flex signature generation using Hmac sha 1</title>
			<link>http://www.daniweb.com/web-development/threads/454988/flex-signature-generation-using-hmac-sha-1</link>
			<pubDate>Mon, 20 May 2013 14:49:35 +0000</pubDate>
			<description>Do anyone here knows flex builder? I'm a beginner in this language. I have written a code for cloudstack api request and signature generation using hmac to authenticate the user account. here the command is 'listzones'. The output will be in xml shwing the list of zones available in the ...</description>
			<content:encoded><![CDATA[ <p>Do anyone here knows flex builder?<br />
I'm a beginner in this language. I have written a code for cloudstack api request and signature generation using hmac to authenticate the user account. here the command is 'listzones'. The output will be in xml shwing the list of zones available in the cloudstack i have installed. No error is showing while compiling. But when i run, the browser opens blank. The url is correct, ie it includes alla the commands and parameters and also the signature is genetated. I can see it in the url.But the orginal output is xml command it is not showing. the page is simply left blank. Can anyone help me?</p>

<p>the url generated will like as below:</p>

<p><a href="http://10.176.14.26:8080/client/api?apiKey=Qo9Qwfatwz9ARB328Btn9PftzL2Cf5LOWd8OFyJmiM513tpTIm-zKxJoWkWqf353Df397xcLdKXGk8_JO8nM3Q&amp;command=listZones&amp;signature=xmSZCr03SoBMgG%2Fr80tQB5n1RYY%3D" rel="nofollow">http://10.176.14.26:8080/client/api?apiKey=Qo9Qwfatwz9ARB328Btn9PftzL2Cf5LOWd8OFyJmiM513tpTIm-zKxJoWkWqf353Df397xcLdKXGk8_JO8nM3Q&amp;command=listZones&amp;signature=xmSZCr03SoBMgG%2Fr80tQB5n1RYY%3D</a></p>

<p>The signature generated may vary each time.</p>

<p>The code is as follows.</p>

<pre><code class="language-js">&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;s:Application xmlns:fx="<a href="http://ns.adobe.com/mxml/2009" rel="nofollow">http://ns.adobe.com/mxml/2009</a>" 
   xmlns:s="library://ns.adobe.com/flex/spark" 
   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:ns1="*"&gt;
&lt;fx:Declarations&gt;
&lt;!-- Place non-visual elements (e.g., services, value objects) here --&gt;
&lt;/fx:Declarations&gt;
&lt;fx:Script&gt;
&lt;![CDATA[
import com.adobe.crypto.HMAC;
import com.adobe.crypto.SHA1;
import com.adobe.utils.StringUtil;
import flash.net.navigateToURL;
import mx.controls.Alert;
import mx.utils.Base64Encoder;
import mx.utils.StringUtil;
private var urlAPI:String;
private var commandString:String;
private var apiKey:String;
private var apiKeyString:String;
private var secretKey:String = "-kgkBuBUrGFeIC4gUvngSK_3Ypmi7fuF8XdVXIusnyyiEP2YUcG3FnPUGJGy3rp3Bw5ZNnqgS-9tIfyV1QnK1g";
private var signature:String;
private var urlRequestString:String
[Bindable]
private var encryptedString:String = "";
[Bindable]
private var encryptedByteArray:String = "";
private function generateRequest():void
{
    urlAPI = "<a href="http://10.176.14.26/client/api" rel="nofollow">http://10.176.14.26/client/api</a>";
    commandString = "command=listZones";
    apiKey = "";
    apiKey = encodeURI(apiKey.toLowerCase());
    apiKeyString = "apiKey=" + apiKey;
    signature = generateSignature();
    urlRequestString = urlAPI +"?"+commandString+"&amp;"+apiKeyString+"&amp;signature="+signature;// "command=listZones&amp;apiKey=Qo9Qwfatwz9ARB328Btn9PftzL2Cf5LOWd8OFyJmiM513tpTIm-zKxJoWkWqf353Df397xcLdKXGk8_JO8nM3Q&amp;signature=Lxx1DM40AjcXU%2FcaiK8RAP0O1hU%3D";
    var urlRequestObj:URLRequest = new URLRequest(urlRequestString);
    navigateToURL(urlRequestObj,"_blank");
}
private function generateSignature():String
{
    var tempSignature:String = apiKey +"&amp;"+commandString;
    tempSignature = tempSignature.toLowerCase();
    return hashMessage(tempSignature,secretKey);
}
private function hashMessage(message:String, secretKey:String):String
{           
    var algorithm:Object = SHA1;
    var encoder:Base64Encoder = new Base64Encoder();
    if(message.length &gt; 0)
    {
        encryptedString = HMAC.hash(secretKey,message,algorithm);
        var messageBytes:ByteArray = new ByteArray();
        messageBytes.writeMultiByte(message,"utf-8");
        encryptedByteArray = HMAC.hashBytes(getByteArray(),messageBytes,algorithm);
        encoder.encode(encryptedByteArray); 
    }
    //Alert.show(encoder.toString());
    return encoder.toString();      
}
private var byteArray:ByteArray;
[Bindable("dummyEventType")]
private function  getByteArray():ByteArray
{
    if(!byteArray)
    {
        byteArray = new ByteArray();
        byteArray.writeMultiByte(secretKey,"utf-8");
        //byteArray.
    }
    return byteArray;
}   
]]&gt;
 &lt;/fx:Script&gt;
&lt;s:Button x="102" y="64" label="Button" click="generateRequest()"/&gt;
&lt;ns1:CloudInterfaceComp x="196" y="213"&gt;
&lt;/ns1:CloudInterfaceComp&gt;
 &lt;/s:Application&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/31">Web Development</category>
			<dc:creator>siss</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/threads/454988/flex-signature-generation-using-hmac-sha-1</guid>
		</item>
				<item>
			<title>ARRAY</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454986/array</link>
			<pubDate>Mon, 20 May 2013 14:33:41 +0000</pubDate>
			<description>Write a complete C program that asks the user to input two sets of integer numbers each of size 5 and store them in two arrays A and B. The program then outputs the elements that are common to both sets (available in both A and B). If there are ...</description>
			<content:encoded><![CDATA[ <p>Write a complete C program that asks the user to input two sets of integer numbers each of size 5 and store them in two arrays A and B. The program then outputs the elements that are common to both sets (available in both A and B). If there are no common elements, the program should output the message "No common elements ".</p>

<p>An example of the program RUN:<br />
Enter the values of A[0] and B[0] &gt;2 4<br />
Enter the values of A[1] and B[1] &gt;1 6<br />
Enter the values of A[2] and B[2] &gt;5 2<br />
Enter the values of A[3] and B[3] &gt;7 5<br />
Enter the values of A[4] and B[4] &gt;6 3<br />
The result is:<br />
2<br />
5<br />
6</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>saad.taj1</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454986/array</guid>
		</item>
				<item>
			<title>linux password msg</title>
			<link>http://www.daniweb.com/hardware-and-software/linux-and-unix/threads/454985/linux-password-msg</link>
			<pubDate>Mon, 20 May 2013 13:49:25 +0000</pubDate>
			<description>i have implemented new passwd policy and forced users to change their password the proble is they dont know what they should insert as new password. i want to display a message like this one &quot;passwd minimum length 8, must have 1 upper, 1 lower, 1 digit) or something like ...</description>
			<content:encoded><![CDATA[ <p>i have implemented new passwd policy and forced users to change their password the proble is they dont know what they should insert as new password. i want to display a message like this one "passwd minimum length 8, must have 1 upper, 1 lower, 1 digit) or something like this instead of "BAD PASSWRD: its WAY too short" ... any help will be appreciated<br />
tnx in advance</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/linux-and-unix/12">Linux and Unix</category>
			<dc:creator>moe2</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/linux-and-unix/threads/454985/linux-password-msg</guid>
		</item>
				<item>
			<title>Return value of custom property using VBA in Word 2007</title>
			<link>http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454984/return-value-of-custom-property-using-vba-in-word-2007</link>
			<pubDate>Mon, 20 May 2013 13:14:09 +0000</pubDate>
			<description>Hello, How do I return the value of a custom property in Word 2007 using VBA? Depending on the custom property, I also need to automatically check a checkbox using VBA. Thanks!</description>
			<content:encoded><![CDATA[ <p>Hello,</p>

<p>How do I return the value of a custom property in Word 2007 using VBA? Depending on the custom property, I also need to automatically check a checkbox using VBA.</p>

<p>Thanks!</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/visual-basic-4-5-6/4">Visual Basic 4 / 5 / 6</category>
			<dc:creator>Chan2013</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454984/return-value-of-custom-property-using-vba-in-word-2007</guid>
		</item>
				<item>
			<title>Time zone</title>
			<link>http://www.daniweb.com/web-development/php/threads/454983/time-zone</link>
			<pubDate>Mon, 20 May 2013 13:13:14 +0000</pubDate>
			<description>Guys, please let me know is anybody aware of the below doubt. php taking hosting server date and time but am in need to find the client time and date who accesing the site. otherwise how to find the date &amp; time in server time zone .</description>
			<content:encoded><![CDATA[ <p>Guys,</p>

<p>please let me know is anybody aware of the below doubt.</p>

<p>php taking hosting server date and time but am in need to find the client time and date who accesing the site.</p>

<p>otherwise how to find the date &amp; time in server time zone .</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>varunsara</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454983/time-zone</guid>
		</item>
				<item>
			<title>read problem in c</title>
			<link>http://www.daniweb.com/software-development/c/threads/454982/read-problem-in-c</link>
			<pubDate>Mon, 20 May 2013 13:04:40 +0000</pubDate>
			<description>hi all; i have run this code and the first read and write work correctly. but and the second one is missed. the output log is: freez@JALALI:~$ ./a salam8a okok2freez@JALALI:~$ #include &lt;stdio.h&gt; int main() { write(1,&quot;salam&quot;,5); char a[2]; char b[5]; read(0,a,2); if(a[0]=='8') {write(1,&quot;ok&quot;,2); read(0,b,5); write(1,&quot;ok2&quot;,3); } return 0; }</description>
			<content:encoded><![CDATA[ <p>hi all;</p>

<p>i have run this code and the first read and write work correctly. but and the second one is missed.<br />
the output log is:</p>

<p>freez@JALALI:~$ ./a<br />
salam8a<br />
okok2freez@JALALI:~$</p>

<pre><code class="language-c">#include &lt;stdio.h&gt;

int main()
{
write(1,"salam",5);
char a[2];
char b[5];
read(0,a,2);
if(a[0]=='8')
{write(1,"ok",2);
read(0,b,5);
write(1,"ok2",3);
}
return 0;
}
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/c/118">C</category>
			<dc:creator>ferizhandi</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/c/threads/454982/read-problem-in-c</guid>
		</item>
				<item>
			<title>Assigment Problem-Hungarian Algorithm</title>
			<link>http://www.daniweb.com/web-development/php/threads/454981/assigment-problem-hungarian-algorithm</link>
			<pubDate>Mon, 20 May 2013 12:51:30 +0000</pubDate>
			<description>I am working on an Assignment Problem, a part of Operation Research but the problem am facing is how to assign the task to the agents and then the anomaly where the algorithm has to repeat it self when it is not able to perform the assignment.</description>
			<content:encoded><![CDATA[ <p>I am working on an Assignment Problem, a part of Operation Research but the problem am facing is how to assign the task to the agents and then the anomaly where the algorithm has to repeat it self when it is not able to perform the assignment.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>Nero Basanta</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454981/assigment-problem-hungarian-algorithm</guid>
		</item>
				<item>
			<title>which consume more time : return STRUCT or return through call by reference</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454980/which-consume-more-time-return-struct-or-return-through-call-by-reference</link>
			<pubDate>Mon, 20 May 2013 12:09:39 +0000</pubDate>
			<description>please i want to return multiple values in c++ , and i have this peace of struct struct returns { int row_locs,col_locs; int row_descriptors,col_descriptors; double **locs; double **descriptors; }; and i have this pease of call by reference void returns (int &amp;row_locs,int &amp;col_locs,int &amp;row_descriptors,int &amp;col_descriptors,double **locs, double **descriptors){ } the ...</description>
			<content:encoded><![CDATA[ <p>please i want to return multiple values in c++ ,</p>

<p>and i have this peace of struct</p>

<pre><code class="language-cpp">struct returns {
int row_locs,col_locs;
int row_descriptors,col_descriptors;
double **locs;
double **descriptors;
};
</code></pre>

<p>and i have this pease of call by reference</p>

<pre><code class="language-cpp"> void returns (int &amp;row_locs,int &amp;col_locs,int &amp;row_descriptors,int &amp;col_descriptors,double  **locs, double  **descriptors){
 }
</code></pre>

<p>the question is</p>

<p>what doesn't consume more time struct or call by reference ??</p>

<p>Thanks in advanced</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>maml</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454980/which-consume-more-time-return-struct-or-return-through-call-by-reference</guid>
		</item>
				<item>
			<title>Draw phases of the moon On a form</title>
			<link>http://www.daniweb.com/software-development/csharp/code/454979/draw-phases-of-the-moon-on-a-form</link>
			<pubDate>Mon, 20 May 2013 11:13:14 +0000</pubDate>
			<description>Lately, I was reading [this snippet](http://www.daniweb.com/software-development/python/code/453788/moon-phase-at-a-given-date-python) by vegaseat. I thought, why not do it in C#? But I would also like to add lattitude and logitude in the celestial calculations and draw a picture of the moon at that moment and location. Now the calculations can get a bit involved ...</description>
			<content:encoded><![CDATA[ <p>Lately, I was reading <a href="http://www.daniweb.com/software-development/python/code/453788/moon-phase-at-a-given-date-python" rel="nofollow">this snippet</a> by vegaseat. I thought, why not do it in C#? But I would also like to add lattitude and logitude in the celestial calculations and draw a picture of the moon at that moment and location. Now the calculations can get a bit involved but are doable. So first I did a little try out about the drawing of a moon phase picture. Code for the main drawing method is given here. Just call it from a Paint event. A litte project file for a test app is included in a zip file as is a picture of how it looks.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>ddanbe</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/code/454979/draw-phases-of-the-moon-on-a-form</guid>
		</item>
				<item>
			<title>Complete AMD Gaming rig</title>
			<link>http://www.daniweb.com/hardware-and-software/threads/454978/complete-amd-gaming-rig</link>
			<pubDate>Mon, 20 May 2013 11:01:08 +0000</pubDate>
			<description>I have decided to make this rig. Here's my wishlist: http://www.amazon.com/gp/registry/wishlist/IOVE5X6Q4M85/ref=topnav_lists_1 I want a budget gaming PC and I love the performance of AMD at budget. So I guess I'll keep it approximately $600. CPU: AMD FX6300 GPU: Powercolor ATI Radeon HD 7770 1GB DDR5 RAM: Corsair Vengeance 8GB (2 ...</description>
			<content:encoded><![CDATA[ <p>I have decided to make this rig. Here's my wishlist: <a href="http://www.amazon.com/gp/registry/wishlist/IOVE5X6Q4M85/ref=topnav_lists_1" rel="nofollow">http://www.amazon.com/gp/registry/wishlist/IOVE5X6Q4M85/ref=topnav_lists_1</a></p>

<p>I want a budget gaming PC and I love the performance of AMD at budget. So I guess I'll keep it approximately $600.</p>

<p>CPU: AMD FX6300<br />
GPU: Powercolor ATI Radeon HD 7770 1GB DDR5<br />
RAM: Corsair Vengeance 8GB (2 x 4GB)<br />
Mobo: Gigabyte GA-970A<br />
HDD: Seagate Barracuda 1TB<br />
PSU: Corsair Builder Series CX 600Watt<br />
ODD: Asus internal 24x SATA DRW-24B3ST/BLK​/G (Black)<br />
Cab: Thermaltake V3 Black AMD Gaming Mid tower</p>

<p><strong>Please rate this out of 100.</strong></p>

<p>Q1. Will this have any bottleneck issues?<br />
Q2. Will this run games like Crysis 1,2,3, Mafia 2, Battlefield 3, Assasins Creed 3, GTA IV with ENB series, Halo series, Blur, Dirt 3, NFS MW2, Call Of Duty Black Ops 2, NFS The Run etc. in 1280 x 1024 resolution in HD in highest settings?<br />
Q3. Amazon.com says that shipping is free. Does that mean that the customs and duties will also not be charged? So price payed by me will be exactly the same as on the product page?</p>

<p>Awaiting answers for the above questions. Thank you in advance.</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/454978/complete-amd-gaming-rig</guid>
		</item>
				<item>
			<title>how to promotemy blog</title>
			<link>http://www.daniweb.com/internet-marketing/search-engine-optimization/threads/454977/how-to-promotemy-blog</link>
			<pubDate>Mon, 20 May 2013 10:59:42 +0000</pubDate>
			<description>hello i want to promote my blog but i don't know how to promote which activities i do</description>
			<content:encoded><![CDATA[ <p>hello i want to promote my blog but i don't know how to promote which activities i do</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/internet-marketing/search-engine-optimization/45">Search Engine Optimization</category>
			<dc:creator>spyindiarahul</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/internet-marketing/search-engine-optimization/threads/454977/how-to-promotemy-blog</guid>
		</item>
				<item>
			<title>Simple question</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454976/simple-question</link>
			<pubDate>Mon, 20 May 2013 10:55:31 +0000</pubDate>
			<description>This program is to calculate commission and this is the pseudo I wrote for it. Tell me if I'm right. 1 Declare variables 2 get sales 3 calculate if sale &lt; 1500 Then commision= sale * 0,02 else commision= sale * 0,04 4 Dispaly commision</description>
			<content:encoded><![CDATA[ <p>This program is to calculate commission and this is the pseudo I wrote for it. Tell me if I'm right.<br />
1 Declare variables<br />
2 get sales<br />
3 calculate<br />
if sale &lt; 1500 Then<br />
commision= sale * 0,02<br />
else<br />
commision= sale * 0,04<br />
4 Dispaly commision</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/454976/simple-question</guid>
		</item>
				<item>
			<title>Morphological analysis of english verbs with python</title>
			<link>http://www.daniweb.com/software-development/python/threads/454975/morphological-analysis-of-english-verbs-with-python</link>
			<pubDate>Mon, 20 May 2013 10:46:42 +0000</pubDate>
			<description>i need small sample code using python which performs english verbs morphological analysis. Pls some body there, can you help your bro here?</description>
			<content:encoded><![CDATA[ <p>i need small sample code using python which performs english verbs morphological analysis. Pls some body there, can you help your bro here?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/python/114">Python</category>
			<dc:creator>derejetaffese</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/python/threads/454975/morphological-analysis-of-english-verbs-with-python</guid>
		</item>
				<item>
			<title>Globalization on Master Page</title>
			<link>http://www.daniweb.com/web-development/aspnet/threads/454974/globalization-on-master-page</link>
			<pubDate>Mon, 20 May 2013 10:39:34 +0000</pubDate>
			<description>Hi all, My problem is this, i want to do the globalization inside the master page, but not having luck, it works fine in the page but not in the master page.</description>
			<content:encoded><![CDATA[ <p>Hi all,</p>

<p>My problem is this,</p>

<p>i want to do the globalization inside the master page, but not having luck, it works fine in the page but not in the master page.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/aspnet/18">ASP.NET</category>
			<dc:creator>maxpaine69</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/aspnet/threads/454974/globalization-on-master-page</guid>
		</item>
				<item>
			<title>One of those stupid questions: What is &quot;+=&quot; and &quot;-=&quot;?</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454973/one-of-those-stupid-questions-what-is-and-</link>
			<pubDate>Mon, 20 May 2013 10:23:36 +0000</pubDate>
			<description>Hello This is one of those stupid questions but you gotta ask to be sure What is var h=0; h += 5; var l=0; l -= 5; Is it the same as: var h=0; h = h+ 5; var l=0; l = l- 5; Thanks and sorry for the stupidity</description>
			<content:encoded><![CDATA[ <p>Hello</p>

<p>This is one of those stupid questions but you gotta ask to be sure</p>

<p>What is</p>

<p>var h=0;<br />
h += 5;</p>

<p>var l=0;<br />
l -= 5;</p>

<p>Is it the same as:</p>

<p>var h=0;<br />
h = h+ 5;</p>

<p>var l=0;<br />
l = l- 5;</p>

<p>Thanks and sorry for the stupidity</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>riahc3</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454973/one-of-those-stupid-questions-what-is-and-</guid>
		</item>
				<item>
			<title>grouping data in php page</title>
			<link>http://www.daniweb.com/web-development/php/threads/454972/grouping-data-in-php-page</link>
			<pubDate>Mon, 20 May 2013 10:18:38 +0000</pubDate>
			<description>hi I have created the php report using below code. It works fine. But My problem is to group the data example # Date Code Name Rate Qty Amount# 15.01.2011 0001 Milk 4.01 50 200.50 15.01.2011 0125 Choklet 30.00 10 300.00 15.01.2011 0241 Drink 12.50 12 150.00 16.01.2011 5461 Meat ...</description>
			<content:encoded><![CDATA[ <p>hi<br />
I have created the php report using below code. It works fine. But My problem is to group the data<br />
example</p>

<pre><code># Date          Code   Name       Rate  Qty  Amount# 
 15.01.2011     0001   Milk       4.01  50    200.50
 15.01.2011     0125   Choklet   30.00  10    300.00
 15.01.2011     0241   Drink     12.50  12    150.00
 16.01.2011     5461   Meat      35.07  10    350.75
 16.01.2011     4587   Fish      17.80   5     89.00
                                    total    1090.25     
</code></pre>

<p>if I take the date range from 15.01.2011 to 16.01.2011,  it shows in php page look like above. But if i select<br />
 the date range as 15.01.2011 to 16.01.2011, i need look like below</p>

<p>Pls help me</p>

<pre><code> # Date          Code   Name       Rate  Qty  Amount# 
 15.01.2011     0001   Milk       4.01  50    200.50
 15.01.2011     0125   Choklet   30.00  10    300.00
 15.01.2011     0241   Drink     12.50  12    150.00
                             subtotal         650.50

 16.01.2011     5461   Meat      35.07  10    350.75
 16.01.2011     4587   Fish      17.80   5     89.00
                             subtotal         439.75 

                             grand total     1090.25 
</code></pre>

<p>it is my code</p>

<pre><code>    `&lt;?php //include '../templete/header.php'; ?&gt;
    &lt;script language="javascript" type="text/javascript"&gt;
     function printFunction(){

     window.print();
     }
    &lt;/script&gt;

    &lt;script language="javascript" type="text/javascript"&gt;

    function PrintGridData() {
        var prtGrid = document.getElementById('&lt;%=txtDocNo%&gt;');
        prtGrid.border = 0;
                            var prtwin = window.open('','PrintGridViewData','left=100,top=100,width=1000,height=1000,tollbar=0,scrollbars=1,status=0,resizable=1');
        prtwin.document.write(prtGrid.outerHTML);
        prtwin.document.close();
        prtwin.focus();
        prtwin.print();
        prtwin.close();
     &lt;/script&gt;

    &lt;table width="100%" align="center" cellpadding="4" cellspacing="1" class=tbl_table"&gt;
      &lt;tr&gt;
        &lt;td class="tbl_header"&gt;SO Date&lt;/td&gt;
        &lt;td class="tbl_header"&gt;MV CODE&lt;/td&gt;
        &lt;td class="tbl_header"&gt;MV NAME&lt;/td&gt;
        &lt;td class="tbl_header"&gt;RATE&lt;/td&gt;
        &lt;td class="tbl_header"&gt;SUPP.QTY&lt;/td&gt;
        &lt;td class="tbl_header"&gt;AMT&lt;/td&gt;
    &lt;/tr&gt;
    &lt;?php 
      if(isset($stmt))
        { 
            while($row = $stmt-&gt;fetch())
        {?&gt;
&lt;tr&gt;
&lt;td class="tbl_content"&gt;&lt;?php echo date("d-m-Y", strtotime($row['SODate']));?&gt;&lt;/td&gt;
  &lt;td class="tbl_content"&gt;&lt;?php echo $row['MVCode'];?&gt;&lt;/td&gt;
  &lt;td class="tbl_content"&gt;&lt;?php echo $row['MVName'];?&gt;&lt;/td&gt;

  &lt;td class="tbl_content_right"&gt;&lt;?php echo number_format($row['Rate'],2) ;?&gt;&lt;/td&gt;
  &lt;td class="tbl_content_right"&gt;&lt;?php echo number_format($row['Qty']) ;?&gt;&lt;/td&gt;
  &lt;td class="tbl_content_right"&gt;&lt;?php echo number_format($row['BalAmt'],2) ;?&gt;&lt;/td&gt;
  &lt;/tr&gt;

&lt;?php 
    $balamt+=$row['BalAmt'];
    $qty+=$row['Qty'];

}}?&gt; 

    &lt;tr&gt;&lt;td colspan="9"&gt;&lt;hr /&gt;&lt;/tr&gt;

    &lt;tr&gt;  

  &lt;td colspan="5"&gt;&lt;/td&gt;
  &lt;td class="tbl_content_total"&gt;  &lt;?php echo number_format($qty);?&gt;&lt;/td&gt;
  &lt;td class="tbl_content_total"&gt;  &lt;?php echo number_format($rtnqty);?&gt;&lt;/td&gt;
  &lt;td class="tbl_content_total"&gt;  &lt;?php echo number_format($balqty);?&gt;&lt;/td&gt;
  &lt;td class="tbl_content_total"&gt;  &lt;?php echo number_format($balamt,2);?&gt;&lt;/td&gt;

    &lt;/tr&gt;
    &lt;/table&gt;


    &lt;?php unset($dbh); unset($stmt); ?&gt;

    &lt;?php
    include '../templete/footer.php';
    ?&gt;
</code></pre>

<p>'<br />
Regards</p>

<p>Maideen</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>Maideen</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454972/grouping-data-in-php-page</guid>
		</item>
				<item>
			<title>Hover popup that appears pointing to a button then disappears</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454970/hover-popup-that-appears-pointing-to-a-button-then-disappears</link>
			<pubDate>Mon, 20 May 2013 09:58:23 +0000</pubDate>
			<description>Hello How can a small (I imagine jQuery UI popup) popup hover over a page then disappear after x seconds?</description>
			<content:encoded><![CDATA[ <p>Hello</p>

<p>How can a small (I imagine jQuery UI popup) popup hover over a page then disappear after x seconds?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>riahc3</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454970/hover-popup-that-appears-pointing-to-a-button-then-disappears</guid>
		</item>
				<item>
			<title>PHP Error</title>
			<link>http://www.daniweb.com/web-development/php/threads/454969/php-error</link>
			<pubDate>Mon, 20 May 2013 09:46:00 +0000</pubDate>
			<description>What does the PHP error ‘Parse error in PHP – unexpected T_variable at line x’ means?</description>
			<content:encoded><![CDATA[ <p>What does the PHP error ‘Parse error in PHP – unexpected T_variable at line x’ means?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>mohammed.ismail</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454969/php-error</guid>
		</item>
				<item>
			<title>PHP Thread</title>
			<link>http://www.daniweb.com/web-development/php/threads/454968/php-thread</link>
			<pubDate>Mon, 20 May 2013 09:43:49 +0000</pubDate>
			<description>How to run the interactive PHP shell from the command line interface?</description>
			<content:encoded><![CDATA[ <p>How to run the interactive PHP shell from the command line interface?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>mohammed.ismail</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454968/php-thread</guid>
		</item>
				<item>
			<title>More information about String immutable</title>
			<link>http://www.daniweb.com/software-development/java/threads/454967/more-information-about-string-immutable</link>
			<pubDate>Mon, 20 May 2013 09:37:29 +0000</pubDate>
			<description>immutable objects cannot be altered,whereas in line 3 x contains xyzabc. I want to know what exactly is happening with the string object. Thanks in advance</description>
			<content:encoded><![CDATA[ <p>immutable objects cannot be altered,whereas in line 3 x contains xyzabc.</p>

<p>I want to know what exactly is happening with the string object. Thanks in advance</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>phani1092</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454967/more-information-about-string-immutable</guid>
		</item>
				<item>
			<title>help : how to store images on access database for vb6</title>
			<link>http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454965/help-how-to-store-images-on-access-database-for-vb6</link>
			<pubDate>Mon, 20 May 2013 09:21:27 +0000</pubDate>
			<description>help guys, i need to know how to add images and video files (if its possible or just its file path) on access database to be retrieve in vb6 with every images and videos filename included (can be displayed on a separate label for example)</description>
			<content:encoded><![CDATA[ <p>help guys, i need to know how to add images and video files (if its possible or just its file path) on access database to be retrieve in vb6 with every images and videos filename included (can be displayed on a separate label for example)</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/visual-basic-4-5-6/4">Visual Basic 4 / 5 / 6</category>
			<dc:creator>raizuke.blademaster</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454965/help-how-to-store-images-on-access-database-for-vb6</guid>
		</item>
				<item>
			<title>Wifi setup&gt;&gt;I need help(Recommendations)</title>
			<link>http://www.daniweb.com/hardware-and-software/networking/threads/454964/wifi-setupi-need-helprecommendations</link>
			<pubDate>Mon, 20 May 2013 08:38:11 +0000</pubDate>
			<description>I am about to set up a wifi network that would run for about 5km and would enable about 300 users to connect for highspeed internet access. please i need recommendation on the type of equipmenst to use and the amount of bandwidth to purchas I will be very grateful ...</description>
			<content:encoded><![CDATA[ <p>I am about to set up a wifi network that would run for about 5km and would enable about 300 users to connect for highspeed internet access. please i need recommendation on the type of equipmenst to use and the amount of bandwidth to purchas I will be very grateful if anybody can help me.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/networking/13">Networking</category>
			<dc:creator>xclusivekelly</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/networking/threads/454964/wifi-setupi-need-helprecommendations</guid>
		</item>
				<item>
			<title>Advertising Appeal - Masters Thesis / Research Paper</title>
			<link>http://www.daniweb.com/internet-marketing/advertising-sales-strategies/threads/454963/advertising-appeal-masters-thesis-research-paper</link>
			<pubDate>Mon, 20 May 2013 08:26:46 +0000</pubDate>
			<description> # Need your help! - Masters thesis / research paper # ## Hi there, ## within the final stage of my masters thesis I need to conduct a survey concerning &quot;Advertising Appeal for Corporate Websites&quot;. I would appreciate your participation in my online survey/questionnaire. The reason for this survey is ...</description>
			<content:encoded><![CDATA[ <h1>Need your help! - Masters thesis / research paper</h1>

<h2>Hi there,</h2>

<p>within the final stage of my masters thesis I need to conduct a survey concerning "Advertising Appeal for Corporate Websites". I would appreciate your participation in my online survey/questionnaire.<br />
The reason for this survey is to investigate how complex a website has to be to be most attractive to a customer/user. It would be very nice if you attend to this survey!</p>

<h2>Please, just follow the link down below:</h2>

<p><a href="http://mls.wiwi.tu-dresden.de/websites" rel="nofollow">http://mls.wiwi.tu-dresden.de/websites</a></p>

<p>Of course your data will be taken very confidential and no inferences will link to you. the data will be used only for private and scientific purposed for sake of the masters thesis. As well all data is received totally anonymously!!!</p>

<p>Thank you for your support.</p>

<p>Best regards<br />
Fabian Schwarz<br />
Dresden University of Technology</p>

<p>PS:<br />
If you have any questions or concerns about this survey, please do not hesitate to contact me - fabian.schwarz1@mailbox.tu-dresden.de</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/internet-marketing/advertising-sales-strategies/30">Advertising Sales Strategies</category>
			<dc:creator>Fabian_S</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/internet-marketing/advertising-sales-strategies/threads/454963/advertising-appeal-masters-thesis-research-paper</guid>
		</item>
				<item>
			<title>Image Slider Help</title>
			<link>http://www.daniweb.com/web-development/php/threads/454962/image-slider-help</link>
			<pubDate>Mon, 20 May 2013 08:26:25 +0000</pubDate>
			<description>Dear Friends, I've generated Image Slider using WOWSlider. Now I wants to add tooltip to that Image Slider. It's mean, when user hover mouse on the each slider each tooltip should be displayed. How can I do it?? Please help me friends.</description>
			<content:encoded><![CDATA[ <p>Dear Friends,<br />
I've generated Image Slider using WOWSlider.<br />
Now I wants to add tooltip to that Image Slider.<br />
It's mean, when user hover mouse on the each slider each tooltip should be displayed.<br />
How can I do it??<br />
Please help me friends.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>Shalomd</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454962/image-slider-help</guid>
		</item>
				<item>
			<title>Realloc() and Free()</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454961/realloc-and-free</link>
			<pubDate>Mon, 20 May 2013 08:14:36 +0000</pubDate>
			<description>What is the dfference between realloc() and free()?</description>
			<content:encoded><![CDATA[ <p>What is the dfference between realloc() and free()?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>sushants</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454961/realloc-and-free</guid>
		</item>
				<item>
			<title>Traceability System</title>
			<link>http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454960/traceability-system</link>
			<pubDate>Mon, 20 May 2013 08:12:29 +0000</pubDate>
			<description>hi..i have new project. PRODUCTION TRACEABILITY SYSTEM.it will trace the materials from one process to another up to shipment.this will also uses barcode scanner and barcode printer. Do you have any idea how can i start?? Thank You.</description>
			<content:encoded><![CDATA[ <p>hi..i have new project.<br />
PRODUCTION TRACEABILITY SYSTEM.it will trace the materials from one process<br />
to another up to shipment.this will also uses barcode scanner and barcode printer.</p>

<p>Do you have any idea how can i start??</p>

<p>Thank You.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/visual-basic-4-5-6/4">Visual Basic 4 / 5 / 6</category>
			<dc:creator>newbie26</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454960/traceability-system</guid>
		</item>
				<item>
			<title>Comparision gives false</title>
			<link>http://www.daniweb.com/software-development/java/threads/454959/comparision-gives-false</link>
			<pubDate>Mon, 20 May 2013 07:34:16 +0000</pubDate>
			<description>hi I have method which accept file and want to compare with string for the above mention reason i did System.out.println(targetFolder.getAbsoluteFile().equals(listPropertyValue[1]/*which is a string */)+&quot;\n&quot;+targetFolder.getAbsoluteFile()+&quot;\n&quot;+listPropertyValue[1]); the value of listPropertyValue[1] and targetFolder.getAbsoluteFile() same value but it gives false. Please tell me where i am wrong Thnks</description>
			<content:encoded><![CDATA[ <p>hi<br />
I have method which accept file and want to compare with string<br />
for the above mention reason i did</p>

<pre><code class="language-java">System.out.println(targetFolder.getAbsoluteFile().equals(listPropertyValue[1]/*which is a string */)+"\n"+targetFolder.getAbsoluteFile()+"\n"+listPropertyValue[1]);
</code></pre>

<p>the value of listPropertyValue[1] and targetFolder.getAbsoluteFile() same value but it gives false.<br />
Please tell me where i am wrong<br />
Thnks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>bhallarahul</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454959/comparision-gives-false</guid>
		</item>
				<item>
			<title>Copy directory</title>
			<link>http://www.daniweb.com/software-development/java/threads/454958/copy-directory</link>
			<pubDate>Mon, 20 May 2013 06:55:52 +0000</pubDate>
			<description>Hi I want create a program in which folder(level 0) is containing number of subfolder(Level 1) and each folder(subfolder Level 1) contain file number of file and subFolder (level 2). now i want to copy folder(level 0) but from subfolder (level1) want sepecfic file and subfolder(level 2) rest want to ...</description>
			<content:encoded><![CDATA[ <p>Hi<br />
I want create a program in which folder(level 0) is containing number of subfolder(Level 1) and each folder(subfolder Level 1) contain file number of file and subFolder (level 2).<br />
now i want to copy folder(level 0) but from subfolder (level1) want sepecfic file and subfolder(level 2) rest want to remove<br />
Is it possible to do that</p>

<p>please give me suggestion</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>bhallarahul</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454958/copy-directory</guid>
		</item>
				<item>
			<title>Get data between any two tags</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454957/get-data-between-any-two-tags</link>
			<pubDate>Mon, 20 May 2013 06:37:14 +0000</pubDate>
			<description>sir i want to get data between to tag... example:(showing in my view source) &lt;img class='stat_icon' src='/images/green.png'&gt; **data to be extracted**&lt;/a&gt; or like &lt;input type=hidden name=timestamp value='**data to be extracted**'&gt; for the first example i wrote like: Imports System.Text.RegularExpressions Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ...</description>
			<content:encoded><![CDATA[ <p>sir i want to get data between to tag...<br />
example:(showing in my view source)</p>

<pre><code class="language-vb">&lt;img class='stat_icon' src='/images/green.png'&gt; 
**data to be extracted**&lt;/a&gt;
</code></pre>

<p>or like</p>

<pre><code class="language-vb">&lt;input type=hidden name=timestamp value='**data to be extracted**'&gt;
</code></pre>

<p>for the first example i wrote like:</p>

<pre><code class="language-vb">Imports System.Text.RegularExpressions
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim requestt As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("my desired link")
            Dim responsee As System.Net.HttpWebResponse = requestt.GetResponse()
            Dim sr As System.IO.StreamReader = New System.IO.StreamReader(responsee.GetResponseStream())
            Dim sourcecodee As String = sr.ReadToEnd()
            Dim pattern1 As String = "&lt;img class='stat_icon' src='/images/red.png'&gt; " &amp; _
"(.*)&lt;/a&gt;"
            Dim m As Match = Regex.Match(sourcecodee, pattern1)
            If m.Success Then
                MsgBox(m.Groups(1).Value)
            End If
End Sub
</code></pre>

<p>but nothing showing or appearning as msgbox.</p>

<p>please solve it and discus it with example as much as u can.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>dhimanbiswas4u</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454957/get-data-between-any-two-tags</guid>
		</item>
				<item>
			<title>2d dynmaic array</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454956/2d-dynmaic-array</link>
			<pubDate>Mon, 20 May 2013 06:23:50 +0000</pubDate>
			<description>Hi there, What is the easiest way to declare and initialize 2d dynamic array in class in C++ ?? Please tell me the easiest way, I have used 2d dynamic array in Java. Thanks !</description>
			<content:encoded><![CDATA[ <p>Hi there,</p>

<p>What is the easiest way to declare and initialize 2d dynamic array in class in C++ ?? Please tell me the easiest way, I have used 2d dynamic array in Java. Thanks !</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>new_developer</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454956/2d-dynmaic-array</guid>
		</item>
				<item>
			<title>eCommerce</title>
			<link>http://www.daniweb.com/internet-marketing/ecommerce/threads/454955/ecommerce</link>
			<pubDate>Mon, 20 May 2013 06:11:05 +0000</pubDate>
			<description>How eCommerce works?</description>
			<content:encoded><![CDATA[ <p>How eCommerce works?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/internet-marketing/ecommerce/46">eCommerce</category>
			<dc:creator>chrispitt</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/internet-marketing/ecommerce/threads/454955/ecommerce</guid>
		</item>
				<item>
			<title>VB.Net</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454954/vb.net</link>
			<pubDate>Mon, 20 May 2013 06:02:32 +0000</pubDate>
			<description>What is the difference between VB and VB.Net?</description>
			<content:encoded><![CDATA[ <p>What is the difference between VB and VB.Net?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>chrispitt</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454954/vb.net</guid>
		</item>
				<item>
			<title>Comparison Of The Most Popular PHP Frameworks: Yii vs Zend vs Code Igniter</title>
			<link>http://www.daniweb.com/web-development/threads/454953/comparison-of-the-most-popular-php-frameworks-yii-vs-zend-vs-code-igniter</link>
			<pubDate>Mon, 20 May 2013 05:59:47 +0000</pubDate>
			<description>It is not easy to make the choice of a PHP framework. A lot goes into choosing the proper PHP framework especially if you want to use it on a long term basis. A wrong choice of PHP framework may lead to certain disadvantages, like, increased development time, the need ...</description>
			<content:encoded><![CDATA[ <p>It is not easy to make the choice of a PHP framework. A lot goes into choosing the proper PHP framework especially if you want to use it on a long term basis. A wrong choice of PHP framework may lead to certain disadvantages, like,  increased development time, the need for hiring more skilled staff which may not be easy to find. Let us take a look at Yii vs Zend vs Code Igniter.</p>

<p>Let us start with Yii which is a framework that perfectly fits well between the other two frameworks i.e Zend and Code Igniter. It is quite easy to learn and implement even if you do not have much experience in PHP. It is larger than the Code Igniter framework and comparatively smaller that the Zend framework. It requires less code in order to get the things done along with offering you a number of useful features.</p>

<p>Zend framework is a good framework since it is properly designed and allows you to do stuff without having to learn any new language. But it requires a skilled web developer to write code even for a simple task. It is a bit slow without opcode caching. It is also complex and quite difficult for those who are not acquainted with the various patterns relating to the enterprise application architecture. Zend framework is highly complex and that is the reason why it is not a preferred choice.</p>

<p>Now regarding Code Igniter framework there are many things about it that people fall in for, like its simplicity and completeness. It is undoubtedly an easy framework that does not require any unnecessary codes like Zend framework. But it does lack a few things when there is a need to develop some highly complex applications unlike the Yii and Zend frameworks.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/31">Web Development</category>
			<dc:creator>probytes</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/threads/454953/comparison-of-the-most-popular-php-frameworks-yii-vs-zend-vs-code-igniter</guid>
		</item>
				<item>
			<title>notification box like facebooks</title>
			<link>http://www.daniweb.com/web-development/threads/454952/notification-box-like-facebooks</link>
			<pubDate>Mon, 20 May 2013 05:55:18 +0000</pubDate>
			<description>hi all how can I make a widget which gets user's update and expands if the user clicks on it just like the notification bar on facebook. thanks guys.</description>
			<content:encoded><![CDATA[ <p>hi all how can I make a widget which gets user's update and expands if the user clicks on it just like the notification bar on facebook. thanks guys.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/31">Web Development</category>
			<dc:creator>raminrahimikamal</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/threads/454952/notification-box-like-facebooks</guid>
		</item>
				<item>
			<title>i7 or FX-8350 guys??? A call to all computer engineers, please..</title>
			<link>http://www.daniweb.com/hardware-and-software/pc-hardware/motherboards-cpus-and-ram/threads/454951/i7-or-fx-8350-guys-a-call-to-all-computer-engineers-please</link>
			<pubDate>Mon, 20 May 2013 04:44:48 +0000</pubDate>
			<description>I've been given a six-pages report to make, and the task is: **Imagine you're a computer engineer who is working on data processing, software development of gaming and user’s application, which requires computer with high-end processing power. Which processors (i7 OR FX-8350) is going to be of your choice for ...</description>
			<content:encoded><![CDATA[ <p>I've been given a six-pages report to make, and the task is:</p>

<p>**Imagine you're a computer engineer who is working on data processing, software development of gaming and user’s application, which requires computer with high-end processing power.</p>

<p>Which processors (i7 OR FX-8350) is going to be of your choice for your computer system?</p>

<p>Give the comparison (INCLUDING architecture comparison) of the two CPUs, all the advantages and disadvantages of the processors.**</p>

<p>Hope someone could shed a light on this choice matter, and at least give me a share of opinions with reasons (suggestively in a listed form) of which processor &amp; why would it be your choice.</p>

<p>Please and thanks in advance!</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/pc-hardware/motherboards-cpus-and-ram/104">Motherboards, CPUs and RAM</category>
			<dc:creator>UNDER-18 FG</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/pc-hardware/motherboards-cpus-and-ram/threads/454951/i7-or-fx-8350-guys-a-call-to-all-computer-engineers-please</guid>
		</item>
				<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>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>
			</channel>
</rss>