User stiduck - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T02:42:19Zhttp://stackoverflow.com/feeds/user/35398http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/439301/convert-rtf-to-html/439357#4393570Answer by stiduck for Convert Rtf to HTMLstiduck2009-01-13T15:26:15Z2009-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#4129681Answer by stiduck for Start program on usb hardware pluginstiduck2009-01-05T12:30:07Z2009-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#28063010Answer by stiduck for C# beginner help, How do I pass a value from a child back to the parent form?stiduck2008-11-11T11:10:26Z2008-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#2801323Answer by stiduck for How to get rid of try catch?stiduck2008-11-11T06:09:30Z2008-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 => 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#27161126Answer by stiduck for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)stiduck2008-11-07T09:25:16Z2008-11-07T09:25:16Z<p>The extention method:</p>
<pre><code>public static void AddRange<T>(this List<T> 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<Int32>();
list.AddRange(5, 4, 8, 4, 2);
</code></pre>
http://stackoverflow.com/questions/1118865/why-does-update-panel-not-work-in-ffComment by stiduck on Why does update panel not work in FFstiduck2009-07-17T10:24:15Z2009-07-17T10:24:15ZYou are not using any add-ins like NoScript or disabled javascript in Options -> Content tab in FF?http://stackoverflow.com/questions/541398/asp-net-generate-property-value-when-adding-control-to-pageComment by stiduck on ASP.NET: generate property value when adding control to pagestiduck2009-04-24T11:31:17Z2009-04-24T11:31:17ZNo solution yet?http://stackoverflow.com/questions/439301/convert-rtf-to-htmlComment by stiduck on Convert Rtf to HTMLstiduck2009-01-13T15:21:52Z2009-01-13T15:21:52ZTo 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#280630Comment by stiduck on C# beginner help, How do I pass a value from a child back to the parent form?stiduck2008-11-11T11:15:26Z2008-11-11T11:15:26ZIt does the same, just with a property insted of a method.http://stackoverflow.com/questions/280127/how-to-get-rid-of-try-catch/280132#280132Comment by stiduck on How to get rid of try catch?stiduck2008-11-11T09:14:13Z2008-11-11T09:14:13ZSorry. I wrote that in a hurry. I will change it right away. Thanx :)