User Fredrik M&#246;rk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T18:21:02Z http://stackoverflow.com/feeds/user/93623 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1852200/how-to-split-string-into-a-dictionary/1852210#1852210 4 Answer by Fredrik Mörk for How to split string into a dictionary Fredrik Mörk 2009-12-05T13:35:47Z 2009-12-05T13:35:47Z <p>There may be more efficient ways, but this should work:</p> <pre><code>string sx = "(colorIndex=3)(font.family=Helvicta)(font.bold=1)"; var items = sx.Split(new[] { '(', ')' }, StringSplitOptions.RemoveEmptyEntries) .Select(s =&gt; s.Split(new[] { '=' })); Dictionary&lt;string, string&gt; dict = new Dictionary&lt;string, string&gt;(); foreach (var item in items) { dict.Add(item[0], item[1]); } </code></pre> http://stackoverflow.com/questions/1851729/treeview-child-node-populating-problem/1851789#1851789 2 Answer by Fredrik Mörk for TreeView child node populating problem. Fredrik Mörk 2009-12-05T10:16:01Z 2009-12-05T10:36:33Z <p>What I usually do is to add a "dummy child node" wherever there may be children that should be loaded in a lazy manner. This will make the parent have the plus sign, and then you can add code to the AfterExpand event where you do the following:</p> <ul> <li>Check if there are are exactly one child, and if that child is the dummy node (you can use the Tag property to identify the dummy node)</li> <li>If the dummy node is found, launch a search to get the children and add them to the parent node, finish it off by removing the dummy node.</li> </ul> <p>I typically give the dummy node a text like "Loading data. Please wait..." or so, so that the user gets some info on what is going on. </p> <p><strong>Update</strong><br> I put together a simple example:</p> <pre><code>public class TreeViewSample : Form { private TreeView _treeView; public TreeViewSample() { this._treeView = new System.Windows.Forms.TreeView(); this._treeView.Location = new System.Drawing.Point(12, 12); this._treeView.Size = new System.Drawing.Size(200, 400); this._treeView.AfterExpand += new TreeViewEventHandler(TreeView_AfterExpand); this.ClientSize = new System.Drawing.Size(224, 424); this.Controls.Add(this._treeView); this.Text = "TreeView Lazy Load Sample"; InitializeTreeView(); } void TreeView_AfterExpand(object sender, TreeViewEventArgs e) { if (e.Node.Nodes.Count == 1 &amp;&amp; e.Node.Nodes[0].Tag == "dummy") { // this node has not yet been populated, launch a thread // to get the data ThreadPool.QueueUserWorkItem(state =&gt; { IEnumerable&lt;SomeClass&gt; childItems = GetData(); // load the data into the tree view (on the UI thread) _treeView.BeginInvoke((Action)delegate { PopulateChildren(e.Node, childItems); }); }); } } private void PopulateChildren(TreeNode parent, IEnumerable&lt;SomeClass&gt; childItems) { TreeNode child; TreeNode dummy; TreeNode originalDummyItem = parent.Nodes[0]; foreach (var item in childItems) { child = new TreeNode(item.Text); dummy = new TreeNode("Loading. Please wait..."); dummy.Tag = "dummy"; child.Nodes.Add(dummy); parent.Nodes.Add(child); } originalDummyItem.Remove(); } private IEnumerable&lt;SomeClass&gt; GetData() { // simulate that this takes some time Thread.Sleep(500); return new List&lt;SomeClass&gt; { new SomeClass{Text = "One"}, new SomeClass{Text = "Two"}, new SomeClass{Text = "Three"} }; } private void InitializeTreeView() { TreeNode rootNode = new TreeNode("Root"); TreeNode dummyNode = new TreeNode("Loading. Please wait..."); dummyNode.Tag = "dummy"; rootNode.Nodes.Add(dummyNode); _treeView.Nodes.Add(rootNode); } } public class SomeClass { public string Text { get; set; } } </code></pre> http://stackoverflow.com/questions/1851651/strong-name-is-must/1851668#1851668 0 Answer by Fredrik Mörk for Strong name is must Fredrik Mörk 2009-12-05T09:14:16Z 2009-12-05T09:14:16Z <p>Yes, it is required to give the assembly a strong name in order <a href="http://support.microsoft.com/kb/315682" rel="nofollow">to install it in the GAC</a>.</p> http://stackoverflow.com/questions/1846805/stored-procedure-passing-parameter/1846825#1846825 3 Answer by Fredrik Mörk for Stored procedure passing parameter Fredrik Mörk 2009-12-04T13:05:15Z 2009-12-04T13:05:15Z <p>If the stored procedure declares a parameter that is not optional, you will always need to pass a value to it. If you wish to pass a null value, you should assign <a href="http://msdn.microsoft.com/en-us/library/system.dbnull.value.aspx" rel="nofollow"><code>DBNull.Value</code></a> to the parameter before executing it from .NET code.</p> <p>A parameter is optional if it is given a default value in the declaration, like this:</p> <pre><code>CREATE PROCEDURE [dbo].[spName] ( @ParamName varchar(50) = NULL ) AS BEGIN -- procedure code goes here END </code></pre> http://stackoverflow.com/questions/1845573/c-using-the-this-keyword-in-this-situation/1845590#1845590 13 Answer by Fredrik Mörk for C# using the "this" keyword in this situation? Fredrik Mörk 2009-12-04T08:20:09Z 2009-12-04T08:20:09Z <p>The use of the <code>this</code> keyword can be discussed, but it usually boils down to personal taste. In this case, while being redundant from a technical point of view, I personally think it adds clarity, so I would use it as well.</p> http://stackoverflow.com/questions/1845376/c-xml-comments-where-does-returns-returns-tag-show-up/1845402#1845402 2 Answer by Fredrik Mörk for C# XML /// Comments, where does <returns></returns> tag show up? Fredrik Mörk 2009-12-04T07:29:15Z 2009-12-04T07:29:15Z <p>If you generate API documentation from the comments, it will show up in the <em>Return value</em> section, <a href="http://msdn.microsoft.com/en-us/library/system.object.gethashcode.aspx" rel="nofollow">as seen here</a>, right before the <em>Remarks</em> section.</p> http://stackoverflow.com/questions/1843170/c-api-development-exception-handling/1843183#1843183 10 Answer by Fredrik Mörk for C# API Development Exception handling Fredrik Mörk 2009-12-03T21:52:30Z 2009-12-03T21:52:30Z <p>In my opinion having the API throwing only one exception type is a bad idea. One of the good things with different exceptions is that you can choose to catch different types of exceptions and handle them differently. Wrapping up exceptions into a single exception type would remove that facility.</p> <p>Use the exception types provided by the framework where appropriate, and create your own custom exception types for specific situations where appropriate. And above all, make sure to document for each method which exceptions they may throw.</p> http://stackoverflow.com/questions/1831732/c-picturebox-memory-releasing-problem/1831748#1831748 1 Answer by Fredrik Mörk for c# picturebox memory releasing problem Fredrik Mörk 2009-12-02T09:33:14Z 2009-12-02T09:33:14Z <p><code>Image</code> implements <code>IDisposable</code>, so you should call <code>Dispose</code> on each <code>Image</code> instance that you create, when it is no longer needed. You could try to replace this line in your code:</p> <pre><code>pic.Image = System.Drawing.Image.FromHbitmap(bmp.GetHbitmap()); </code></pre> <p>With this:</p> <pre><code>if (pic.Image != null) { pic.Image.Dispose(); } pic.Image = System.Drawing.Image.FromHbitmap(bmp.GetHbitmap()); </code></pre> <p>This will dispose the previous image (if any) before the new one is assigned.</p> http://stackoverflow.com/questions/1828997/how-to-find-the-form-that-hosts-a-particular-a-winforms-control-within-the-contro/1829010#1829010 7 Answer by Fredrik Mörk for How to find the Form that hosts a particular a Winforms Control within the Control? Fredrik Mörk 2009-12-01T21:21:07Z 2009-12-01T21:21:07Z <p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.findform.aspx" rel="nofollow"><code>FindForm</code></a> method of the control:</p> <pre><code>Form parent = myControl.FindForm(); </code></pre> http://stackoverflow.com/questions/1828906/will-my-object-always-be-there/1828923#1828923 4 Answer by Fredrik Mörk for Will my object always "be there"? Fredrik Mörk 2009-12-01T21:05:03Z 2009-12-01T21:05:03Z <p>As long as there is something referencing your object, it will not be collected by the garbage collector. So, if you create a static field in a class and assign it with a reference to your object, it will remain in memory as long as there is not another assignment to the field, and as long as the AppDomain is loaded (which typically is as long as the process is running).</p> http://stackoverflow.com/questions/1802802/c-lambda-ref-out/1802849#1802849 6 Answer by Fredrik Mörk for C# lambda ref out Fredrik Mörk 2009-11-26T10:25:23Z 2009-11-30T17:57:33Z <p>When passing the variable using the <code>ref</code> keyword, you can't use it inside a lambda expression. Try using a local variable inside the lambda and assign the <code>ref</code> variable outside it, if possible (somewhat simplified example):</p> <pre><code>private static void Main(string[] args) { int i = 0; DoSomethingThatTakesAgesAndNeedsToUpdateUiWhenFinished(ref i); Console.WriteLine(i); } public static void DoSomethingThatTakesAgesAndNeedsToUpdateUiWhenFinished(ref int i) { int temp = i; Thread t = new Thread(() =&gt; { temp = 3; // assign the captured, local variable }); t.Start(); t.Join(); i = temp; // assign the ref parameter } </code></pre> <p><strong>Update</strong><br> In response to the updated answer: your problem is that <code>_dataSet</code> inside the lambda expression is not the same variable as dataSet outside the lambda expression. What you could do is the following:</p> <pre><code>class DataSetContainer { public DataSet DataSet { get; set; } } </code></pre> <p>Now we have a reference type with a property that we can safely modify inside the lambda expression:</p> <pre><code>public static void Select(DataGridView dataGridView, DataSetContainer dataSetContainer, params object[] parameters) { AsyncCommandExecutor commandExecutor = new AsyncCommandExecutor(System.Threading.SynchronizationContext.Current); commandExecutor.ExecuteWithContinuation( () =&gt; { // this is the long-running bit dataSetContainer.DataSet = getDataFromDb(parameters); // This is the continuation that will be run on the UI thread return () =&gt; { dataGridView.DataSource = _dataSet.Tables[0].DefaultView; }; }); } </code></pre> <p>}</p> <p>In the above code, the lambda expression will update the <code>DataSet</code> property of the <code>DataSetContainer</code> instance that is passed to the <code>Select</code> method. Since you are not modifying the passed argument itself but only a member of that instance there is no need for the <code>ref</code> keyword, and we also get around the closure issue. </p> <p><strong>Update 2</strong><br> And now when I switched on my brain, I realize that the <code>Select</code> method makes an asynchronous call. It is quite likely as the code looks that the last line is the <code>Select</code> method will be executed long before <code>_dataSet</code> is being assigned, and as a result it will be <code>null</code>. To get around this you probably want to look into using some sort of signaling mechanism (such as <code>ManualResetEvent</code> or <code>AutoResetEvent</code>) to know when the assignment is done.</p> http://stackoverflow.com/questions/1818565/c-threading-issue/1818583#1818583 5 Answer by Fredrik Mörk for C# threading issue Fredrik Mörk 2009-11-30T08:52:15Z 2009-11-30T08:57:57Z <p>First, there is no need to create new threads inside <code>DoWork</code>; the whole idea with the <code>BackgroundWorker</code> is that <code>DoWork</code> is executed on a separate thread. Second, since <code>DoWork</code> is executed on a separate thread and UI controls can be modified only on the UI thread, you need to invoke those updates correctly. So, a rewritten version of <code>worker_DoWork</code> could look like this:</p> <pre><code>void worker_DoWork(object sender, DoWorkEventArgs e) { foreach (string line in textBox1.Lines) { Dig digger = new Dig(line, textBox1.Text); digger.DomainChecked += new Dig.DomainCheckedHandler(OnUpdateTicker); string response = digger.GetAllInfo(); richTextBox1.Invoke((Action) delegate { richTextBox1.AppendText(response); }); } } </code></pre> <p>Note how the code does not explicitly spawn any new threads, and also how the <code>AppendText</code> method call is done through a <code>Control.Invoke</code> call, forcing it to execute on the UI thread.</p> http://stackoverflow.com/questions/1818301/do-we-consider-this-as-a-bug/1818384#1818384 0 Answer by Fredrik Mörk for Do we consider this as a bug? Fredrik Mörk 2009-11-30T07:51:04Z 2009-11-30T07:51:04Z <p>I can sort of agree with the previous answers that if it's not mentioned in the spec, it's not a bug. But part of me says that this is a functionality that is so obvious that it should not need to be in the spec. (At least my) common sense says that if there is nothing so save, the save command should not be available. From that perspective, I would personally consider it a bug, not a feature request.</p> http://stackoverflow.com/questions/1807348/using-magic-strings-or-constants-in-processing-punctuation/1807365#1807365 1 Answer by Fredrik Mörk for Using magic strings or constants in processing punctuation? Fredrik Mörk 2009-11-27T08:13:53Z 2009-11-27T08:13:53Z <p>If the definitions may change over time or between installations, I tend to put these things in a config file, and pick up the information at startup or on-demand (depending on the situation). Then provide a static class with read-only interface and clear names on the properties for exposing the information to the system.</p> <p>Usage could look like this:</p> <pre><code>s = s.replaceAll(CharConfig.Quotation + CharConfig.Quotation, CharConfig.EmtpyString); </code></pre> http://stackoverflow.com/questions/1806049/c-disable-warning-error-beep-when-changing-focus/1806067#1806067 1 Answer by Fredrik Mörk for [C#] Disable warning/error beep when changing focus. Fredrik Mörk 2009-11-26T23:10:38Z 2009-11-26T23:10:38Z <p>I think you want to add <code>e.Handled = true</code> to the event handler:</p> <pre><code>public void textBox1_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == (char)Keys.Return) { textBox2.Focus(); e.Handled = true; } } </code></pre> <p>A side node: you should be able to use the <code>KeyCode</code> instead of the <code>KeyChar</code> property, avoiding the cast:</p> <pre><code>public void textBox1_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyCode == Keys.Return) { textBox2.Focus(); e.Handled = true; } } </code></pre> http://stackoverflow.com/questions/1805867/what-agile-practices-are-appropriate-in-a-small-team/1805877#1805877 2 Answer by Fredrik Mörk for What agile practices are appropriate in a small team? Fredrik Mörk 2009-11-26T22:06:38Z 2009-11-26T22:06:38Z <p>I think you may want to flip the question around; what agile methods would <em>not</em> be suitable because you are a small team. I am no expert in agile practices, but I can't really think of any that would not be appropriate because of your team size.</p> http://stackoverflow.com/questions/1805784/formatting-a-text-file-how-to-update-the-file-after-i-finished-parsing-it/1805855#1805855 2 Answer by Fredrik Mörk for Formatting a text file, how to update the file after I finished parsing it? Fredrik Mörk 2009-11-26T21:58:54Z 2009-11-26T21:58:54Z <p>The following approach would work regardless of file size, and will also not corrupt the original file in anyway if the operation would fail before it is complete:</p> <pre><code>string inputFile = Path.Combine(Environment.GetFolderPath( Environment.SpecialFolder.MyDocuments), "temp.txt"); string outputFile = Path.Combine(Environment.GetFolderPath( Environment.SpecialFolder.MyDocuments), "temp2.txt"); using (StreamReader input = File.OpenText(inputFile)) using (Stream output = File.OpenWrite(outputFile)) using (StreamWriter writer = new StreamWriter(output)) { while (!input.EndOfStream) { // read line string line = input.ReadLine(); // process line in some way // write the file to temp file writer.WriteLine(line); } } File.Delete(inputFile); // delete original file File.Move(outputFile, inputFile); // rename temp file to original file name </code></pre> http://stackoverflow.com/questions/1804521/what-is-the-best-way-to-host-wcf-and-asp-net-together/1804537#1804537 1 Answer by Fredrik Mörk for What is the best way to host WCF and ASP.NET together? Fredrik Mörk 2009-11-26T16:07:58Z 2009-11-26T16:07:58Z <p>In our project we tend to keep them in separate virtual directories. I like to regard the service as something that can be used by more than one client, and so I like the deployment and hosting of it separate from the client. Of course, if you just stick it in a separate virtual directory you can argue to what extent the hosting is separated, but at least it is separate on a logical level, and easily moved to separate physical hosting if necessary.</p> http://stackoverflow.com/questions/1795314/find-the-date-last-sunday-of-october-in-asp-net-c/1795363#1795363 9 Answer by Fredrik Mörk for Find the date Last sunday of October in ASP.NET c# Fredrik Mörk 2009-11-25T08:03:09Z 2009-11-25T08:13:42Z <p>There is no need to run a loop for this:</p> <pre><code>private static DateTime GetLastWeekdayOfMonth(DateTime date, DayOfWeek day) { DateTime lastDayOfMonth = new DateTime(date.Year, date.Month, 1) .AddMonths(1).AddDays(-1); int wantedDay = (int)day; int lastDay = (int)lastDayOfMonth.DayOfWeek; return lastDayOfMonth.AddDays( lastDay &gt;= wantedDay ? wantedDay - lastDay : wantedDay - lastDay - 7); } </code></pre> <p>This can easily be converted into an extension method, like so:</p> <pre><code>public static class DateTimeExtensions { public static DateTime GetLastWeekdayOfMonth(this DateTime date, DayOfWeek day) { DateTime lastDayOfMonth = new DateTime(date.Year, date.Month, 1) .AddMonths(1).AddDays(-1); int wantedDay = (int)day; int lastDay = (int)lastDayOfMonth.DayOfWeek; return lastDayOfMonth.AddDays( lastDay &gt;= wantedDay ? wantedDay - lastDay : wantedDay - lastDay - 7); } } </code></pre> <p>...and can then be used directly from any DateTime object:</p> <pre><code>DayOfWeek lastSunday = DateTime.Now.GetLastWeekdayOfMonth(DayOfWeek.Sunday); </code></pre> <p>Update: fixed a bug.</p> http://stackoverflow.com/questions/1793377/is-there-a-way-to-have-properties-for-a-winforms-control-that-behave-differently/1793400#1793400 3 Answer by Fredrik Mörk for Is there a way to have properties for a Winforms control that behave differently at design time (in VS designer)? Fredrik Mörk 2009-11-24T22:34:12Z 2009-11-24T22:34:12Z <p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.component.designmode.aspx" rel="nofollow"><code>DesignMode</code></a> property to detect whether the control is currently in design mode or not. That way you should be able to set an appropriate value in the <code>Anchor</code> property (and other properties as well) to behave as you wish in design- and non-design modes.</p> http://stackoverflow.com/questions/1793357/do-value-types-integer-decimal-boolean-etc-inherit-from-object/1793365#1793365 3 Answer by Fredrik Mörk for Do value types (Integer, Decimal, Boolean, etc...) inherit from Object? Fredrik Mörk 2009-11-24T22:27:18Z 2009-11-24T22:27:18Z <p>Value types also inherit from <code>Object</code>, but not directly. They inherit from <a href="http://msdn.microsoft.com/en-us/library/system.valuetype.aspx" rel="nofollow"><code>ValueType</code></a>, which in turn inherits <code>Object</code>.</p> http://stackoverflow.com/questions/1793028/show-windows-mobile-user-control/1793100#1793100 0 Answer by Fredrik Mörk for Show Windows Mobile User Control Fredrik Mörk 2009-11-24T21:40:11Z 2009-11-24T21:40:11Z <p>Did you try the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.bringtofront.aspx" rel="nofollow"><code>Control.BringToFront</code></a> method?</p> http://stackoverflow.com/questions/1791852/bad-use-of-null-coalescing-operator/1791877#1791877 3 Answer by Fredrik Mörk for Bad Use of Null Coalescing Operator? Fredrik Mörk 2009-11-24T18:07:36Z 2009-11-24T18:07:36Z <p>You are correct in that the first line will always make an assignment. I would not worry about that unless the code is executed very often. </p> http://stackoverflow.com/questions/1791359/c-interface-inheritance-getters-setters/1791445#1791445 1 Answer by Fredrik Mörk for C#: interface inheritance getters/setters Fredrik Mörk 2009-11-24T17:00:47Z 2009-11-24T17:00:47Z <p>One way could be to simply skip the inheritance of the interfaces. Make one read-only interface and one write-only, and implement as necessary:</p> <pre><code>interface IBasicPropsReadable { int Priority { get; } string Name { get; } } interface IBasicPropsWriteable { int Priority { set; } string Name { set; } } class SomeClassReadWrite : IBasicPropsReadable, IBasicPropsWriteable { int Priority { get; set; } string Name { get; set; } } class SomeClassReadOnly : IBasicPropsReadable { int Priority { get; } string Name { get; } } </code></pre> http://stackoverflow.com/questions/1788507/c-fiinding-available-threads/1788523#1788523 1 Answer by Fredrik Mörk for C# -Fiinding available Threads Fredrik Mörk 2009-11-24T07:55:07Z 2009-11-24T07:55:07Z <p>I think that the correction you need to do is to <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadpool.aspx" rel="nofollow">read the documentation</a>. The ThreadPool by default has 250 threads per processor. In .NET Framework 1.0, 1.1 and 2.0 it was 25, in 3.5 it's 250.</p> http://stackoverflow.com/questions/1784564/display-number-with-commas-and-decimal-points/1784615#1784615 1 Answer by Fredrik Mörk for display number with commas and decimal points Fredrik Mörk 2009-11-23T17:16:58Z 2009-11-23T17:16:58Z <p>The following approach should give you what you are looking for,:</p> <pre><code>double d = 123456789.1; string format = d.ToString().IndexOf(NumberFormatInfo.CurrentInfo.NumberDecimalSeparator) &gt;=0 ? "#,##0.00" : "#,##0"; Console.WriteLine (d.ToString(format)); </code></pre> <p>This will also work for cultures that does not have 3-digit groups.</p> http://stackoverflow.com/questions/1784303/c-usercontrol-constructor-with-parameters/1784360#1784360 2 Answer by Fredrik Mörk for C# UserControl constructor with parameters Fredrik Mörk 2009-11-23T16:39:59Z 2009-11-23T16:39:59Z <p>Well, in short, the designer is the kind of guy that likes parameter-less constructors. So, to the best of my knowledge, if you really want to use parameter based constructors you are probably stuck with working around it one way or the other.</p> http://stackoverflow.com/questions/1780384/should-if-statement-always-have-an-else-clause/1780392#1780392 7 Answer by Fredrik Mörk for Should 'if' statement always have an 'else' clause? Fredrik Mörk 2009-11-22T23:24:09Z 2009-11-22T23:24:09Z <p>As you say, this may be a question of style, but I would not dream of putting in empty else-blocks in my code just because "every if-block should have one". In my opinion, it adds nothing else than some more characters in the code and one more point (of <em>very</em> little value) to spend time on during code reviews.</p> http://stackoverflow.com/questions/1772606/why-can-i-not-assign-a-list-of-concrete-types-to-a-list-of-that-concretes-interf/1772615#1772615 1 Answer by Fredrik Mörk for Why can I not assign a List of concrete types to a List of that concrete's interface? Fredrik Mörk 2009-11-20T19:05:33Z 2009-11-22T21:04:56Z <p>C# does not currently support converting generic types like that (<strike>it will be supported in C# 4, if I understand it correctly</strike> As wcoenen states in comments below, and Eric also clarifies in his answer, the only way to make it work in C#4 is to use <code>IEnumerable&lt;IConcrete&gt;</code>). For now you will need to convert your list in some way.</p> <p>You could call the method like this:</p> <pre><code>DoStuffWithInterface(myList.ConvertAll&lt;IConcrete&gt;(n =&gt; n as IConcrete)); </code></pre> <p><strong>Update</strong><br> I realized that you probably don't need the cast inside the lambda, even though I sort of like it for clarity. So this should also work:</p> <pre><code>DoStuffWithInterface(myList.ConvertAll&lt;IConcrete&gt;(n =&gt; n)); </code></pre> http://stackoverflow.com/questions/1778952/can-someone-please-explain-to-me-in-the-most-layman-terms-how-to-use-eventargs/1778973#1778973 5 Answer by Fredrik Mörk for Can someone please explain to me in the most layman terms how to use EventArgs? Fredrik Mörk 2009-11-22T15:10:25Z 2009-11-22T15:10:25Z <p>EventArgs classes are used as data carriers when raising events. They typically contain information that is related to the event being raised.</p> <p>Many events use the EventArgs class, which contains no particular information. This class also serves as the base class for all other EventArgs classes. One example of a more specific EventArgs class is the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.treenodeeventargs.aspx" rel="nofollow"><code>TreeNodeEventArgs</code></a> class, that is used by a number of events, and that contains information about which TreeNode that the event is related to.</p> <p>In some cases, EventArgs classes can be designed so that they allow event handlers to communicate data back to the source that raised the event, an example of that is the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.canceleventargs.aspx" rel="nofollow"><code>CancelEventArgs</code></a> class.</p> http://stackoverflow.com/questions/1846352/how-to-position-form-at-the-bottom-right-corner-of-the-screen-in-visual-basic Comment by Fredrik Mörk on how to position form at the bottom right corner of the screen in visual basic Fredrik Mörk 2009-12-04T11:32:59Z 2009-12-04T11:32:59Z Being a beginner is nothing to be sorry about. We have all been there, and in some field we are all beginners. http://stackoverflow.com/questions/1841496/how-can-catched-exception-be-null-not-nullreferenceexception Comment by Fredrik Mörk on How can catched exception be null (not NullReferenceException)? Fredrik Mörk 2009-12-03T17:28:27Z 2009-12-03T17:28:27Z It sounds as if you sort of already put your finger on the problem. You need to get the treading straightened out. http://stackoverflow.com/questions/1838119/making-a-cross-thread-call-to-a-listview Comment by Fredrik Mörk on Making a cross-thread call to a ListView Fredrik Mörk 2009-12-03T06:47:28Z 2009-12-03T06:47:28Z Exactly where is the exception thrown? Can you share the call stack from the exception? http://stackoverflow.com/questions/1831732/c-picturebox-memory-releasing-problem/1831748#1831748 Comment by Fredrik Mörk on c# picturebox memory releasing problem Fredrik Mörk 2009-12-02T09:51:07Z 2009-12-02T09:51:07Z @Yannick: good point. I imagine both issues create problems for the garbage collector. http://stackoverflow.com/questions/1831601/web-site-building Comment by Fredrik Mörk on web site building Fredrik Mörk 2009-12-02T08:59:38Z 2009-12-02T08:59:38Z <a href="http://jobs.stackoverflow.com/" rel="nofollow">jobs.stackoverflow.com</a> http://stackoverflow.com/questions/1831423/string-references-in-c Comment by Fredrik Mörk on String References in C# Fredrik Mörk 2009-12-02T08:53:15Z 2009-12-02T08:53:15Z Welcome to stackoverflow :) http://stackoverflow.com/questions/1829271/replace-switch-case-with-pattern/1829289#1829289 Comment by Fredrik Mörk on Replace Switch/Case with Pattern Fredrik Mörk 2009-12-01T22:11:50Z 2009-12-01T22:11:50Z +1 - need to get my new PC. I am <i>way</i> too slow on this mac keyboard... http://stackoverflow.com/questions/1828393/how-do-i-make-a-textbox-update-as-an-event-happens-not-when-the-code-has-finished/1828409#1828409 Comment by Fredrik Mörk on How do I make a textbox update as an event happens not when the code has finished? Fredrik Mörk 2009-12-01T19:49:37Z 2009-12-01T19:49:37Z I aggree with @Quibblesome http://stackoverflow.com/questions/1828067/moving-from-vb-net-to-c Comment by Fredrik Mörk on Moving from VB.Net to C# Fredrik Mörk 2009-12-01T18:47:54Z 2009-12-01T18:47:54Z Duplicate? <a href="http://stackoverflow.com/questions/1757518/good-exercises-to-transition-from-coding-in-vb-net-to-c/1757558#1757558" rel="nofollow" title="good exercises to transition from coding in vb net to c">stackoverflow.com/questions/1757518/&hellip;</a> http://stackoverflow.com/questions/1802802/c-lambda-ref-out Comment by Fredrik Mörk on C# lambda ref out Fredrik Mörk 2009-11-30T17:42:03Z 2009-11-30T17:42:03Z I updated my answer. Hope it helps :o) http://stackoverflow.com/questions/1820173/calculate-the-number-of-weekdays-between-two-dates-in-c/1820236#1820236 Comment by Fredrik Mörk on Calculate the number of weekdays between two dates in C# Fredrik Mörk 2009-11-30T14:47:46Z 2009-11-30T14:47:46Z @DOK: that will give the number of <i>days</i>, not <i>weekdays</i>. http://stackoverflow.com/questions/1820173/calculate-the-number-of-weekdays-between-two-dates-in-c Comment by Fredrik Mörk on Calculate the number of weekdays between two dates in C# Fredrik Mörk 2009-11-30T14:39:10Z 2009-11-30T14:39:10Z Do you want to exclude just saturdays and sundays, or should it take public holidays into consideration as well? http://stackoverflow.com/questions/1802802/c-lambda-ref-out/1802849#1802849 Comment by Fredrik Mörk on C# lambda ref out Fredrik Mörk 2009-11-30T12:08:20Z 2009-11-30T12:08:20Z @Jooj: if you pass a reference type, you should be able to modify its member properties/fields inside the lambda expression. http://stackoverflow.com/questions/1815032/vb-net-byte-string-conversion-error-problem Comment by Fredrik Mörk on VB.NET byte <-> string conversion error/problem Fredrik Mörk 2009-11-29T10:31:04Z 2009-11-29T10:31:04Z I realized that the bytes were converted into an ASCII string (the code is rather clear on that point). My question was rather; why do you need to convert the bytes to an ASCII string if you later intend to use the bytes as such for calculations? Wouldn't it make more sense to keep the data as bytes and convert to strings when (and if) needed? http://stackoverflow.com/questions/1815032/vb-net-byte-string-conversion-error-problem Comment by Fredrik Mörk on VB.NET byte <-> string conversion error/problem Fredrik Mörk 2009-11-29T08:44:33Z 2009-11-29T08:44:33Z Why do you need to convert the bytes to a string?