<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Setting Up Your Development Environment (Beta 2 SDK)</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started/RSS"></atom:link>
	<image>
		<url>http://ak.channel9.msdn.com/ch9/3a32/8b0685ac-5f55-43cc-8764-9efe00713a32/SettingUpDevEnvironment_100_ch9.jpg</url>
		<title>Channel 9 - Setting Up Your Development Environment (Beta 2 SDK)</title>
		<link></link>
	</image>
	<description>Update: Kinect for Window SDK v1 Quickstart Series now Available (Feb 1st)Please use the newly updated Kinect for Windows SDK Quickstart series. The content below will only work with the Beta 2 version of the Kinect for Windows SDK. &amp;nbsp; This video covers how to set up your development environment. You may find it easier to follow along by downloading the Kinect for Windows SDK Quickstarts samples and slides that have been updated for Beta 2 (Nov, 2011). [00:35] Sample Requirements [01:50] Starting the Demo [02:13] Adding References [02:45] Coding4Fun Kinect Library [03:23] Initializing the Kinect Runtime [05:41] Uninitializing the Kinect Runtime Updates for Kinect for Windows SDK Beta 2 (Nov, 2011)The video in the Kinect for Windows SDK has not been updated, but the tutorial below has the following changes: The Microsoft.Research.Kinect DLL version is now 1.0.0.45. The requirements for DirectX samples have been clarified to say that they are only required for C&amp;#43;&amp;#43;. The speech sample requirements have been updated for Beta 2. If you are using an x64 PC, note that you should install both the x86 and x64 Speech Platform Runtime (see Speech samples below). The source code for shipping examples is now in &amp;quot;\Program Files\Microsoft SDKs\Kinect\v1.0 Beta2\Samples\KinectSDKSamples.zip&amp;quot; The Kinect runtime now provides a StatusChanged event that will fire if a Kinect is connected, disconnected, and so forth. See below for a code snippet for how to subscribe and handle the StatusChanged event. For an example on setting up and handling Kinect connect/disconnect events, refer to the ShapeGame sample. For an example&amp;nbsp; on how to show two Kinects at the same time, refer to the SkeletalViewer sample. &amp;nbsp; Task: Download Sample RequirementsSome samples use DirectX and the Microsoft Speech APIs. For these demos to work, you must download the correct pre-requisite software. Kinect for Windows SDK: http://www.kinectforwindows.org Visual Studio: Visual Studio 2010 Express edition of the demo in the appropriate programming language or Visual Studio Professional or higher DirectX Samples (for C&amp;#43;&amp;#43; Skeletal Viewer) Microsoft DirectX&#174; SDK - June 2010 or later version Current runtime for Microsoft DirectX&#174; 9 Speech Samples: For Speech samples: Microsoft Speech Platform Runtime, version 10.2 – select 32-bit if you are running 32-bit Windows. If you have 64-bit Windows, we suggest that you install both the 32-bit and 64-bit runtime. Microsoft Speech Platform - Software Development Kit, version 10.2 – select 32-bit or 64-bit according to your Windows installation Kinect for Windows Runtime Language Pack, version 0.9 &amp;nbsp; Task: Setting up a new Visual Studio 2010 ProjectIn this task, you’ll create a new Visual Studio 2010 project and add references to the correct libraries Start Visual Studio 2010 (Express Editions or higher) Select File –&amp;gt;&amp;nbsp;New Project –&amp;gt;&amp;nbsp;Windows Presentation Foundation and set the name for your project  &amp;nbsp; Add a referenceC# – From the Solution Explorer, right click on References and select Add Reference as shown below  &amp;nbsp; Visual Basic – From the Solution Explorer, right click on the project name and select Add Reference as shown below &amp;nbsp;  Visual Basic / C# – In the Add Reference dialog, switch to the .NET tab, click the Component Name header to sort references alphabetically, then scroll down to select Microsoft.Research.Kinect and click OK. Make sure to select 1.0.0.45.  &amp;nbsp; Add a using statementWithin your project, you can now add a using statement to reference the Kinect namespaces: C# 
using Microsoft.Research.Kinect.Nui;
using Microsoft.Research.Kinect.Audio;
 Visual Basic 
Imports Microsoft.Research.Kinect.Nui
Imports Microsoft.Research.Kinect.Audio
 Optional: Using the Coding4Fun Kinect ToolkitGo to http://c4fkinect.codeplex.com and download the latest version of the Coding4Fun Kinect Toolkit. This library is filled with useful items to help with a variety of tasks, such&amp;nbsp; as converting the data from the Kinect to a data array or Bitmap. Depending on if you are building a WPF or Windows Form application, we have two different DLLs: WPF Applications: use the Coding4Fun.Kinect.Wpf.dll Windows Form Applications: use the Coding4Fun.Kinect.WinForm.dll C# 
// if you&#39;re using WPF
using Coding4Fun.Kinect.Wpf;

// if you&#39;re using WinForms
using Coding4Fun.Kinect.WinForm;
 Visual Basic 
&#39; if you&#39;re using WPF
Imports Coding4Fun.Kinect.Wpf

&#39; if you&#39;re using WinForms
Imports Coding4Fun.Kinect.WinForm
 Initializing and Uninitializing the runtimeFor NUI, we have to initialize and uninitialize the runtime.&amp;nbsp; In our examples, we typically will initialize on the Loaded event on the Window and we&#39;ll uninitialize on the Closed event. Depending on what needs to be done, the Initialize method on the runtime will be tweaked though the concepts stay the same. Create the Window_Loaded eventGo to the properties window (F4), select the MainWindow, select the Events tab, and double click on the Loaded event to create the Window_Loaded event  &amp;nbsp;Initializing the runtimeCreate a new Runtime variable named “nui” outside of the Window_Loaded event. When the Window_Loaded event fires, we will call the SetupKinect method that checks to see if there is at least one Kinect plugged in, and if there is, it uses the first Kinect (0 representing the first Kinect) and initializes the Runtime (more details on that later).&amp;nbsp; C#
//Kinect Runtime
Runtime nui;
private void Window_Loaded(object sender, RoutedEventArgs e)
{
    SetupKinect(); 
    
}
private void SetupKinect()
{
    if (Runtime.Kinects.Count == 0)
    {
        this.Title = &amp;quot;No Kinect connected&amp;quot;;
    }
    else
    {
        //use first Kinect
        nui = Runtime.Kinects[0];
        nui.Initialize(RuntimeOptions.UseColor | RuntimeOptions.UseDepthAndPlayerIndex | RuntimeOptions.UseSkeletalTracking);
    }
}
 Visual Basic
       &#39;Kinect Runtime
        Private nui As Runtime

        Private Sub Window_Loaded(ByVal sender As Object, ByVal e As RoutedEventArgs)
            SetupKinect()
            AddHandler Runtime.Kinects.StatusChanged, AddressOf Kinects_StatusChanged
        End Sub
        Private Sub SetupKinect()
            If Runtime.Kinects.Count = 0 Then
                Me.Title = &amp;quot;No Kinect connected&amp;quot;
            Else
                &#39;use first Kinect
                nui = Runtime.Kinects(0)
                nui.Initialize(RuntimeOptions.UseColor Or RuntimeOptions.UseDepthAndPlayerIndex Or RuntimeOptions.UseSkeletalTracking)
            End If
        End Sub
 &amp;nbsp; Handling multiple KinectsYou can see how many Kinects are connected by getting the count of Kinects as shown in the code below. Note that for multiple Kinects, you can only have one Kinect do skeletal tracking at a time (color and depth camera work for all) and each Kinect needs to be in its own USB hub, otherwise it won’t have enough USB bandwidth. C# [code lang=”csharp”] int KinectCount = Runtime.Kinects.Count; [/code] Visual Basic [code lang=”vb”] Dim KinectCount as Integer = Runtime.Kinects.Count [/code] &amp;nbsp; Handling Kinect Status Change eventsYou can also handle events when the status changes for Kinects that are plugged in. To do this, first register for the StatusChanged event as shown below. When this event fires, it returns a KinectStatus enum with the following possible values: Connected, Error, Disconnected, NotReady, or NotPowered. &amp;nbsp; C# [code lang=”csharp”] Runtime.Kinects.StatusChanged &amp;#43;= new EventHandler&amp;lt;StatusChangedEventArgs&amp;gt;(Kinects_StatusChanged);…void Kinects_StatusChanged(object sender, StatusChangedEventArgs e){&amp;nbsp;&amp;nbsp;&amp;nbsp; string message = &amp;quot;Status Changed: &amp;quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp; switch (e.Status)&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case KinectStatus.Connected:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Connected&amp;quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case KinectStatus.Disconnected:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Disconnected&amp;quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case KinectStatus.Error:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Error&amp;quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case KinectStatus.NotPowered:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Not Powered&amp;quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case KinectStatus.NotReady:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Not Ready&amp;quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; default:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (e.Status.HasFlag(KinectStatus.Error))&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Kinect error&amp;quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp; this.Title = message;} [/code] &amp;nbsp; Visual Basic [code lang=”vb”] AddHandler Runtime.Kinects.StatusChanged, AddressOf Kinects_StatusChanged … Private Sub Kinects_StatusChanged(sender As Object, e As StatusChangedEventArgs)&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim message As String = &amp;quot;Status Changed: &amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp; Select Case e.Status&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Case KinectStatus.Connected&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Connected&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Case KinectStatus.Disconnected&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Disconnected&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Case KinectStatus.[Error]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Error&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Case KinectStatus.NotPowered&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Not Powered&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Case KinectStatus.NotReady&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Not Ready&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Case Else&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If e.Status.HasFlag(KinectStatus.[Error]) Then&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message &amp;#43;= &amp;quot;Kinect error&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Select&amp;nbsp;&amp;nbsp;&amp;nbsp; End Select&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.Title = message End Sub &amp;nbsp; [/code] &amp;nbsp; Setting Runtime OptionsIn the Window_Loaded event, initialize the runtime with the options you want to use. For this example, set RuntimeOptions.UseColor to use the RGB camera: C#
nui.Initialize(RuntimeOptions.UseColor);
 Visual Basic
nui.Initialize(RuntimeOptions.UseColor)
 RuntimeOptions is a Flag enumeration, this means you can set multiple options as parameters in the Initialize method by separating them with the pipe &amp;quot;|&amp;quot; character (the &amp;quot;or&amp;quot; operator) in c# or the &amp;quot;Or&amp;quot; operator in Visual Basic. The example below sets the runtime to use the color camera, a depth camera, and skeletal tracking: C#
nui.Initialize(RuntimeOptions.UseColor | RuntimeOptions.UseDepthAndPlayerIndex | RuntimeOptions.UseSkeletalTracking );
 Visual Basic
nui.Initialize(RuntimeOptions.UseColor Or RuntimeOptions.UseDepthAndPlayerIndex Or RuntimeOptions.UseSkeletalTracking)
 Uninitializing the RuntimeRemember that when you are done using the Kinect Runtime, you should call the Uninitialize method. For a WPF application, you would typically do this in the Windows_Closed event: C#
nui.Uninitialize();
 Visual Basic
nui.Uninitialize()
 </description>
	<link></link>
	<language>en</language>
	<pubDate>Sun, 19 May 2013 16:46:44 GMT</pubDate>
	<lastBuildDate>Sun, 19 May 2013 16:46:44 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Is the Microsoft Kinect Speech Platform not available for download yet or something like that. The link above doesn&#39;t seem to actually be a link and it&#39;s nowhere on the Kinect SDK pages like the SDK sample says.<p>posted by Aaron</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634438578590000000</link>
		<pubDate>Thu, 16 Jun 2011 21:50:59 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634438578590000000</guid>
		<dc:creator>Aaron</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Just a &#34;stupid question&#34;... where should I put the coding4fun files I extracted from the zip file&#63;&#63;&#63; Thanks<p>posted by alex</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634438635020000000</link>
		<pubDate>Thu, 16 Jun 2011 23:25:02 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634438635020000000</guid>
		<dc:creator>alex</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/KinectSDKQuickstarts/Getting-Started#c634438635020000000">alex</a>:It doesn't matter where you put them, if you go to recent files you can browse to them. &nbsp;Once you reference them you should be good to go. &nbsp;If you move them, you might have to re-reference them.</p><p>posted by WendyCzymoch</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634438682350000000</link>
		<pubDate>Fri, 17 Jun 2011 00:43:55 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634438682350000000</guid>
		<dc:creator>WendyCzymoch</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>Does the speech recognition platform work if your system locale and UI language are not US/English?</p><p>posted by Bas</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634438894550000000</link>
		<pubDate>Fri, 17 Jun 2011 06:37:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634438894550000000</guid>
		<dc:creator>Bas</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Uninitialize does not stop the IR projector.<br>How can I stop the IR - projector&#63; Thanks<p>posted by Peter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439076950000000</link>
		<pubDate>Fri, 17 Jun 2011 11:41:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439076950000000</guid>
		<dc:creator>Peter</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Runtime error occurs after adding nui&#58;<br><br>A first chance exception of type &#39;System.Windows.Markup.XamlParseException&#39; occurred in PresentationFramework.dll<br><br>Additional information&#58; &#39;The invocation of the constructor on type &#39;WpfApplication1.MainWindow&#39; that matches the specified binding constraints threw an exception.&#39;<p>posted by Mix</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439347910000000</link>
		<pubDate>Fri, 17 Jun 2011 19:13:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439347910000000</guid>
		<dc:creator>Mix</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/KinectSDKQuickstarts/Getting-Started#c634438894550000000">Bas</a>:&nbsp; The Kinect for Windows Runtime Language Pack (version 0.9) is the acoustic model&nbsp; for the Kinect for Windows SDK. That is optimized for using Kinect as a microphone and is English only. You should be able to use another recognizer that supports multiple languages, but it won't be as optimized as the Kinect Runtime language pack.</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439356480000000</link>
		<pubDate>Fri, 17 Jun 2011 19:27:28 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439356480000000</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/KinectSDKQuickstarts/Getting-Started#c634439347910000000">Mix</a>: Can you send the inner exception? See if you have an option to &quot;Copy Exception details to clipboard&quot; and respond with them!</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439360310000000</link>
		<pubDate>Fri, 17 Jun 2011 19:33:51 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439360310000000</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[I installed SP1 for VS 2010, restarted my system, created a new solution from scratch and no longer receive this error. Thanks.<p>posted by Mix</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439387850000000</link>
		<pubDate>Fri, 17 Jun 2011 20:19:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439387850000000</guid>
		<dc:creator>Mix</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/KinectSDKQuickstarts/Getting-Started#c634439387850000000">Mix</a>: Great to hear <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /></p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439511050000000</link>
		<pubDate>Fri, 17 Jun 2011 23:45:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439511050000000</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/KinectSDKQuickstarts/Getting-Started#c634439076950000000">Peter</a>: I have the same problem. Once I run an application once, the IR projector stays on until I actually unplug the Kinect from the USB port.</p><p>posted by Bas</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439985580000000</link>
		<pubDate>Sat, 18 Jun 2011 12:55:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634439985580000000</guid>
		<dc:creator>Bas</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi there,<br><br>Coding4Fun Kinect Toolkit. Where do i place the Extracted files to bring them up in the reference list&#63;<br><br>Thankyou in advance<p>posted by Jiggles</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634440605400000000</link>
		<pubDate>Sun, 19 Jun 2011 06:09:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634440605400000000</guid>
		<dc:creator>Jiggles</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[&#64;Jiggles &#58; Use the browse option tab in the add reference window to find them&#33; et voila. That&#39;s what I did and worked fine&#33;<p>posted by alex</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634441015150000000</link>
		<pubDate>Sun, 19 Jun 2011 17:31:55 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634441015150000000</guid>
		<dc:creator>alex</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/KinectSDKQuickstarts/Getting-Started#c634439985580000000">Bas</a><img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-12.gif?v=c9' alt='Mad' /><a href="/Series/KinectSDKQuickstarts/Getting-Started#c634439076950000000">Peter</a>: I sent your question to the product team and this is unfortunately a known issue with the driver at beta where the IR projector doesn't turn off.&nbsp;</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634441077170000000</link>
		<pubDate>Sun, 19 Jun 2011 19:15:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634441077170000000</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[I got an error &#34; Could not load file or assembly &#39;INuiInstanceHelper.dll&#39; or one of its dependencies. The specified module could not be found.&#34; I am attempting a WinForms app, but it did the same, I also tried referencing the dll, and rebuilding - no luck.<br>  <p>posted by Austin</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634441100670000000</link>
		<pubDate>Sun, 19 Jun 2011 19:54:27 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634441100670000000</guid>
		<dc:creator>Austin</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[I got it. Needed SP1, If any errors occur Install SP1 from http&#58;&#47;&#47;www.microsoft.com&#47;download&#47;en&#47;details.aspx&#63;id&#61;23691<p>posted by Austin</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634441148760000000</link>
		<pubDate>Sun, 19 Jun 2011 21:14:36 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634441148760000000</guid>
		<dc:creator>Austin</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectSDKQuickstarts/Getting-Started#c634441100670000000">Austin</a>: bet you had VS open while you did the install, restarting should fix this.&nbsp; I've logged a bug with the team.</p><p>posted by Clint</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634445498890000000</link>
		<pubDate>Fri, 24 Jun 2011 22:04:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634445498890000000</guid>
		<dc:creator>Clint</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>Just a note for a correction:</p><p></p><pre class="brush: text">using Coding4Fun.Kinect.WPF;</pre><p></p><p>Where it says WPF, actually Wpf should not be capitalized, it's really:</p><p></p><pre class="brush: text">using Coding4Fun.Kinect.Wpf;</pre><p></p><p>And don't forget to add the reference to the Coding4Fun .dll, which can be done (after downloading the .dll from codeplex) in the Solution Explorer by right clicking References&gt;Add Reference&gt;Browse.</p><p>posted by Tom_Anderson</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634446868660000000</link>
		<pubDate>Sun, 26 Jun 2011 12:07:46 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634446868660000000</guid>
		<dc:creator>Tom_Anderson</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectSDKQuickstarts/Getting-Started#c634446868660000000">Tom_Anderson</a>: fixed</p><p>posted by Clint</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634448010180000000</link>
		<pubDate>Mon, 27 Jun 2011 19:50:18 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634448010180000000</guid>
		<dc:creator>Clint</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectSDKQuickstarts/Getting-Started#c634441100670000000">Austin</a>:&nbsp; Checked with the kinect team, it is a known issue.&nbsp;<a href="http://social.msdn.microsoft.com/Forums/en-US/kinectsdk/thread/927a8e6f-ce08-4fe8-9819-e5e05dd0d9d6">http://social.msdn.microsoft.com/Forums/en-US/kinectsdk/thread/927a8e6f-ce08-4fe8-9819-e5e05dd0d9d6</a></p><p>posted by Clint</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634448011150000000</link>
		<pubDate>Mon, 27 Jun 2011 19:51:55 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634448011150000000</guid>
		<dc:creator>Clint</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi,<br>Could you post the tutorial for C&#47;C&#43;&#43;&#63;<br>Thanks.<p>posted by Flash</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634448781000000000</link>
		<pubDate>Tue, 28 Jun 2011 17:15:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634448781000000000</guid>
		<dc:creator>Flash</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[J&#39;ai un petit soucis. J&#39;ai fait exactement comme cit&#233; en haut mais quand je veut g&#233;n&#233;rer, tout est blanc et rien n es&#39;affiche. Pouvez-vous m&#39;aidez s&#39;il vous plait&#63;<p>posted by Kiira33</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634450315740000000</link>
		<pubDate>Thu, 30 Jun 2011 11:52:54 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634450315740000000</guid>
		<dc:creator>Kiira33</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>I have done all the things as the page said, but when I debug the program, it always throw an exception which is said &quot;An unhandled exception of type 'System.InvalidOperationException' occurred in Microsoft.Research.Kinect.dll</p><p>Additional information: Failed in native DLL. HRESULT=0x80080014.&quot;</p><p>I don't know why. And I can't run the demo(SkeletalViewer and the ShapeGame) which is contained in the SDK normally,&nbsp;everytime I double click it (with the kinect connected to the computer ) ,the computer must crashed and with no response, if I&nbsp;don't connect the computer with kinect, the demo can run&nbsp;, but with no picture.&nbsp;&nbsp;I really want to know the reason, if I didnt install the SDK correctly or I didnt install the speech recognition correctly or something else ?</p><p>posted by mamian</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634459704320000000</link>
		<pubDate>Mon, 11 Jul 2011 08:40:32 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634459704320000000</guid>
		<dc:creator>mamian</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>Hey folks, I am getting this error here</p><p>Error 1 Could not load file or assembly 'Coding4Fun.Kinect.Wpf, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515) C:\Users\kAh00t\AppData\Local\Temporary Projects\WpfApplication1\MainWindow.xaml 1 1 WpfApplication1</p><p>and</p><p>Error 2 System.IO.FileLoadException was thrown on &quot;C:\Users\kAh00t\AppData\Local\Temporary Projects\WpfApplication1\MainWindow.xaml&quot;: Could not load file or assembly 'Coding4Fun.Kinect.Wpf, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515) C:\Users\kAh00t\AppData\Local\Temporary Projects\WpfApplication1\MainWindow.xaml 1 1 WpfApplication1</p><p>&nbsp;</p><p>when trying to follow this tutorial <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-6.gif?v=c9' alt='Sad' /></p><p>&nbsp;</p><p>any help or ideas as to why this may be happening would be very much appreciated!</p><p>&nbsp;</p><p>David</p><p>posted by kAh00t</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634488655260000000</link>
		<pubDate>Sat, 13 Aug 2011 20:52:06 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634488655260000000</guid>
		<dc:creator>kAh00t</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[ <p>...</p><p>posted by omarfuzzer</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634495770820000000</link>
		<pubDate>Mon, 22 Aug 2011 02:31:22 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634495770820000000</guid>
		<dc:creator>omarfuzzer</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[I had the same problem as kAh00t &#33;&#33;&#33;&#33;<br><br>Error 1 Could not load file or assembly &#39;Coding4Fun.Kinect.Wpf, Version&#61;1.0.0.0, Culture&#61;neutral, PublicKeyToken&#61;null&#39; or one of its dependencies. Operation is not supported. &#40;Exception from HRESULT&#58; 0x80131515&#41; C&#58;&#92;Users&#92;kAh00t&#92;AppData&#92;Local&#92;Temporary Projects&#92;WpfApplication1&#92;MainWindow.xaml 1 1 WpfApplication1<br><br>and<br><br>Error 2 System.IO.FileLoadException was thrown on &#34;C&#58;&#92;Users&#92;kAh00t&#92;AppData&#92;Local&#92;Temporary Projects&#92;WpfApplication1&#92;MainWindow.xaml&#34;&#58; Could not load file or assembly &#39;Coding4Fun.Kinect.Wpf, Version&#61;1.0.0.0, Culture&#61;neutral, PublicKeyToken&#61;null&#39; or one of its dependencies. Operation is not supported. &#40;Exception from HRESULT&#58; 0x80131515&#41; C&#58;&#92;Users&#92;kAh00t&#92;AppData&#92;Local&#92;Temporary Projects&#92;WpfApplication1&#92;MainWindow.xaml 1 1 WpfApplication1<p>posted by Rafael</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634515138109913112</link>
		<pubDate>Tue, 13 Sep 2011 12:30:10 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634515138109913112</guid>
		<dc:creator>Rafael</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[That was really helpful.<br>thank u so much.<p>posted by Faith</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634517608192827797</link>
		<pubDate>Fri, 16 Sep 2011 09:06:59 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634517608192827797</guid>
		<dc:creator>Faith</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Could not find the closed event... why is it not available to me&#63;  Found the loaded event no problem.<p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634524874327732878</link>
		<pubDate>Sat, 24 Sep 2011 18:57:12 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634524874327732878</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Is there any other language pack for this which is not american version &#63;&#63;<p>posted by inhak kim</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634526187807522068</link>
		<pubDate>Mon, 26 Sep 2011 07:26:20 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634526187807522068</guid>
		<dc:creator>inhak kim</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi, well I have a problem with this line in c&#35;&#58;<br><br>if &#40;Runtime.Kinects.Count &#61;&#61; 0&#41;<br>    &#123;<br>        this.Title &#61; &#34;No Kinect connected&#34;&#59;<br>    &#125;<br><br>The word Kinects has problem in the compilation, the problem says&#58;<br>Microsoft.kinect.nui.runtime does not mean contain a definition for Kinects<br><br>Maybe you can help me<br><br>Regards<p>posted by Fernando</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634563183931635262</link>
		<pubDate>Tue, 08 Nov 2011 03:06:33 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634563183931635262</guid>
		<dc:creator>Fernando</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectSDKQuickstarts/Getting-Started#c634563183931635262">Fernando</a>:</p><p>Fernando, this functionality is available on the beta 2 version only, you can download it at kinectforwindows.org</p><p>posted by MauroGiusti</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634563287990446434</link>
		<pubDate>Tue, 08 Nov 2011 05:59:59 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634563287990446434</guid>
		<dc:creator>MauroGiusti</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[can i have 1 of the finished source code and the design of kinect application for my computer..&#63;&#63;&#63;<p>posted by agusbean</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634564570011448452</link>
		<pubDate>Wed, 09 Nov 2011 17:36:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634564570011448452</guid>
		<dc:creator>agusbean</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[you should try making a video we can actually see. Its so distorted, i cant see what is on your screen. <p>posted by ctre</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634577774731366630</link>
		<pubDate>Fri, 25 Nov 2011 00:24:33 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634577774731366630</guid>
		<dc:creator>ctre</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[&#42;edit&#42; i mean the video streaming, some of these videos for download are 500mb&#39;s&#33;<p>posted by ctre</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634577793639184795</link>
		<pubDate>Fri, 25 Nov 2011 00:56:03 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634577793639184795</guid>
		<dc:creator>ctre</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>i already plug in my kinect device to the laptop.</p><p>but when i debug the app, it appeared &quot;no kinect connected&quot;.</p><p>what is going on? hmmm....</p><p>posted by kendrick0772</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634578006530926271</link>
		<pubDate>Fri, 25 Nov 2011 06:50:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634578006530926271</guid>
		<dc:creator>kendrick0772</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>by the way...forget to mention...the kinect works fine....just those kinect camera and sensor....</p><p>posted by kendrick0772</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634578057900694252</link>
		<pubDate>Fri, 25 Nov 2011 08:16:30 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634578057900694252</guid>
		<dc:creator>kendrick0772</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[This simply doesn&#39;t work on a windows 7 64 bit machine.  My kinect is plugged into the wall with a working outlet.  All of the devices are listed correctly in device manager.  my computer understands that there is a kinect device connected.  The Kinect API however does not.  The static Microsoft.Research.Kinect.Nui.Runtime.Kinects call returns an empty KinectDeviceCollection &#40;count &#61; 0&#41;.  Only the audio samples work.  I do not now nor ever have had any other other kinect api&#40;s&#41; installed on this machine. also using vs2010 sp1 with .net 4.0.  Any one have any ideas&#63;  Thanks in advance.<p>posted by Angelo Graham</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634580396948475577</link>
		<pubDate>Mon, 28 Nov 2011 01:14:54 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634580396948475577</guid>
		<dc:creator>Angelo Graham</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>Angelo Graham,</p><p>i've no idea too...haha</p><p>posted by kendrick0772</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634581289298879852</link>
		<pubDate>Tue, 29 Nov 2011 02:02:09 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634581289298879852</guid>
		<dc:creator>kendrick0772</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>Now, running the risk of asking a really stupid question, what is this code supposed show on screen when a kinect is detected?</p><p>I mean, when there's no kinect conected, it shows the sentence on the window title, just like it's decribed in the code. However, when the kinect is connected, I get an empty white screen. Is it correct?</p><p>&nbsp;</p><p>posted by Nozue</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634582119724182514</link>
		<pubDate>Wed, 30 Nov 2011 01:06:12 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634582119724182514</guid>
		<dc:creator>Nozue</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>I had stated previously that &quot;This simply doesn't work on a windows 7 64 bit machine.&quot;&nbsp; I have since&nbsp; installed the SDK on a Windows 7 64bit desktop.&nbsp; I can now say it actaully does work and it is pretty cool.&nbsp; I am still having trouble getting it to work on my laptop though.&nbsp; I suspect there must be some sort of software or hardware conflict.&nbsp; If I figure out the issue, I will post it here.&nbsp; I dont know if it is related or not but the working computer lists only 1 device icon for the&nbsp;Kinect in the &quot;Devices and Printer&quot; view.&nbsp; The non working environment lists four icons, one for each component (camera, device, hub, and USB composite device).</p><p>posted by AngeloGraham</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634583941856116872</link>
		<pubDate>Fri, 02 Dec 2011 03:43:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634583941856116872</guid>
		<dc:creator>AngeloGraham</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[I got kinect working on 64-bit computer also on a laptop. Open ni drivers definitely cause conflict.<p>posted by jeffery</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634588694802309407</link>
		<pubDate>Wed, 07 Dec 2011 15:44:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634588694802309407</guid>
		<dc:creator>jeffery</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi,<br><br>Whenever I try to follow this, or any other, tutorial I get the following issue&#58;<br><br>Any reference to Runtime.Kinects is underlined and the message is&#58;<br>&#34;Kinects is not a member of Microsoft.Research.Kinect.Nui.Runtime&#34;<br><br>I also get this error when I download the project files from the website and try to run them.<br><br>Please help.<br><br>Thanks,<br>Matt<p>posted by matt</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634589987197744985</link>
		<pubDate>Fri, 09 Dec 2011 03:38:39 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634589987197744985</guid>
		<dc:creator>matt</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[I have the same problem as Matt. No definition for Kinects<p>posted by John</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634590731824155800</link>
		<pubDate>Sat, 10 Dec 2011 00:19:42 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634590731824155800</guid>
		<dc:creator>John</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Matt,<br><br>You have to download beta2 from kinectforwindows.org<p>posted by John</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634590734635913048</link>
		<pubDate>Sat, 10 Dec 2011 00:24:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634590734635913048</guid>
		<dc:creator>John</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[I actually have the same problem as Matt.<br>All the Runtime stuff is all underlined red.  My imports&#47;usings have &#34;exclaimation marks&#34;.<br><br>I have installed everything and still dont work.<p>posted by PsyokJ</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634592775055442519</link>
		<pubDate>Mon, 12 Dec 2011 09:05:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634592775055442519</guid>
		<dc:creator>PsyokJ</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Quick question..do I need to calibrate first before the head is detected&#63; Is it possible to only detect the upper body and get the skeleton&#63;<p>posted by Choiy</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634594494456590601</link>
		<pubDate>Wed, 14 Dec 2011 08:50:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634594494456590601</guid>
		<dc:creator>Choiy</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Ok, im new at all this. but im trying to learn. so when i put all of this in and fix all of the errors, i go to run it. and all i get is a blank white window. how can i fix this&#63; heres my exact imput&#58;<br><br>using System&#59;<br>using System.Collections.Generic&#59;<br>using System.Linq&#59;<br>using System.Text&#59;<br>using System.Windows&#59;<br>using System.Windows.Controls&#59;<br>using System.Windows.Data&#59;<br>using System.Windows.Documents&#59;<br>using System.Windows.Input&#59;<br>using System.Windows.Media&#59;<br>using System.Windows.Media.Imaging&#59;<br>using System.Windows.Navigation&#59;<br>using System.Windows.Shapes&#59;<br>using Microsoft.Research.Kinect.Audio&#59;<br>using Microsoft.Research.Kinect.Nui&#59;<br><br><br>namespace WpfApplication1<br>&#123;<br>    &#47;&#47;&#47; &#60;summary&#62;<br>    &#47;&#47;&#47; Interaction logic for MainWindow.xaml<br>    &#47;&#47;&#47; &#60;&#47;summary&#62;<br>    public partial class MainWindow &#58; Window<br>    &#123;<br>        public MainWindow&#40;&#41;<br>        &#123;<br>            InitializeComponent&#40;&#41;&#59;<br>        &#125;<br><br>        Runtime nui &#61; new Runtime&#40;&#41;&#59;<br>        private void Window_Loaded&#40;object sender, RoutedEventArgs e&#41;<br>        &#123;<br>            nui.Initialize&#40;RuntimeOptions.UseColor&#41;&#59;<br>        &#125;<br><br>        private void Window_Closed&#40;object sender, EventArgs e&#41;<br>        &#123;<br>            nui.Uninitialize&#40;&#41;&#59;<br>        &#125;<br>    &#125;<br>&#125;<br><p>posted by Amizzy55</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634598450237600580</link>
		<pubDate>Sun, 18 Dec 2011 22:43:43 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634598450237600580</guid>
		<dc:creator>Amizzy55</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>I'm having a problem with adding the c4f CodePlex dll references. &nbsp;As mentioned multiple times in the above posts, I browse to the DLL's but it doesn't show up on the list of other references. &nbsp;</p><p>I think the problem may be because I'm using Visual Studio 11 Preview on Windows 8. &nbsp;Is this a known issue? &nbsp;How do I add references in VS11? &nbsp;Or is it better if I stick with the rest of the crowd and revert back to 2010?</p><p>EDIT: &nbsp;Once I browse for a reference DLL file, it automatically adds it to the project - it doesn't show up on the &quot;Reference Manager&quot; window as shown in the video. &nbsp;</p><p>posted by g33k</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634603589853241404</link>
		<pubDate>Sat, 24 Dec 2011 21:29:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634603589853241404</guid>
		<dc:creator>g33k</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[my kinect is already connected but when i run the program only shows a white window. Help me.<p>posted by Steven</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634608763467191152</link>
		<pubDate>Fri, 30 Dec 2011 21:12:26 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634608763467191152</guid>
		<dc:creator>Steven</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[&#64;Nozue do you find a solution&#63; i got the same window.<p>posted by steven</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634609403591830377</link>
		<pubDate>Sat, 31 Dec 2011 14:59:19 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634609403591830377</guid>
		<dc:creator>steven</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[All of the demo&#39;s that come with it work awesomely for me, and I&#39;ve been having a lot of fun working with the camera in my own apps.<br><br>I&#39;m trying to get into working with some of the Speech stuff though and I&#39;m having a lot of trouble. I know my Speech libraries are installed properly because I can build and run the ShapeGame demo that has a Microsoft.Speech dependency. However, when I try and add that as a reference to my own project, I can&#39;t find it anywhere.<br><br>What am I doing wrong&#63;<p>posted by Ryan Gabriele</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634615785171219200</link>
		<pubDate>Sun, 08 Jan 2012 00:15:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634615785171219200</guid>
		<dc:creator>Ryan Gabriele</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[I&#39;ve installed the kinect sdk correctly but I can&#39;t find the refference &#34;Windows.Reaserch.Kinect&#34;&#63; Please help me.<p>posted by JazzCoder</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634656575360260604</link>
		<pubDate>Fri, 24 Feb 2012 05:18:56 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634656575360260604</guid>
		<dc:creator>JazzCoder</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[i have teh same problem. I can&#39;t find the microsoft.research.kinect. pls help<p>posted by homm</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634698246193732523</link>
		<pubDate>Thu, 12 Apr 2012 10:50:19 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634698246193732523</guid>
		<dc:creator>homm</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Same can&#39;t find microsoft.research anywhere, please help<p>posted by Digi</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634705321763575500</link>
		<pubDate>Fri, 20 Apr 2012 15:22:56 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634705321763575500</guid>
		<dc:creator>Digi</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hello,<br>I have the same pb, cannot find microsoft.research anywhere...<br>Thanks for any help &#58;&#41;<p>posted by amiem</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634732083024113848</link>
		<pubDate>Mon, 21 May 2012 14:45:02 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634732083024113848</guid>
		<dc:creator>amiem</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hello, I found it finally I had to uninstall the kinect version 1.0 that i had, and install the 1.0-Beta version, then just refer to it from the &#34;references&#34; tab under the project.<br>I have another question, hope someone can help &#58; I have a reference to microsoft.Kinect but it is marqued by an exlamation point &#40;that means I have to refer to it&#41; but I can&#39;t have Microsoft.Kinect anymore since I uninstalled the version I had, also I don&#39;t think both versions can cohabitate...<br>Thanks<p>posted by amiem</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634732747856160410</link>
		<pubDate>Tue, 22 May 2012 09:13:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634732747856160410</guid>
		<dc:creator>amiem</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Hi, I too cannot find the Microsoft.Research.Kinect reference. I don&#39;t want to be installing Beta versions if I can help it.<br>Is there a resolution yet&#63;<p>posted by Derek</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634781963906729446</link>
		<pubDate>Wed, 18 Jul 2012 08:19:50 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634781963906729446</guid>
		<dc:creator>Derek</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>This tutorial is out of date -- the link at the top sends you to the new Kinect Quickstart quide. The current version of the Kinect SDK uses the Microsoft.Kinect namespace, however the&nbsp;API has changed, so do&nbsp;see: <a href="http://channel9.msdn.com/Series/KinectQuickstart">http://channel9.msdn.com/Series/KinectQuickstart</a>.</p><p>posted by G1E2G3</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634787843099790895</link>
		<pubDate>Wed, 25 Jul 2012 03:38:29 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634787843099790895</guid>
		<dc:creator>G1E2G3</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[<p>Hican any one help me.... I cannot find the Microsoft.Research.Kinect reference </p><p>Thanks in advance !</p><p>posted by eva22</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634805586921899613</link>
		<pubDate>Tue, 14 Aug 2012 16:31:32 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634805586921899613</guid>
		<dc:creator>eva22</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[http&#58;&#47;&#47;code.google.com&#47;p&#47;theforceteam-1073&#47;downloads&#47;detail&#63;name&#61;Microsoft.Research.Kinect.dll&#38;can&#61;2&#38;q&#61;<br><br><br>Go to this website and download the Microsoft.Research.kinect.dll.<br><br>Put it in your C&#58;&#92;Program Files&#92;Microsoft SDKs&#92;Kinect&#92;v1.5&#92;Assemblies<br>Restart your VB application and then you can find the above mentioned reference..<p>posted by Kat</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634809011154172388</link>
		<pubDate>Sat, 18 Aug 2012 15:38:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634809011154172388</guid>
		<dc:creator>Kat</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[Can anyone help me with the details that I have the data captured&#40;video files and depth data detail files&#41; for the working but I don&#39;t have Kinect currently with me. In a nutshell I want to work on the captured data files offline..What should I do to open file in C&#35;&#63;&#63;&#63;<p>posted by Kat</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634809012876691791</link>
		<pubDate>Sat, 18 Aug 2012 15:41:27 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634809012876691791</guid>
		<dc:creator>Kat</dc:creator>
	</item>
	<item>
		<title>Re: Setting Up Your Development Environment (Beta 2 SDK)</title>
		<description>
			<![CDATA[can any one help me <br>i cant download microsoft Direct SDK&#40;jun2012&#41; at the end it show <br>error message that said &#58; there is a problem preventing your installation from continuing , error code s0123 <br>i have tried other computers and the the same error apear each time &#33;<p>posted by eva</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634812905780801334</link>
		<pubDate>Thu, 23 Aug 2012 03:49:38 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectSDKQuickstarts/Getting-Started#c634812905780801334</guid>
		<dc:creator>eva</dc:creator>
	</item>
</channel>
</rss>