User MusiGenesis - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T01:22:06Z http://stackoverflow.com/feeds/user/14606 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1753184/compare-strings-in-c/1753243#1753243 2 Answer by MusiGenesis for Compare Strings in C# MusiGenesis 2009-11-18T02:30:23Z 2009-11-18T02:30:23Z <p>I think your CompareStrings() method should be something like this:</p> <pre><code>private bool _Comparing = false; private string _URL = "http://xcastradio.com/stats/nowplaying.txt"; private string _data = ""; public void CompareStrings() { Timer timer = new Timer(); timer.Interval = 1000; timer.Tick += timer_Tick; _data = GetData(_URL); _Comparing = true; timer.Start(); } void timer_Tick(object sender, EventArgs e) { if (_Comparing) { string newdata = GetData(_URL); if (newdata != _data) { NowPlaying np = new NowPlaying(); NowPlayingInfo1.Text = newdata; _data = newdata; np.Show(this); } } else { Timer timer = (Timer)sender; timer.Stop(); } } </code></pre> <p>This code uses a <code>Timer</code> to check the URL once every second. Whenever the contents of this text file changes, this code will pop up a new <code>NowPlaying</code> window (which is what I think you're trying to do), and will continue to do this until you set <code>_Comparing</code> to <code>false</code>.</p> <p>You also might want to poll the URL less frequently than once per second, in which case you would set <code>timer.Interval</code> to something like 10000 (10 seconds).</p> http://stackoverflow.com/questions/1733421/how-can-i-send-gridview-to-printer-in-c/1733962#1733962 1 Answer by MusiGenesis for How can I send GridView to Printer in C# MusiGenesis 2009-11-14T11:10:38Z 2009-11-14T11:19:18Z <p>You can do this using a combination of the <code>PrintDocument</code> class and your <code>DataGridView</code>'s <code>DrawToBitmap(...)</code> method:</p> <pre><code>using System.Drawing.Printing; private void Form1_Load(object sender, EventArgs e) { PrintDocument printer = new PrintDocument(); printer.PrintPage += printer_PrintPage; printer.Print(); } void printer_PrintPage(object sender, PrintPageEventArgs e) { using (Bitmap bmp = new Bitmap(dataGridView1.Width, dataGridView1.Height)) { dataGridView1.DrawToBitmap(bmp, new Rectangle(0, 0, bmp.Width, bmp.Height)); e.Graphics.DrawImage(bmp, 0, 0); } e.HasMorePages = false; } </code></pre> <p>This may not be exactly what you need, however, since this will print the <code>DataGridView</code> exactly as it looks on your form (i.e. with scrollbars visible and much of your data not visible).</p> http://stackoverflow.com/questions/1733938/looking-for-tool-that-can-see-tables-and-data-in-sqlce-in-computer-that-isnt-h/1733969#1733969 3 Answer by MusiGenesis for Looking for tool that can see tables and data in sqlCE - in computer that isnt have Visual studio or SQL server MusiGenesis 2009-11-14T11:14:52Z 2009-11-14T11:14:52Z <p>Try <a href="http://www.lmgtfy.com/?q=sqlce+data+viewer" rel="nofollow">one of these</a>.</p> http://stackoverflow.com/questions/112920/whats-your-favorite-abandoned-rule 8 What's your favorite "abandoned rule"? MusiGenesis 2008-09-22T02:47:14Z 2009-11-11T12:22:54Z <p>Like children, programmers are often given the information that they need for their profession in the form of inviolable "rules". Like children, we often follow these rules unflinchingly until one day, by accident more often than deliberately, we don't follow the rule, and nothing bad happens. Maybe we even see that not following the rule makes our lives easier and our code works better.</p> <p>My favorite abandoned rule is:</p> <blockquote> <p><strong>Never use SELECT * in a query</strong></p> </blockquote> <p>I absorbed this rule while learning SQL the night before my first day at my first IT job (1996) by cramming a book on Access. The book spoke with the ferocity of a televangelist about how a baby kitten is drowned whenever a programmer uses SELECT * in a query, and I believed.</p> <p>For years I never ever used SELECT *. One day, I was writing a query like</p> <blockquote> <p>SELECT COLUMN1, COLUMN2, ... COLUMN472 FROM tblWHYTHISMANYCOLUMNS</p> </blockquote> <p>when it occurred to me that since I was just asking for every column in the table, I could save some time by typing</p> <blockquote> <p>SELECT * FROM tblWHYTHISMANYCOLUMNS</p> </blockquote> <p>I tried it, and amazingly it compiled and ran perfectly. I've been an asterisk-man ever since. <em>Nothing bad has ever happened to me as a consequence</em>.</p> <p><strong>So what's your favorite abandoned rule?</strong></p> http://stackoverflow.com/questions/1702440/datatable-getchanges-keeps-returning-null/1702493#1702493 0 Answer by MusiGenesis for DataTable.GetChanges() keeps returning NULL! MusiGenesis 2009-11-09T17:27:01Z 2009-11-09T17:27:01Z <p>Your <code>removeData</code> DataTable needs to have the same columns/fields as <code>allData</code>. In other words, it can't just be a new DataTable().</p> http://stackoverflow.com/questions/1507405/c-is-this-benchmarking-class-accurate/1507485#1507485 3 Answer by MusiGenesis for C#: Is this benchmarking class accurate? MusiGenesis 2009-10-02T02:21:50Z 2009-11-07T09:49:48Z <p>You should definitely return ElapsedMilliseconds instead of ElapsedTicks. The value returned by ElapsedTicks is dependent upon the Stopwatch frequency, which can be different on different systems. It will not necessarily correspond to the Ticks property of a Timespan or DateTime object.</p> <p>See <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch.elapsedticks.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch.elapsedticks.aspx</a>.</p> <p>If you <em>do</em> want the extra resolution of Ticks, you should return <code>watch.Elapsed.Ticks</code> (i.e. Timestamp.Ticks) instead of <code>watch.ElapsedTicks</code> (this might be one of the subtlest <em>potential</em> errors in .Net). From MSDN:</p> <blockquote> <p>Stopwatch ticks are different from DateTime.Ticks. Each tick in the DateTime.Ticks value represents one 100-nanosecond interval. Each tick in the ElapsedTicks value represents the time interval equal to 1 second divided by the Frequency.</p> </blockquote> <p>Other than that, I guess your code is fine, although I think you'd be including some of the method-calling overhead in your measurements, which might be significant if the methods themselves take very little time to execute. Also, you probably would want to exclude the first call to the method from your calculated average, but I'm not sure how you'd do that in your class.</p> <p>One last point, which would probably not be relevant to most uses of this class: Stopwatch runs a bit fast compared to the system time. On my computer, it gets about 5 seconds (that's <em>seconds</em>, not milliseconds) ahead after 24 hours, and on other machines this drift can be even larger. So it's a little misleading to say it's highly <em>accurate</em>, when it's actually just highly <em>granular</em>. For timing short-duration methods, this obviously wouldn't be a significant problem.</p> <p>And one more last point, which certainly <em>is</em> relevant: I've often noticed while benchmarking that I'll get a bunch of running times that are all clustered within a narrow range of values (e.g. 80, 80, 79, 82 etc.), but occasionally something else will happen in Windows (like opening another program or my anti-virus kicks on or something) and I'll get a value wildly out of whack with the others (e.g. 80, 80, 79, 271, 80 etc.). I think a simple solution to this outlier problem is to use the <em>median</em> of your measurements instead of the <em>mean</em>. I don't know if Linq supports this automatically or not.</p> http://stackoverflow.com/questions/1644438/getting-the-collection-of-controls-including-buttons-on-a-winforms-form/1644481#1644481 0 Answer by MusiGenesis for Getting the collection of controls (including buttons) on a Winforms form MusiGenesis 2009-10-29T15:19:00Z 2009-10-29T15:19:00Z <pre><code>private void Form1_Load(object sender, EventArgs e) { foreach (Control ctrl in this.Controls) { if (ctrl is Button) { Button btn = (Button)ctrl; btn.Click += ButtonClick; } } } private void ButtonClick(object sender, EventArgs e) { foreach (Control ctrl in this.Controls) { if (ctrl is Button) { Button btn = (Button)ctrl; if (btn != (Button)sender) { btn.Enabled = false; } } } } </code></pre> http://stackoverflow.com/questions/1644238/modern-equivalent-to-foxpro-access-etc/1644267#1644267 1 Answer by MusiGenesis for Modern equivalent to Foxpro, Access, etc. ? MusiGenesis 2009-10-29T14:49:13Z 2009-10-29T14:49:13Z <p>In the spirit of "<em>black</em> is the new black", I'm going to suggest Access. It's still around, and it still does exactly what you need.</p> http://stackoverflow.com/questions/1644146/user-defined-formulas-in-c/1644182#1644182 0 Answer by MusiGenesis for User defined formulas in C# MusiGenesis 2009-10-29T14:35:55Z 2009-10-29T14:35:55Z <p>This might work:</p> <p><a href="http://www.codeproject.com/KB/recipes/dynamicformula.aspx" rel="nofollow">http://www.codeproject.com/KB/recipes/dynamicformula.aspx</a></p> http://stackoverflow.com/questions/1643740/c-wpf-converting-english-numbers-to-arabic-numbers/1643896#1643896 0 Answer by MusiGenesis for C# WPF Converting english numbers to arabic numbers. MusiGenesis 2009-10-29T13:51:41Z 2009-10-29T13:51:41Z <p>This looks like it does what you need:</p> <p><a href="http://weblogs.asp.net/abdullaabdelhaq/archive/2009/06/27/displaying-arabic-number.aspx" rel="nofollow">http://weblogs.asp.net/abdullaabdelhaq/archive/2009/06/27/displaying-arabic-number.aspx</a></p> http://stackoverflow.com/questions/1643578/how-should-i-make-a-library-dll-file-for-other-devs-to-use-in-their-projects-u/1643598#1643598 9 Answer by MusiGenesis for How should I make a library (.dll) file for other devs to use in their projects using C#? MusiGenesis 2009-10-29T13:07:59Z 2009-10-29T13:44:16Z <p>Check out Microsoft's <a href="http://msdn.microsoft.com/en-us/library/czefa0ke%28VS.71%29.aspx" rel="nofollow">Design Guidelines for Class Library Developers</a>.</p> <p>Or the <a href="http://msdn.microsoft.com/en-us/library/ms229042.aspx" rel="nofollow">newer version</a> of same (thanks to <code>paper1337</code>).</p> http://stackoverflow.com/questions/1643790/csharp-winform-modal-window-able-to-click-on-main-window/1643826#1643826 1 Answer by MusiGenesis for csharp winform modal window, able to click on main window MusiGenesis 2009-10-29T13:42:49Z 2009-10-29T13:42:49Z <p>Just use the overload of Form.Show() that takes a form as a parameter, like this:</p> <pre><code>Form f = new Form(); f.Show(this); </code></pre> <p>This will keep the form always on top of the form that calls it, but still let you click and access the calling form.</p> http://stackoverflow.com/questions/1643532/c-libraries-with-hidden-gems/1643628#1643628 1 Answer by MusiGenesis for C# libraries with hidden gems MusiGenesis 2009-10-29T13:13:17Z 2009-10-29T13:13:17Z <p>OpenNetCF has an <a href="http://www.opennetcf.com/library/sdf/html/bad60a38-17ed-0b07-dd56-93ea054d631c.htm" rel="nofollow">FFT class</a> (for doing Fast Fourier Transforms). It qualifies as a "hidden gem" because OpenNetCF is intended for Windows Mobile devices, and thus isn't necessarily the place you'd normally go looking for DSP code.</p> http://stackoverflow.com/questions/1643276/how-to-interact-with-mainframe-from-asp-net-web-pages-c/1643469#1643469 0 Answer by MusiGenesis for how to interact with mainframe from asp.net web pages (c#) MusiGenesis 2009-10-29T12:46:06Z 2009-10-29T12:46:06Z <p>Microsoft's <a href="http://msdn.microsoft.com/en-us/library/aa266518%28VS.60%29.aspx" rel="nofollow">SNA Server</a> is one way of doing this.</p> http://stackoverflow.com/questions/1643305/bird-songs-for-distraction-free-programming/1643434#1643434 0 Answer by MusiGenesis for Bird songs for distraction free programming MusiGenesis 2009-10-29T12:41:04Z 2009-10-29T12:41:04Z <p><a href="http://stackoverflow.com/questions/292682/understanding-dijkstras-mozart-programming-style/292704#292704">Mozart tried it</a>, and it might have worked for him.</p> http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643417#1643417 2 Answer by MusiGenesis for Why no love for SQL? MusiGenesis 2009-10-29T12:36:23Z 2009-10-29T12:36:23Z <p>I agree with your points, but to answer your question, one thing that makes SQL so "terrible" is the lack of complete standardization of T-SQL between database vendors (Sql Server, Oracle etc.), which makes SQL code unlikely to be completely portable. Database abstraction layers solve this problem, albeit with a performance cost (sometimes a very severe one).</p> http://stackoverflow.com/questions/1641070/windows-mobile-custom-textbox/1641140#1641140 0 Answer by MusiGenesis for Windows Mobile Custom Textbox MusiGenesis 2009-10-29T01:22:57Z 2009-10-29T01:22:57Z <p>This link might help:</p> <p><a href="http://breathingtech.com/2009/creating-gradient-background-with-transparent-labels-in-net-compact-framework/" rel="nofollow">http://breathingtech.com/2009/creating-gradient-background-with-transparent-labels-in-net-compact-framework/</a></p> http://stackoverflow.com/questions/241134/what-is-the-worst-c-net-gotcha 37 What is the worst C#/.NET gotcha? MusiGenesis 2008-10-27T19:30:08Z 2009-10-28T17:43:56Z <p>This question is similar to <a href="http://stackoverflow.com/questions/146329/what-is-the-worst-gotcha-youve-experienced">this one</a>, but focused on C# and .NET. </p> <p>I was recently working with a DateTime object, and wrote something like this:</p> <pre><code>DateTime dt = DateTime.Now; dt.AddDays(1); return dt; // still today's date! WTF? </code></pre> <p>The intellisense documentation for AddDays says it adds a day to the date, which it doesn't - it actually <em>returns</em> a date with a day added to it, so you have to write it like:</p> <pre><code>DateTime dt = DateTime.Now; dt = dt.AddDays(1); return dt; // tomorrow's date </code></pre> <p>This one has bitten me a number of times before, so I thought it would be useful to catalog the worst C# gotchas.</p> http://stackoverflow.com/questions/1626879/c-datagridview-large-cells-content-never-fully-visible-scrolling-skips-cell/1626971#1626971 1 Answer by MusiGenesis for C# DataGridView, large cells: Content never fully visible, scrolling skips cell MusiGenesis 2009-10-26T19:54:09Z 2009-10-28T03:29:55Z <p>I would truncate any cell's contents beyond a certain size (with ellipses to indicate the truncation) and allow the cell to be clicked to display a pop-up window with the full contents visible in a scrollable window. Or I would render the contents of these potentially large cells in a custom UserControl that itself contains scrollbars if the text is beyond a certain length.</p> <p>You're running into a problem that results from the DataGridView being used in an unintended way, so I'm not surprised that there's no simple, built-in way of dealing with this.</p> <p><strong>Update</strong>: for viewing logs, the <code>ReportViewer</code> might be a more suitable control. Here are some links about using it:</p> <p><a href="http://www.codeproject.com/KB/cs/reportdisplay.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/reportdisplay.aspx</a></p> <p><a href="http://www.microsoft.com/Downloads/details.aspx?FamilyID=f38f7037-b0d1-47a3-8063-66af555d13d9&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/Downloads/details.aspx?FamilyID=f38f7037-b0d1-47a3-8063-66af555d13d9&amp;displaylang=en</a></p> <p><a href="http://www.devx.com/dotnet/Article/30424/" rel="nofollow">http://www.devx.com/dotnet/Article/30424/</a></p> http://stackoverflow.com/questions/1634078/is-there-a-difference-between-connect-ppc-to-ws-through-activesync-and-ip-cradle/1634228#1634228 0 Answer by MusiGenesis for Is there a difference between connect PPC to WS through ActiveSync and IP cradle ? MusiGenesis 2009-10-27T23:14:40Z 2009-10-27T23:14:40Z <p>It <em>shouldn't</em> require any code change. If you can get Internet Explorer on your device to display your web service page (asmx), then your application should be able to connect to the web service as well.</p> http://stackoverflow.com/questions/1634057/connecting-to-sql-2005-from-a-windows-mobile-device/1634209#1634209 1 Answer by MusiGenesis for Connecting to SQL 2005 from a windows mobile device MusiGenesis 2009-10-27T23:10:08Z 2009-10-27T23:10:08Z <p>Here's a good link for setting up your emulator to connect to a network:</p> <p><a href="http://www.xdevsoftware.com/blog/post/Enable-Network-Connection-Windows-Mobile-6-Emulator.aspx" rel="nofollow">http://www.xdevsoftware.com/blog/post/Enable-Network-Connection-Windows-Mobile-6-Emulator.aspx</a></p> <p><code>psasik</code> is being polite when he describes emulator network connections as "squirrelly". I've never gotten them to work successfully, but this is because I always have an actual physical device handy, which I always go back to at the first hint of emulator problems.</p> http://stackoverflow.com/questions/1633274/simple-c-calculation-datatypes/1633282#1633282 10 Answer by MusiGenesis for Simple C# calculation - datatypes MusiGenesis 2009-10-27T19:53:59Z 2009-10-27T19:53:59Z <p>Use a <code>decimal</code>. And read <a href="http://en.wikipedia.org/wiki/Floating%5Fpoint" rel="nofollow">this</a>.</p> http://stackoverflow.com/questions/1631179/how-do-i-find-which-control-is-focused/1631349#1631349 0 Answer by MusiGenesis for How do I find which control is focused? MusiGenesis 2009-10-27T14:50:37Z 2009-10-27T14:58:06Z <p>You could add a class like this to your project:</p> <pre><code>public class FocusWatcher { private static System.Windows.Forms.Control _focusedControl; public static System.Windows.Forms.Control FocusedControl { get { return _focusedControl; } } public static void GotFocus(object sender, EventArgs e) { _focusedControl = (System.Windows.Forms.Control)sender; } } </code></pre> <p>Then, for any control on any form that you want to be a candidate for "most recently-focused control", you would do this:</p> <pre><code>textBox1.GotFocus += FocusWatcher.GotFocus; </code></pre> <p>and then access <code>FocusWatcher.FocusedControl</code> to get the most recently-focused control. Monitoring messages will work, but you have to ignore messages that you don't want (like WM_ACTIVATE from the Mdi Form).</p> <p>You could iterate through all the controls on every form and add this handler for the GotFocus event, but surely there are controls that you <em>don't</em> want this for (like Buttons, for example). You could instead iterate and only add the handler for TextBoxes.</p> http://stackoverflow.com/questions/1630708/what-is-the-best-way-to-generate-pdf-from-c/1630744#1630744 1 Answer by MusiGenesis for What is the best way to generate pdf from c#? MusiGenesis 2009-10-27T13:17:26Z 2009-10-27T13:17:26Z <p>ActiveReports has an export-to-PDF option for its reports. This option would let you work with a sophisticated report designer (open-source libraries may have this too, though). It is kind of expensive (especially compared to free).</p> http://stackoverflow.com/questions/1630638/is-using-a-geographically-distributed-development-team-a-better-approach-for-runn/1630692#1630692 1 Answer by MusiGenesis for Is using a geographically distributed development team a better approach for running a software startup? MusiGenesis 2009-10-27T13:09:35Z 2009-10-27T13:09:35Z <p>I totally agree. An office environment provides mainly distractions and opportunities to waste time and look busy. A distributed team doesn't have to pay rent, they can deduct part of their own rent or mortgage from their taxes, and they can recruit talent from virtually anywhere in the world (instead of trying to find capable RoR developers in East Bumwipe, Oklahoma).</p> http://stackoverflow.com/questions/1628339/windows-ce-database/1628615#1628615 0 Answer by MusiGenesis for Windows CE - Database MusiGenesis 2009-10-27T03:27:11Z 2009-10-27T03:27:11Z <p>Sql CE is an excellent choice <em>if</em> your devices have to function for stretches in a disconnected state (i.e. not connected to the server). If you do use Sql CE, however, I strongly recommend <em>not</em> using RDA to persist local changes back to the server database (see <a href="http://stackoverflow.com/questions/1291346/sync-nightmare-is-it-possible-to-use-merge-replication-or-rda-between-2-sql-c/1291367#1291367">this answer</a>). In any event, RDA merge replication would require your server database to be Sql Server.</p> <p>If your devices are always connected to the server through a wireless network, then you do not need a local database on the devices at all. Your devices can upload and download data through ASP.Net web services running on the server. Using DataSets for this communication is a good choice, since they are essentially database-agnostic (and thus your PDA code won't particularly care what database you're using on the server).</p> <p>The web service approach will also let you handle the printing requirement. The PDA would send the relevant information to a web service method, which would then handle printing to the network printer.</p> http://stackoverflow.com/questions/1627018/most-difficult-programming-explanation/1627076#1627076 5 Answer by MusiGenesis for Most difficult programming explanation MusiGenesis 2009-10-26T20:11:50Z 2009-10-26T22:02:38Z <p>Why code like this is bad:</p> <pre><code>private void button1_Click(object sender, EventArgs e) { System.Threading.ThreadStart start = new System.Threading.ThreadStart(SomeFunction); System.Threading.Thread thread = new System.Threading.Thread(start); _SomeFunctionFinished = false; thread.Start(); while (!_SomeFunctionFinished) { System.Threading.Thread.Sleep(1000); } // do something else that can only be done after SomeFunction() is finished } private bool _SomeFunctionFinished; private void SomeFunction() { // do some elaborate $#@%# _SomeFunctionFinished = true; } </code></pre> <p><strong>Update</strong>: what this code <em>should</em> be:</p> <pre><code>private void button1_Click(object sender, EventArgs e) { SomeFunction(); // do something else that can only be done after SomeFunction() is finished } private void SomeFunction() { // do some elaborate $#@%# } </code></pre> http://stackoverflow.com/questions/1626982/convert-base64binary-to-pdf/1627009#1627009 0 Answer by MusiGenesis for convert base64Binary to pdf MusiGenesis 2009-10-26T20:02:05Z 2009-10-26T20:02:05Z <p>Step 1 is converting from your base64 string to a byte array:</p> <pre><code>byte[] bytes = Convert.FromBase64String(base64BinaryStr); </code></pre> <p>Step 2 is saving the byte array to disk:</p> <pre><code>System.IO.FileStream stream = new FileStream(@"C:\file.pdf", FileMode.CreateNew); System.IO.BinaryWriter writer = new BinaryWriter(stream); writer.Write(bytes, 0, bytes.Length); writer.Close(); </code></pre> http://stackoverflow.com/questions/1624789/maximum-timer-interval/1624831#1624831 11 Answer by MusiGenesis for Maximum Timer interval MusiGenesis 2009-10-26T13:36:29Z 2009-10-26T13:46:00Z <p>Use a <code>System.Threading.Timer</code> for this. There are constructors that take a <code>long</code>, a <code>uint</code> or a <code>TimeSpan</code> instead of an <code>int</code> for the <code>dueTime</code>. Any of these will let you set a period of 30 days.</p> <p><strong>Update</strong>: this is the easiest way to do it:</p> <pre><code>System.Threading.Timer _timer; public void Start30DayTimer() { TimeSpan span = new TimeSpan(30, 0, 0, 0); TimeSpan disablePeriodic = new TimeSpan(0, 0, 0, 0, -1); _timer = new System.Threading.Timer(timer_TimerCallback, null, span, disablePeriodic); } public void timer_TimerCallback(object state) { // do whatever needs to be done after 30 days _timer.Dispose(); } </code></pre> http://stackoverflow.com/questions/1622564/c-update-a-subitem-within-a-listview/1622593#1622593 1 Answer by MusiGenesis for C# - Update a subitem within a listview MusiGenesis 2009-10-26T00:23:43Z 2009-10-26T00:23:43Z <p>To expand on Matt's answer, it looks like each row has a unique email address, so you could assign that as the <code>Name</code> property for each ListViewItem. Once you've located the row to update using the <code>Find</code> method, you can update that row's Points like this:</p> <pre><code>fooItem.SubItems[2] = "450"; </code></pre> http://stackoverflow.com/questions/347584/why-is-software-quality-so-problematic/347601#347601 Comment by MusiGenesis on Why is software quality so problematic? MusiGenesis 2009-11-25T23:05:43Z 2009-11-25T23:05:43Z @Sean: the basic principles of engineering have little to do with the &quot;laws of physics&quot;, and actually derive from (as you point out) the lessons learned from a massive amount of trial and error. The same sort of thing is possible with software (with or without whatever the &quot;laws of physics for software&quot; might provide) - it just hasn't happened yet. And yes, I know that engineering isn't a magic fairy dust - my last name <i>isn't</i> &quot;Strawman&quot;. http://stackoverflow.com/questions/1772681/funniest-experience-at-work Comment by MusiGenesis on Funniest experience at work MusiGenesis 2009-11-20T19:21:01Z 2009-11-20T19:21:01Z This one time? At band camp? ... http://stackoverflow.com/questions/1758300/why-is-wpf-loosing-terrain-with-silverlight-4-coming Comment by MusiGenesis on Why is WPF loosing terrain with Silverlight 4 coming? MusiGenesis 2009-11-18T19:19:00Z 2009-11-18T19:19:00Z I think you mean &quot;buzz&quot; instead of &quot;fuzz&quot;. http://stackoverflow.com/questions/1753184/compare-strings-in-c/1753192#1753192 Comment by MusiGenesis on Compare Strings in C# MusiGenesis 2009-11-18T19:14:43Z 2009-11-18T19:14:43Z @okw: using <code>Thread.Sleep(n)</code> to delay is almost as big of a no-no as looping (although at least it doesn't produce a processor-dependent duration). http://stackoverflow.com/questions/1753184/compare-strings-in-c/1753243#1753243 Comment by MusiGenesis on Compare Strings in C# MusiGenesis 2009-11-18T19:12:16Z 2009-11-18T19:12:16Z @balexandre: as far as I can tell, he's writing a winforms app that accesses a web resource. The key line in his original code is <code>np.Show(this);</code> which is a method used to show a <code>Form</code>. http://stackoverflow.com/questions/164144/c-how-to-compare-two-datatables-a-b-how-to-show-rows-which-are-in-b-but-not/164200#164200 Comment by MusiGenesis on C#, how to compare two datatables A + B, how to show rows which are in B but not in A MusiGenesis 2009-11-09T17:23:36Z 2009-11-09T17:23:36Z @Chad: In your case, A may be empty of both data <i>and</i> columns/fields. A and B have to have the same columns for this method to work. http://stackoverflow.com/questions/1644238/modern-equivalent-to-foxpro-access-etc/1644267#1644267 Comment by MusiGenesis on Modern equivalent to Foxpro, Access, etc. ? MusiGenesis 2009-10-29T15:36:26Z 2009-10-29T15:36:26Z @Oliver: yeah, the end user does need Access to run it. Sorry, didn't notice that part. http://stackoverflow.com/questions/1644517/move-items-from-one-listbox-to-another/1644544#1644544 Comment by MusiGenesis on Move items from one listbox to another MusiGenesis 2009-10-29T15:34:04Z 2009-10-29T15:34:04Z @GenericTypeTea: that's only for <code>foreach</code> iteration (I think). http://stackoverflow.com/questions/1643790/csharp-winform-modal-window-able-to-click-on-main-window/1643826#1643826 Comment by MusiGenesis on csharp winform modal window, able to click on main window MusiGenesis 2009-10-29T15:05:55Z 2009-10-29T15:05:55Z @r4ccoon: not sure I understand your problem. Why would you want to set a RichTextBox's Text property <i>after</i> the form it's on has been closed? http://stackoverflow.com/questions/1643740/c-wpf-converting-english-numbers-to-arabic-numbers/1643896#1643896 Comment by MusiGenesis on C# WPF Converting english numbers to arabic numbers. MusiGenesis 2009-10-29T14:33:24Z 2009-10-29T14:33:24Z Well, I'm glad I didn't link using www.lmgtfy.com then. This problem is new to me, because I thought that foreign-language sites all use the regular numbers, with the only cultural differences being the <code>.</code> and <code>,</code> swapping. http://stackoverflow.com/questions/1643740/c-wpf-converting-english-numbers-to-arabic-numbers Comment by MusiGenesis on C# WPF Converting english numbers to arabic numbers. MusiGenesis 2009-10-29T14:29:19Z 2009-10-29T14:29:19Z @jmitch18: I don't either. The Arabic in my earlier comment back-translates as &quot;your lands shall be salted, and your women and children shall be made slaves&quot;. http://stackoverflow.com/questions/1643740/c-wpf-converting-english-numbers-to-arabic-numbers/1643804#1643804 Comment by MusiGenesis on C# WPF Converting english numbers to arabic numbers. MusiGenesis 2009-10-29T13:49:54Z 2009-10-29T13:49:54Z Actually, the numerical system named &quot;Arabic&quot; was invented by <i>Indian</i> mathematicians, and is only called Arabic in the Western world because we got it from Arab traders. http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1643417#1643417 Comment by MusiGenesis on Why no love for SQL? MusiGenesis 2009-10-29T13:40:39Z 2009-10-29T13:40:39Z @Jeff: I don't think it's a huge point against SQL, actually. That's why I said &quot;I agree with your points&quot; and put &quot;terrible&quot; in quotes. I prefer SQL over data abstraction layers, myself, although I'm glad things like NHibernate exist because they're <i>much</i> better than the home-grown crap that used to proliferate. http://stackoverflow.com/questions/1643740/c-wpf-converting-english-numbers-to-arabic-numbers Comment by MusiGenesis on C# WPF Converting english numbers to arabic numbers. MusiGenesis 2009-10-29T13:34:48Z 2009-10-29T13:34:48Z Do you mean that you need the output to be something like &quot;eighty-seven-point-four-percent&quot; only in Arabic (&quot;سبعة وثمانون نقطة أربعة في المئة&quot;)? http://stackoverflow.com/questions/1626879/c-datagridview-large-cells-content-never-fully-visible-scrolling-skips-cell/1626971#1626971 Comment by MusiGenesis on C# DataGridView, large cells: Content never fully visible, scrolling skips cell MusiGenesis 2009-10-28T15:46:34Z 2009-10-28T15:46:34Z @Markus: make sure you put &quot;and I can't use a @#$&amp;@# ListBox for this&quot; in your question.