hot questions tagged .net3.5 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T12:50:10Z http://stackoverflow.com/feeds/tag?tagnames=.net3.5&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1795708/wpf-nesting-databinding-and-validators 0 Wpf - Nesting databinding and Validators Ash 2009-11-25T09:27:41Z 2009-11-25T09:27:41Z <p>I am returning to WPF after a year of winforms development and am trying to get my eye back in with a small project.</p> <p>I am creating a simple 'Filename Textbox' which is a usercontrol with a textbox and a button ("...") which spawns the FileOpenDialog. On this usercontrol I have declared a dependency property of <code>Filename</code> which the Textbox is bound to using a reference to the ElementName of the usercontrol. In the button click handler if the user selects a file in the FileOpenDialog the <code>Filename</code> property is set.</p> <pre><code>&lt;TextBox &gt; &lt;TextBox.Text&gt; &lt;Binding Path="Filename" ElementName="FilePickerUC" UpdateSourceTrigger="PropertyChanged"&gt; &lt;Binding.ValidationRules&gt; &lt;localvalidator:FilenameValidator /&gt; &lt;/Binding.ValidationRules&gt; &lt;/Binding&gt; &lt;/TextBox.Text&gt; &lt;/TextBox&gt; &lt;Button Click="Button_Click"&gt;...&lt;/Button&gt; </code></pre> <p>In my 'main' application I am including this file picker usercontrol and binding its Filename property to a dependency property on the main windows datacontext.</p> <pre><code>&lt;local:FilePickerControl Filename="{Binding Path=ConfigFilename, Mode=TwoWay}" /&gt; </code></pre> <p>This all works well and good, However as I have a validator on the textbox only when a valid filename is entered does the property get written back to the Main windows datacontext. What I would like is if I can propagate the 'validity' of the filepicker to the main window. <strong>How is the best way of going about this?</strong> The options I think I have are:</p> <ol> <li>Include another dependency property on the Filepicker usercontrol called 'valid', then bind this value to the validation rule somehow (how might I do this?)</li> <li>Somehow bind from the main window into the usercontrol to extract the validity based on the validation rule - I don't like the close coupling of this idea!</li> </ol> <p>Any suggestions welcomed!</p> http://stackoverflow.com/questions/1710757/is-there-any-online-radio-library-or-method-out-there 0 Is there any online radio library or method out there? Nathan Campos 2009-11-10T19:56:49Z 2009-11-10T20:06:20Z <p>Hello,</p> <p>One of my new programs that I'm thinking to develop is a online radio listener, but is there any library or method to do this? Thanks.</p> http://stackoverflow.com/questions/1706655/all-characters-of-the-c-application-shown-as-square-character-in-only-one-comput 1 All characters of the c# application shown as square character in only one computer Kadir Ardıç 2009-11-10T09:31:40Z 2009-11-10T09:38:08Z <p>Hi everyone, I have a .net 3.5 application written in c# and it works fine except in one windows 2003 server. In that server all characters of the application shown as square characters. i have another windows 2003 server with exactly the same regional settings but application works fine in that server. Also when i copied the square characters to an another application characters shown as normal. What can be the reason of this problem?</p> http://stackoverflow.com/questions/1634170/making-a-http-post-to-a-rest-endpoint 0 Making a HTTP POST to a REST endpoint Roberto Bonini 2009-10-27T23:01:40Z 2009-10-28T12:47:49Z <p>Hi all, I'm trying to make a simple HTTP post a endpoint with ONLY url arguments.</p> <p>At least thats how I understand the following instructions:</p> <blockquote> <p>POST to that address with a single parameter named url, the address of the feed that changed.</p> <p>As with the XML-RPC method, it verifies that the feed has changed, and if so it notifies the subscribers.</p> <p>The event is logged. The return value is an XML message named result, with two attributes, success and msg.</p> </blockquote> <p>This is my code currently:</p> <pre><code> public static void ping(string feed) { HttpWebResponse response = MakeRequest(feed); XmlDocument document = new XmlDocument(); document.Load(response.GetResponseStream(); string success = document.GetElementById("success").InnerText; string msg = document.GetElementById("msg").InnerText; MessageBox.Show(msg, success); } private static HttpWebResponse MakeRequest( string postArgument) { string url = path + "?" + UrlEncode(postArgument); HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); request.Method = "POST"; request.ContentType = "application/x-www-form-urlencoded"; return (HttpWebResponse)request.GetResponse(); } private static string UrlEncode( string value) { string result; result= HttpUtility.UrlEncode("url") + "=" + HttpUtility.UrlEncode(value); return result; } </code></pre> <p>I'm getting an incorrect response from the server so i assume I'm doing it wrong somehow. here is the response:</p> <blockquote> <p>Invalid at the top level of the document. Error processing resource 'file:///C:/Users/ADMIN/AppData/Local/Temp/VSD1.tmp.XML...</p> <p>rue ^</p> </blockquote> <p>Any ideas??</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1648270/how-to-determine-what-happens-behind-the-scene-in-net 0 How to determine what happens behind the scene in .Net BK 2009-10-30T06:09:13Z 2009-10-30T10:41:40Z <p>What tool or method can I use to see what code something like an anonymous method or LINQ statement gets compiled to? Basicly seeing what happens behind the scene?</p>