User Peter Walke - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T12:26:47Zhttp://stackoverflow.com/feeds/user/12497http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/382299/convert-a-wma-to-wav-programatically-with-windows-media-encoder2Convert a wma to wav programatically with Windows Media EncoderPeter Walke2008-12-19T21:43:19Z2009-11-08T13:29:54Z
<p>Has anyone converted a WMA to a WAV using Windows Media Encoder? If so, do you have a short code snippet of how you did it? All samples I've seen have been for WAV to WMA, not the other way around.</p>
http://stackoverflow.com/questions/1469791/powershell-v2-remoting-how-do-you-enable-unecrypted-traffic1powershell v2 remoting - How do you enable unecrypted trafficPeter Walke2009-09-24T04:34:56Z2009-11-03T22:31:46Z
<p>I'm writing a powershell v2 script that I'd like to run against a remote server. When I run it, I get the error :</p>
<blockquote>
<p>Connecting to remote server failed
with the following error message : The
WinRM client cannot process the
request. Unencrypted traffic is
currently disabled in the client
configuration. Change the client
configurati on and try the request
again. For more information, see the
about_ Remote_Troubleshooting Help
topic.</p>
</blockquote>
<p>I looked at the online help for about _ Remote_Troubleshooting, but it didn't point me towards how to enable unecrypted traffic. Below is the script that I'm using that is causing me problems. </p>
<p>Note: I have already run Enable-PSRemoting on the remote machine to allow it to accept incoming requests.<br />
I have tried to use a session option variable, but it doesn't seem to make any difference.</p>
<pre><code>$key = "HKLM:\SOFTWARE\Microsoft\PowerShell\1\ShellIds"
Set-ItemProperty $key ConsolePrompting True
$tvar = "password"
$password = ConvertTo-SecureString -string $tvar -asPlainText –force
$username="domain\username"
$mySessionOption = New-PSSessionOption -NoEncryption
$credential = New-Object System.Management.Automation.PSCredential($username,$password)
invoke-command -filepath C:\scripts\RemoteScript.ps1 -sessionoption $mySessionOption -authentication digest -credential $credential -computername RemoteServer
</code></pre>
<p>How do I enable unencrypted traffic?</p>
http://stackoverflow.com/questions/1491513/what-developer-features-excite-you-the-most-for-wss-4-0-sharepoint-2010/1622206#16222061Answer by Peter Walke for What developer features excite you the most for WSS 4.0 / SharePoint 2010?Peter Walke2009-10-25T21:51:28Z2009-10-25T21:51:28Z<h2>Development support on Win 7 / WS08R2</h2>
<p>You no longer have to do your development on Windows Server. You can use Win 7, Vista, or WS08R2.</p>
http://stackoverflow.com/questions/1608428/what-is-the-biggest-new-feature-improvement-in-sharepoint-2010/1622199#16221990Answer by Peter Walke for What is the biggest new feature/improvement in SharePoint 2010?Peter Walke2009-10-25T21:50:30Z2009-10-25T21:50:30Z<h2>Development support on Win 7 / WS08R2</h2>
<p>You no longer have to do your development on Windows Server. You can use Win 7, Vista, or WS08R2.</p>
http://stackoverflow.com/questions/1491513/what-developer-features-excite-you-the-most-for-wss-4-0-sharepoint-2010/1622192#16221921Answer by Peter Walke for What developer features excite you the most for WSS 4.0 / SharePoint 2010?Peter Walke2009-10-25T21:48:19Z2009-10-25T21:48:19Z<h2>Powershell support</h2>
<p>Anything you could do with STSADM can now be done by using the fully power of powershell. There will be feature parity between the two.</p>
http://stackoverflow.com/questions/1491513/what-developer-features-excite-you-the-most-for-wss-4-0-sharepoint-2010/1622188#16221881Answer by Peter Walke for What developer features excite you the most for WSS 4.0 / SharePoint 2010?Peter Walke2009-10-25T21:47:13Z2009-10-25T21:47:13Z<h2>Correlation ID's for errors</h2>
<p>Small change, but lets you search the logs folder for a correlation ID A correlation ID for errors. You can use this ID to view the error in the Logs folder.</p>
http://stackoverflow.com/questions/1491513/what-developer-features-excite-you-the-most-for-wss-4-0-sharepoint-2010/1622177#16221771Answer by Peter Walke for What developer features excite you the most for WSS 4.0 / SharePoint 2010?Peter Walke2009-10-25T21:41:48Z2009-10-25T21:41:48Z<h2>Dev tools support</h2>
<p>SharePoint is now a first class citizen in Visual Studio. You can throw away WSP Builder and Sharepoint Manger, both great tools for SP2007</p>
http://stackoverflow.com/questions/1608428/what-is-the-biggest-new-feature-improvement-in-sharepoint-2010/1622155#16221550Answer by Peter Walke for What is the biggest new feature/improvement in SharePoint 2010?Peter Walke2009-10-25T21:35:18Z2009-10-25T21:35:18Z<p>2 biggest improvements:</p>
<p>1 - Dev tools support - You can throw away WSPBuilder, SharePoint Manger, and all the other hodge-podge tools you used to develop SharePoint Solutions. </p>
<p>2 - Taxonomy/MetaData - You can add a metadata column to any content type and query that information accross farms. Leverages the new service application infrastructure which gets rid of SSP's</p>
http://stackoverflow.com/questions/1447000/access-is-denied-psexec-called-from-tfs2Access is denied - PSEXEC Called from TFSPeter Walke2009-09-18T21:55:37Z2009-09-19T01:21:43Z
<p>I'm implementing a continuous integration scenario for a SharePoint deployment. After all features have been build on the build server, I'm attempting to deploy the new features to the test server by running STSADM commands through PSEXEC. </p>
<p>When I run my script from any machine where I'm logged in, it runs fine. When I add an exec command to my team build project</p>
<pre><code> <Target Name="AfterDropBuild">
<Exec Command="c:\progra~1\pstools\psexec.exe \\testserver -u mydomain\mydomainuser -p mypassword \\BuildServer\CurrentBuild\DeploymentFiles\Deploy.cmd" />
</Target>
</code></pre>
<p>The build partially fails, and I get an error that access is denied in my build logs:</p>
<pre><code>Task "Exec"
Command:
"c:\progra~1\pstools\psexec.exe \\testserver -u mydomain\mydomainuser -p mypassword \\BuildServer\CurrentBuild\DeploymentFiles\Deploy.cmd"
Access is denied.
</code></pre>
<p>I've added the TFS Service account as a local admin on both the build server and the test server. </p>
<p>Any ideas of why this might be working on any box where I'm an interactive user, but not when psexec is run from the build agent?</p>
http://stackoverflow.com/questions/1447000/access-is-denied-psexec-called-from-tfs/1447431#14474311Answer by Peter Walke for Access is denied - PSEXEC Called from TFSPeter Walke2009-09-19T01:21:43Z2009-09-19T01:21:43Z<p>It was a permissions issue accessing psexec in the program files directory. I added read permissions to the tfs service and it fixed the issue.</p>
http://stackoverflow.com/questions/1427961/can-you-create-a-runtime-query-in-tfs0Can you create a Runtime Query in TFS?Peter Walke2009-09-15T15:41:53Z2009-09-15T18:54:39Z
<p>Is there any way to create a query in TFS that prompts you for query parameters at runtime?</p>
<p>E.G. A query named "[TeamMember] Undone Tasks" where TFS prompts you for the team memeber at runtime?</p>
http://stackoverflow.com/questions/1359687/is-there-any-way-to-use-a-sitemap-file-in-sharepoint-for-navigation1Is there any way to use a *.sitemap file in Sharepoint for navigation?Peter Walke2009-08-31T22:30:23Z2009-08-31T23:17:51Z
<p>I'm working on a public-facing Publishing site. I need to provide static navigation in the MasterPage. I don't want it tied to my site structure. This won't be edited very often. I'd like to use the standard ASP.Net Navigation controls, <code><asp:Menu/></code> and <code><asp:SiteMapDataSource/</code>> , which assume you have a *.sitemap file in the root. In traditional ASP.NET, I'd end up with the following .aspx to render my nav"</p>
<pre><code> <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server"/>
<asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1" />
</code></pre>
<p>I understand that you can point your *.sitemap file to a different location. I'd like to point it to another file living in a list, so that users can edit the *.sitemap file if needed. </p>
<p>In order to transition this code to sharepoint, I've provisioned a *.sitemap file at the root of the site and at /Pages through SPDesigner (will be moved into a feature later), but I end up with an ASP menu that has a link to the Site Collection name (PU) as the parent and the web.sitemap as a child. See image:</p>
<p><img src="http://employees.claritycon.com/pwalke/blogs/nav.png" alt="alt text" /></p>
<p>I've also tried using the <code><SharePoint:AspMenu/></code> , but I get the same behavior. </p>
<p>Am I barking up the wrong tree? Does all the redirection within SharePoint with the content database prevent me from using a *.sitemap file for navigation?</p>
<p>I'm also open to using a plain old xml file for navigation.</p>
<p>Thanks in advance,
Peter</p>
http://stackoverflow.com/questions/180365/how-do-you-open-a-hxs-file2How do you open a hxs file?Peter Walke2008-10-07T20:52:39Z2009-08-28T14:42:53Z
<p>I understand that a hxs file is a compiled help file, a replacement for .chm files, but I can't seem to open them.</p>
<p>I've read that you read them with the help explorer, dexplore.exe found here:
C:\Program Files\Common Files\microsoft shared\Help 9\dexplore.exe</p>
<p>When I try opening the file with dexplore, it asks me to save the file to disk, or open with another program.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/216569/are-the-days-of-the-stored-procedure-numbered53Are the days of the stored procedure numbered?Peter Walke2008-10-19T15:49:24Z2009-08-27T02:23:51Z
<p>In <a href="http://www.hanselminutes.com/default.aspx?showID=152" rel="nofollow">Scott Hanselman's interview of the stack overflow guys</a>, Scott and Jeff make mention that they may be seen as heretics for declaring that the days of the stored procedure are dead. Why might they say this? Is it because many of the new DAL techniques of dynamic data and Linq to SQL use T-SQL to communicate with the SQL server (SQL 2005 in their case)?</p>
<p>Isn't there still significant value in having the T-SQL stored and compiled on the SQL server, along with the benefits of the query plans being cached on the DB? Is it just that these benefits are outweighed by the ease of data access with the aforementioned technologies?</p>
http://stackoverflow.com/questions/1325070/why-is-my-button-clicked-event-being-called-4-times2Why is my button clicked event being called 4 times?Peter Walke2009-08-24T22:13:24Z2009-08-24T22:31:29Z
<p>Probably a noob question, but I'm trying to write a simple iPhone app that increments a label by the number of times a button is clicked. I have the following code:</p>
<pre><code>#import "Controller.h"
int *i = 0;
@implementation Controller
- (IBAction)buttonClicked:(id)sender {
NSString *numTimesClicked = [NSString stringWithFormat:@"%d",i++ ];
myLabel.text = numTimesClicked;
}
@end
</code></pre>
<p>When I click the button, the label updates in multiples of 4 (4,8,12,16, etc). What might I be doing wrong here?</p>
http://stackoverflow.com/questions/270792/how-do-i-deserialize-this-simple-xml-config-with-the-xmlserializer-class0How do I deserialize this simple xml config with the XmlSerializer class?Peter Walke2008-11-06T23:39:09Z2009-07-28T21:47:12Z
<p>I have the following xml I'd like to deserialize into a class</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<root>
<element1>String1</element1>
<element2>String2</element2>
</root>
</code></pre>
<p>I am trying to serialize it into the following class:</p>
<pre><code> [XmlRoot("root")]
public class root
{
[XmlElement("element1")]
internal string element1 { get; set; }
[XmlElement("element2")]
internal string element2 { get; set; }
}
</code></pre>
<p>When I try deserializing it using the following code, the config object is instantiated, but the strings are null.</p>
<pre><code> using (TextReader reader = new StreamReader(configFile))
{
XmlSerializer serializer = new XmlSerializer(typeof(root));
this.config = (root)serializer.Deserialize(reader);
}
</code></pre>
<p>I've tried using xsd.exe to create an xsd, and then create a class based off of that, but there is too much clutter generated by that tool. I think I'm close here. What am I missing?</p>
http://stackoverflow.com/questions/469397/installing-a-win32-service-using-msbuild-and-microsoft-sdc-tasks/1104659#11046591Answer by Peter Walke for Installing a win32 service using MSBuild and Microsoft.Sdc.TasksPeter Walke2009-07-09T15:32:22Z2009-07-09T15:32:22Z<p>Just an FYI, to install to a remote server, you should use the SericeController task listed here:</p>
<p><a href="http://weblogs.asp.net/scottgu/archive/2006/02/12/438061.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2006/02/12/438061.aspx</a></p>
http://stackoverflow.com/questions/918194/what-is-the-tool-to-view-all-exchange-mapi-folders0What is the tool to View all exchange MAPI folders?Peter Walke2009-05-27T21:51:37Z2009-05-27T21:55:12Z
<p>I'm doing some exchange web services development.</p>
<p>As part of the app, I'm creating a hidden folder in the user's exchange mailbox. I remember reading somewhere that there is a tool that lets you browse <em>all</em> your exchange folders... kind of like outlook, but more dev-focused.</p>
<p>I can't seem to google the answer. Can anyone point me to it?</p>
<p>Thanks,
Peter</p>
http://stackoverflow.com/questions/918194/what-is-the-tool-to-view-all-exchange-mapi-folders/918215#9182151Answer by Peter Walke for What is the tool to View all exchange MAPI folders?Peter Walke2009-05-27T21:55:12Z2009-05-27T21:55:12Z<p>Funny how asking a question gets you to google the right answer:</p>
<p>Here's the tool - MFC Mapi</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=55FDFFD7-1878-4637-9808-1E21ABB3AE37&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=55FDFFD7-1878-4637-9808-1E21ABB3AE37&displaylang=en</a></p>
http://stackoverflow.com/questions/884552/is-there-really-a-50-variation-label-limit-in-sharepoint2Is there really a 50 variation label limit in SharePoint?Peter Walke2009-05-19T19:19:51Z2009-05-20T15:59:12Z
<p>We're working on a public-facing site that must be localized to support 70~100 languages.</p>
<p>Some say that you don't really want to have more than 50 variation labels in SharePoint. I can't find any backing material anywhere on the web about this.</p>
<p>2 Questions:</p>
<ol>
<li>Has anyone had any experience with a deployment with a high-number of variation labels? </li>
<li>Has anyone read about this limitation somewhere that they can point me to?</li>
</ol>
<p>Regards,</p>
<p>Peter</p>
http://stackoverflow.com/questions/884552/is-there-really-a-50-variation-label-limit-in-sharepoint/887875#8878750Answer by Peter Walke for Is there really a 50 variation label limit in SharePoint?Peter Walke2009-05-20T13:24:28Z2009-05-20T13:24:28Z<p>Found a <a href="http://technet.microsoft.com/en-us/library/cc262404.aspx" rel="nofollow">technet article</a> explaining this:</p>
<p>
A variation label is an identifier that is used to name and configure a new variation site. You select one variation label as the source, which represents the site where most of the new content enters the system. The corresponding variation labels are the target labels, representing the sites to which content is copied. <strong>(Office SharePoint Server 2007 supports up to 50 labels.)</strong> You create variation sites from variation labels by using the Create Hierarchy command on the Variation Labels page of the Office SharePoint Server 2007 site administration pages.
</p>
http://stackoverflow.com/questions/816155/whats-the-best-sharepoint-book-for-developers-in-c/817660#8176600Answer by Peter Walke for What's the best Sharepoint book for developers in C#?Peter Walke2009-05-03T18:18:10Z2009-05-03T18:18:10Z<p>The Connel and Pattison books listed above are both great, must-read books for SharePoint.</p>
http://stackoverflow.com/questions/792541/how-do-i-handle-sharepoint-exceptions/794607#7946070Answer by Peter Walke for How do I handle SharePoint exceptions?Peter Walke2009-04-27T18:12:08Z2009-04-27T18:12:08Z<p>We allow all our exceptions to bubble up and use a custom HTTP module to handle all exceptions. From here, we log to the ULS logs and also to the trace logs. This is mostly lifted from <a href="http://msmvps.com/blogs/cobrien/archive/2008/10/28/sample-code-from-my-top-wcm-tips-presentation.aspx" rel="nofollow">SharePoint MVP Chris O'brien's Code</a> </p>
<p>We only catch exceptions if we feel we can add extra value to the exception, and then re-throw the error, allowing the http module to pick it up.</p>
http://stackoverflow.com/questions/786300/user-experiences-for-visual-studio-2008-extensions-for-sharepoint-v1-3-ctp0User Experiences for Visual Studio 2008 extensions for SharePoint v1.3 CTPPeter Walke2009-04-24T15:14:26Z2009-04-27T08:01:58Z
<p>In January, <a href="http://weblogs.asp.net/jan/archive/2009/01/12/visual-studio-2008-extensions-for-windows-sharepoint-services-1-3-ctp.aspx" rel="nofollow">MS released a CTP of VS Extensions for SharePoint v1.3.</a> Has anyone used these? What have your experiences been?</p>
<p>We used the previous version and did not like how much was hidden/abstracted from the developers. We eventually abandoned the extensions and create our own WSP's with MakeCab.exe.</p>
<p>...Peter</p>
http://stackoverflow.com/questions/786300/user-experiences-for-visual-studio-2008-extensions-for-sharepoint-v1-3-ctp/787272#7872720Answer by Peter Walke for User Experiences for Visual Studio 2008 extensions for SharePoint v1.3 CTPPeter Walke2009-04-24T19:38:35Z2009-04-24T19:38:35Z<p>@webwires Thanks for the input.</p>
<p>Any experiences from users that were able to get it installed completely?</p>
http://stackoverflow.com/questions/2963/windows-2008-server-as-a-developers-desktop-os/787257#7872571Answer by Peter Walke for Windows 2008 Server as a developers desktop OSPeter Walke2009-04-24T19:35:24Z2009-04-24T19:35:24Z<p>Have you tried playing around with <a href="http://www.win2008workstation.com/wordpress/2008/03/08/enabling-superfetch/" rel="nofollow">SuperFetch</a>? It's a service enabled by default in vista, not in WS08. Look at the comments regarding registry entries. </p>
<p>The OS feels a bit snappier with it enabled, but it could be the placebo effect.</p>
http://stackoverflow.com/questions/785259/uable-to-access-sharepoint-site/786148#7861480Answer by Peter Walke for Uable to access sharepoint sitePeter Walke2009-04-24T14:46:28Z2009-04-24T14:46:28Z<p>Can you give a bit more background? Do you get 404's for all pages? Can you hit layouts pages? E.G: </p>
<pre><code>http://YOURSITE/_layouts/settings.aspx
</code></pre>
<p>404's in SharePoint shouldn't be taken at face value. Check your ULS logs in:</p>
<pre><code>C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\LOGS
</code></pre>
<p>We ran into a smiliar issue <a href="http://twitter.com/pwalke/statuses/1598274069" rel="nofollow">yesterday</a></p>
http://stackoverflow.com/questions/135934/how-do-i-pinvoke-the-function-shcameracapture-camera-dialog-from-aygshell-dll-f1How do I pInvoke the function SHCameraCapture (camera dialog) from Aygshell.dll from WinMO6Peter Walke2008-09-25T20:44:05Z2009-03-07T08:28:43Z
<p>I need to show a camera capture dialog in a compact framework 3.7 application by pinvoking SHCameraCapture from the dll Aygshell.dll. I cannont use the managed object CameraCaptureDialog because of limitations with the technology I'm working with. Instead, I need to access it by Pinvoking it.</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/aa454995.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa454995.aspx</a> for documentation on the function. The function takes in a struct that defines the parameters of the dialog. e.g. where to save the file, what resolution to use.</p>
<p>I would imaging that I would have to define a copy of the struct in C# and decorate the sturct with the attribute StructLayout. I also imagine that the code would involve [DllImport("aygshell.dll")]. Any sample code of how to call this would be much appreciated.</p>
http://stackoverflow.com/questions/616647/how-to-provision-a-custom-page-without-using-the-layouts-directory0How to provision a custom page without using the _layouts directoryPeter Walke2009-03-05T21:12:34Z2009-03-05T21:42:04Z
<p>I need to provision a custom aspx page which does some work and then redirects to another page. Using a _layouts page , AKA an application page won't work since I only want this page accessible to one site collection. </p>
<p>I looked at using pattern #4 from <a href="http://blogs.msdn.com/cjohnson/archive/2006/09/05/740498.aspx" rel="nofollow">this blog post</a>. It feels pretty hacky, It asks you to drop the dll drop it into the bin of the site collection, and upload the file through SP Designer. </p>
<p>I'd rather have this page be a feature that gets included in my site definition or stapled to an existing site definition. I imagine I could use a feature receiver to deploy the files to the pages SP list. One of the comments on the blog post says as much:</p>
<blockquote>
<p>Pardon my ignorance on this maybe I am
missing the point completely but
wouldnt it be easier to deploy your
custom pages by programmatically
adding them to the pages splist? </p>
<p>I basically, had a simple .aspx page
with a user control. I deployed it via
this method.</p>
</blockquote>
<p>Has anyone been able to provision a custom page without using a _layouts page.</p>
<p>I guess another option is to keep using a _layouts page, but make sure the referrer is correct.</p>
http://stackoverflow.com/questions/445041/how-do-i-revert-a-file-in-tfs/615562#6155623Answer by Peter Walke for How do I revert a file in TFSPeter Walke2009-03-05T16:34:34Z2009-03-05T16:34:34Z<p>If you don't want to use the command line, or install the tools, you can also do it in an old-school way:</p>
<p><a href="http://msmvps.com/blogs/vstsblog/archive/2009/01/10/how-to-revert-changes-checked-into-tfs-version-control.aspx" rel="nofollow">http://msmvps.com/blogs/vstsblog/archive/2009/01/10/how-to-revert-changes-checked-into-tfs-version-control.aspx</a></p>
http://stackoverflow.com/questions/1491513/what-developer-features-excite-you-the-most-for-wss-4-0-sharepoint-2010/1492853#1492853Comment by Peter Walke on What developer features excite you the most for WSS 4.0 / SharePoint 2010?Peter Walke2009-10-26T21:58:43Z2009-10-26T21:58:43ZAh... thanks for the clarification. You might want to think about retracting your answer so as not to confuse others.http://stackoverflow.com/questions/1608428/what-is-the-biggest-new-feature-improvement-in-sharepoint-2010/1622199#1622199Comment by Peter Walke on What is the biggest new feature/improvement in SharePoint 2010?Peter Walke2009-10-26T21:56:46Z2009-10-26T21:56:46ZWow... I find this hard to believe. I can't wait to get my hands on the beta bits to confirm if this is true. If so, what a great feature hampered by a horrible shortcomming.http://stackoverflow.com/questions/1491513/what-developer-features-excite-you-the-most-for-wss-4-0-sharepoint-2010/1492853#1492853Comment by Peter Walke on What developer features excite you the most for WSS 4.0 / SharePoint 2010?Peter Walke2009-10-25T21:45:37Z2009-10-25T21:45:37Z-1 I didn't see anything at the conference that showed that these are replaced with anything easier. List Views are a bit easier to write, but Onet.xml seems just as ugly.http://stackoverflow.com/questions/1491513/what-developer-features-excite-you-the-most-for-wss-4-0-sharepoint-2010/1491587#1491587Comment by Peter Walke on What developer features excite you the most for WSS 4.0 / SharePoint 2010?Peter Walke2009-10-25T21:43:15Z2009-10-25T21:43:15ZJust to make things clear to anyone that might be confused, CAML isn't going away... it is still used to provision features, but CAML queries can now be easily replaced by LINQ queries.http://stackoverflow.com/questions/1469791/powershell-v2-remoting-how-do-you-enable-unecrypted-traffic/1473707#1473707Comment by Peter Walke on powershell v2 remoting - How do you enable unecrypted trafficPeter Walke2009-09-25T02:08:13Z2009-09-25T02:08:13Z+1 that was it... thanks for the helphttp://stackoverflow.com/questions/1381084/is-powershell-worth-learning/1381215#1381215Comment by Peter Walke on Is PowerShell worth learning?Peter Walke2009-09-24T18:01:26Z2009-09-24T18:01:26ZGreat Post. +1 I am like the ORiley Pocket Rererence Windows PowerSHell by Lee Holmeshttp://stackoverflow.com/questions/1325070/why-is-my-button-clicked-event-being-called-4-times/1325130#1325130Comment by Peter Walke on Why is my button clicked event being called 4 times?Peter Walke2009-08-25T14:11:31Z2009-08-25T14:11:31Z+1 and marked as answered. Thanks for the help... I'm coming from a c# background and I'm still getting my head around when to label something as a point and when not to. http://stackoverflow.com/questions/129972/convert-an-image-to-xaml/133674#133674Comment by Peter Walke on Convert an image to XAML?Peter Walke2009-07-29T20:13:36Z2009-07-29T20:13:36ZI guess it's a judgment call. I wanted to bring people's attention to the fact that there is an option in using Expression Design that would might have not been read.http://stackoverflow.com/questions/469397/installing-a-win32-service-using-msbuild-and-microsoft-sdc-tasks/469661#469661Comment by Peter Walke on Installing a win32 service using MSBuild and Microsoft.Sdc.TasksPeter Walke2009-07-09T15:31:41Z2009-07-09T15:31:41ZThis will only install the service on the build server. If you want to install it to a remote server, you should use the servicecontroller task from here: <a href="http://weblogs.asp.net/scottgu/archive/2006/02/12/438061.aspx" rel="nofollow">weblogs.asp.net/scottgu/archive/…</a>http://stackoverflow.com/questions/302839/wpf-user-control-parent/302953#302953Comment by Peter Walke on WPF User Control ParentPeter Walke2009-06-05T16:12:30Z2009-06-05T16:12:30ZI found out the reason it's returning null. I was putting this code into the constructor of my user control. You should run this code after the control has loaded. E.G. wire up an event: this.Loaded += new RoutedEventHandler(UserControl_Loaded)http://stackoverflow.com/questions/302839/wpf-user-control-parent/304604#304604Comment by Peter Walke on WPF User Control ParentPeter Walke2009-06-05T16:12:15Z2009-06-05T16:12:15ZI found out the reason it's returning null. I was putting this code into the constructor of my user control. You should run this code after the control has loaded. E.G. wire up an event:
this.Loaded += new RoutedEventHandler(UserControl_Loaded);http://stackoverflow.com/questions/302839/wpf-user-control-parent/302953#302953Comment by Peter Walke on WPF User Control ParentPeter Walke2009-06-05T15:44:22Z2009-06-05T15:44:22ZI tried passing using this code from within my user control. I passed this into this method but it returned null, indicating that it is the end of the tree (according to your comment). Do you know why this is? The user control has a parent which is the containing form. How do I get a handle to this form?http://stackoverflow.com/questions/302839/wpf-user-control-parent/304604#304604Comment by Peter Walke on WPF User Control ParentPeter Walke2009-06-05T15:38:47Z2009-06-05T15:38:47ZI used the code above and get the parentWindow also returns null for me.http://stackoverflow.com/questions/884552/is-there-really-a-50-variation-label-limit-in-sharepoint/885428#885428Comment by Peter Walke on Is there really a 50 variation label limit in SharePoint?Peter Walke2009-05-20T12:51:03Z2009-05-20T12:51:03ZDo you know what happens when you create the 51st variation label? Does SP give you an error? 50 seems like such an arbitrary number... 32 or 64, I guess I could understand because they're "round" numbershttp://stackoverflow.com/questions/216752/firefox-stackoverflow-toolbarComment by Peter Walke on Firefox StackOverflow ToolbarPeter Walke2009-05-05T13:19:24Z2009-05-05T13:19:24ZThanks for posting the source. I've deleted my post suggesting Phishing software. Thanks for the effort in putting this together. Congrats