User stiduck - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T02:42:19Z http://stackoverflow.com/feeds/user/35398 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/439301/convert-rtf-to-html/439357#439357 0 Answer by stiduck for Convert Rtf to HTML stiduck 2009-01-13T15:26:15Z 2009-01-13T15:26:15Z <p>You can try to upload it to google docs, and download it as HTML.</p> http://stackoverflow.com/questions/412910/start-program-on-usb-hardware-plugin/412968#412968 1 Answer by stiduck for Start program on usb hardware plugin stiduck 2009-01-05T12:30:07Z 2009-01-05T12:30:07Z <p>You can look into WMI to get the hardware information.</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa394582.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa394582.aspx</a></p> http://stackoverflow.com/questions/280579/c-beginner-help-how-do-i-pass-a-value-from-a-child-back-to-the-parent-form/280630#280630 10 Answer by stiduck for C# beginner help, How do I pass a value from a child back to the parent form? stiduck 2008-11-11T11:10:26Z 2008-11-11T11:13:41Z <p>You can also create a public property.</p> <pre><code>// Using and namespace... public partial class FormOptions : Form { private string _MyString; // Use this public string MyString { // in get { return _MyString; } // .NET } // 2.0 public string MyString { get; } // In .NET 3.0 or newer // The rest of the form code } </code></pre> <p>Then you can get it with:</p> <pre><code>FormOptions formOptions = new FormOptions(); formOptions.ShowDialog(); string myString = formOptions.MyString; </code></pre> http://stackoverflow.com/questions/280127/how-to-get-rid-of-try-catch/280132#280132 3 Answer by stiduck for How to get rid of try catch? stiduck 2008-11-11T06:09:30Z 2008-11-11T09:17:50Z <p>You can try to use some null validiation instead. I can take a LINQ to SQL example:</p> <pre><code>var user = db.Users.SingleOrDefault(u =&gt; u.Username == 3); if (user == null) throw new ArgumentNullException("User", "User cannot be null."); // "else" continue your code... </code></pre> http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271611#271611 26 Answer by stiduck for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) stiduck 2008-11-07T09:25:16Z 2008-11-07T09:25:16Z <p>The extention method:</p> <pre><code>public static void AddRange&lt;T&gt;(this List&lt;T&gt; list, params T[] values) { foreach (T value in values) list.Add(value); } </code></pre> <p>The method applies for all types and lets you add a range of items to a list as parameters.</p> <p>Example:</p> <pre><code>var list = new List&lt;Int32&gt;(); list.AddRange(5, 4, 8, 4, 2); </code></pre> http://stackoverflow.com/questions/1118865/why-does-update-panel-not-work-in-ff Comment by stiduck on Why does update panel not work in FF stiduck 2009-07-17T10:24:15Z 2009-07-17T10:24:15Z You are not using any add-ins like NoScript or disabled javascript in Options -&gt; Content tab in FF? http://stackoverflow.com/questions/541398/asp-net-generate-property-value-when-adding-control-to-page Comment by stiduck on ASP.NET: generate property value when adding control to page stiduck 2009-04-24T11:31:17Z 2009-04-24T11:31:17Z No solution yet? http://stackoverflow.com/questions/439301/convert-rtf-to-html Comment by stiduck on Convert Rtf to HTML stiduck 2009-01-13T15:21:52Z 2009-01-13T15:21:52Z To send a PDF file is not a solution? http://stackoverflow.com/questions/280579/c-beginner-help-how-do-i-pass-a-value-from-a-child-back-to-the-parent-form/280630#280630 Comment by stiduck on C# beginner help, How do I pass a value from a child back to the parent form? stiduck 2008-11-11T11:15:26Z 2008-11-11T11:15:26Z It does the same, just with a property insted of a method. http://stackoverflow.com/questions/280127/how-to-get-rid-of-try-catch/280132#280132 Comment by stiduck on How to get rid of try catch? stiduck 2008-11-11T09:14:13Z 2008-11-11T09:14:13Z Sorry. I wrote that in a hurry. I will change it right away. Thanx :)