User Joel Coehoorn - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T12:43:07Z http://stackoverflow.com/feeds/user/3043 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1842842/dynamic-web-programming/1842921#1842921 0 Answer by Joel Coehoorn for Dynamic Web Programming Joel Coehoorn 2009-12-03T21:06:21Z 2009-12-03T21:06:21Z <p>c# will <a href="http://dev.mysql.com/downloads/connector/net/6.1.html" rel="nofollow">connect to MySQL</a> just fine, if that's your main concern.</p> http://stackoverflow.com/questions/1842040/c-net-3-5-is-there-any-way-to-get-this-function-name/1842061#1842061 2 Answer by Joel Coehoorn for C# (.NET 3.5) Is there any way to get this function name? Joel Coehoorn 2009-12-03T18:51:58Z 2009-12-03T18:51:58Z <p>No, because lambda's don't have names; they're anonymous functions. You could get the method name from the last stackframe, though:</p> <pre><code>new StackFrame(1).GetMethod().Name; </code></pre> http://stackoverflow.com/questions/1841970/how-to-create-a-db-that-holds-all-my-tables-tables-from-aspnetdb-and-my-other-ta/1841985#1841985 0 Answer by Joel Coehoorn for How to create a DB that holds all my tables (tables from ASPNETDB and my other tables)? Joel Coehoorn 2009-12-03T18:41:36Z 2009-12-03T18:41:36Z <blockquote> <p>a project being developed in VWD 2008 Express ... can only access one DB</p> </blockquote> <p>This is not true. You may only be able to use a visual wizard for one db (I don't know), but you can certainly connect to as many databases as you need to in your code. After deployment, an asp.net site doesn't even know if you used visual studio at all (it's certainly possible to build a site using notepad, for example) let alone what edition of visual studio you used.</p> <p>Secondly, the "default [tables] created by the framework" can be created in any database you want using a command line tool that comes with Visual Studio. Just look for the <code>Aspnet_regsql.exe</code> program.</p> http://stackoverflow.com/questions/1841435/is-it-possible-to-automate-a-clickonce-deployment/1841708#1841708 0 Answer by Joel Coehoorn for Is it possible to automate a ClickOnce deployment ? Joel Coehoorn 2009-12-03T17:56:16Z 2009-12-03T17:56:16Z <p>You can build a standard msi installer and deploy it via Group Policy, but then updates are a little trickier. As a hybrid, you could be an msi installer (deployed via group policy) that just installs a shortcut to the correct clickonce address on the desktop.</p> http://stackoverflow.com/questions/1836076/storing-special-characters-in-database/1836119#1836119 2 Answer by Joel Coehoorn for Storing special characters in database Joel Coehoorn 2009-12-02T21:58:15Z 2009-12-02T21:58:15Z <blockquote> <p>I am storing them in a varchar field ...</p> </blockquote> <p>There's one problem, at least. For text that could have "special" characters, you need <code>nvarchar</code>.</p> http://stackoverflow.com/questions/1835155/a-way-to-generate-a-signature-or-a-hash-of-an-image-in-asp-net-for-duplicate-dete/1835205#1835205 1 Answer by Joel Coehoorn for A way to generate a signature or a hash of an image in ASP.NET for duplicate detection? Joel Coehoorn 2009-12-02T19:22:00Z 2009-12-02T19:22:00Z <p>Look in the System.Security.Cryptography namespace. You have your choice of serveral hashing algorithms/implementations. Here's an example using md5, but since you have a lot of these you might want something bigger like SHA1:</p> <pre><code>public byte[] HashImage(Stream imageData) { return new MD5CryptoServiceProvider().ComputeHash(imageData); } </code></pre> http://stackoverflow.com/questions/1828015/is-there-a-way-to-always-have-vs-net-run-as-administrator/1828052#1828052 7 Answer by Joel Coehoorn for Is there a way to always have vs.net run as administrator? Joel Coehoorn 2009-12-01T18:41:17Z 2009-12-01T18:41:17Z <p>Right click on the visual studio icon and choose "Properties". There should be a "Compatibility" tab, and that tab should have a checkbox option to "Run this program as Administrator".</p> http://stackoverflow.com/questions/96029/get-url-of-asp-net-page-in-code-behind 3 Get URL of ASP.Net Page in code-behind Joel Coehoorn 2008-09-18T19:27:25Z 2009-12-01T16:03:20Z <p>I have an ASP.Net page that will be hosted on a couple different servers, and I want to get the URL of the page (or even better: the site where the page is hosted) as a string for use in the code-behind. Any ideas?</p> http://stackoverflow.com/questions/1826886/accessing-c-code-hosted-on-us-server-from-local-machine/1826919#1826919 1 Answer by Joel Coehoorn for Accessing C# code hosted on US server from Local machine Joel Coehoorn 2009-12-01T15:28:05Z 2009-12-01T15:28:05Z <p>You should <em>not</em> access the remote site to make changes directly. You should have a server on site that you use for development and testing, and have the code for the site under source control. Then, when you want to make changes you get the project from source control, make the changes there so that they can be tracked, and use the local server to test anything.</p> <p>Only then do you need to worry about changing anything on the remote server. Normally the way you need to do this is that your service provider for the server will only give you ftp access. So you publish from visual studio to your local file system and ftp those files up to the remote server.</p> http://stackoverflow.com/questions/1826837/how-to-store-timezone-in-sql-server-2005/1826864#1826864 4 Answer by Joel Coehoorn for How to store timezone in SQL Server 2005 Joel Coehoorn 2009-12-01T15:19:49Z 2009-12-01T15:19:49Z <p>Timezones are tricky, evil things. They're normally stored as a UTC offset, but even that has issues with regards to things like when daylight savings times change over (if at all).</p> <p>If you're using Sql Server 2008, you can use a <code>datetimeoffset</code> type, which includes the utc offset with the value. Otherwise you'll need two columns.</p> http://stackoverflow.com/questions/1623665/what-is-the-applet-replacement-in-net/1826725#1826725 -1 Answer by Joel Coehoorn for What is the Applet replacement in .Net Joel Coehoorn 2009-12-01T14:57:41Z 2009-12-01T14:57:41Z <p>You could build it as a custom/user control.</p> http://stackoverflow.com/questions/1823981/sql-server-enterprise-manager-download-or-windows-7-equivalent/1823990#1823990 2 Answer by Joel Coehoorn for SQL Server Enterprise Manager Download? (Or Windows 7 equivalent?) Joel Coehoorn 2009-12-01T04:26:47Z 2009-12-01T04:33:18Z <p>Enterprise Manager only supports up to sql server 2000. You can't use it to access sql server 2005. Instead, you need Sql Server Management Studio. You can download the express edition here:<br> <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c243a5ae-4bd1-4e3d-94b8-5a0f62bf7796" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=c243a5ae-4bd1-4e3d-94b8-5a0f62bf7796</a></p> <p>I'm running both management studio and windows 7 just fine.</p> <p>As for enterprise manager, it was <em>never</em> available for download. You had to install it from the media that came with sql server. Similarly, if you want a non-express edition of management studio you need to install it when running setup for sql server.</p> http://stackoverflow.com/questions/1823864/a-good-algorithm-for-generating-an-order-number/1823941#1823941 1 Answer by Joel Coehoorn for A good algorithm for generating an order number Joel Coehoorn 2009-12-01T04:08:03Z 2009-12-01T04:08:03Z <p>You could base64-encode a guid. This will meet all your criteria except the "numeric values only" requirement.</p> <p>Really, though, the <em>correct</em> thing to do here is let the database generate the order number. That may mean creating an order <em>template</em> record that doesn't actually have an order number until the user saves it, or it might be adding the ability to create <em>empty</em> (but perhaps uncommitted) orders.</p> http://stackoverflow.com/questions/1823829/do-sql-joins-actually-execute-faster-than-using-a-where/1823840#1823840 6 Answer by Joel Coehoorn for Do SQL 'joins' actually execute faster than using a where? Joel Coehoorn 2009-12-01T03:39:27Z 2009-12-01T04:02:53Z <p>No, they <em>should</em> be the same speed. However, you should still prefer the "JOIN" syntax, as the older "WHERE" syntax (as you describe it) is deprecated, less expressive (you can't do certain things when mixing outer joins and where conditions), and <em>much</em> harder to read when you write more complicated queries.</p> http://stackoverflow.com/questions/1823814/are-there-type-unsafe-function-parameters-in-c-and-how-could-we-make-one/1823828#1823828 5 Answer by Joel Coehoorn for Are there "Type-unsafe" function parameters in c# and how could we make one? Joel Coehoorn 2009-12-01T03:35:20Z 2009-12-01T03:54:29Z <p>Note that in this case, the integer version of your function has to be converted to a string anyway for inclusion in the list. So if your entire problem is really as stated, you only need the string version of your function and can just call it like this: </p> <pre><code>int SomeValue = 42; string SomeName= "The Answer to Life, the Universe, and Everything"; Add(SomeName, SomeValue.ToString()); </code></pre> <p>But if you are asking about a more general problem, you can just use the <code>object</code> type, like this:</p> <pre><code>public void Add(string key, object value) { string valueString = value.ToString(); if (!string.IsNullOrEmpty(valueString)) { Attributes.Add(key + "=\"" + valueString + "\" "); } } </code></pre> <p>Note that this version has to create an extra variable and call your argument's <code>.ToString()</code> method, neither of which are needed for the string-only version of the function. This extra work is minuscule, and will hardly drive performance for your app; but it's not free either. However, the nice thing here is that if you call it with a string argument overload-resolution should call the (better) string-version of the function. So you would still want to define two methods, but as you discover more types you need to worry about you don't have to keep adding methods. It stops at two.</p> http://stackoverflow.com/questions/859186/why-is-c-statically-typed/859226#859226 53 Answer by Joel Coehoorn for Why is C# statically typed? Joel Coehoorn 2009-05-13T17:12:04Z 2009-12-01T03:48:03Z <p>As others have said, C# is static/strongly-typed. But I take your question more to be "Why would you <em>want</em> C# to be static/strongly-typed like this? What advantages does this have over dynamic languages?"</p> <p>With that in mind, there are lots of good reasons:</p> <ul> <li><strong>Stability</strong> Certain kinds of errors are now caught automatically by the compiler, before the code ever makes it anywhere close to production.</li> <li><strong>Readability/Maintainability</strong> You are now providing more information about how the code is supposed to work to future developers who read it. You add information that a specific variable is intended to hold a certain kind of value, and that helps programmers reason about what the purpose of that variable is. This is probably why, for example, Microsoft recommended VB6 programmers put a type prefix with the variable name, but that VB.Net programmers do not.</li> <li><strong>Performance</strong> This is the weakest reason, but late-binding/duck typing can be slower. In the end, a variable refers to memory that is structured in some specific way. Without strong types, the program will have to do extra type verification or conversion behind the scenes at runtime as you use memory that is logically structured one way as if it were structured in another. I hesitate to include this point, because ultimately you often have to do those conversions in a strongly typed language as well. It's just that the strongly typed language leaves the exact timing and extent of the conversion to the programmer, and does no extra work unless it needs to be done. It also allows the programmer to force a more advantageous data type. But these really are attributes of the <em>programmer</em>, rather than the platform. That would be a weak reason to omit this point, except that a good dynamic language will often make better choices than the programmer. Still, for <em>good</em> programmers, strongly-typed languages have the <em>potential</em> to be faster.</li> <li><strong>Better Dev Tools</strong> If your IDE knows what type a variable is expected to be, it can give you additional help about what kinds of things that variable can do. This is much harder for the IDE to do if it has to infer the type for you. And if you get more help with the minutia of an API from the IDE, then you as a developer will be able to get your head around a larger, richer API, and get there faster.</li> </ul> <p>Or perhaps you were just wondering why you have to specify the class name twice for the same variable on the same line? The answer is two-fold:</p> <ol> <li>Often you don't. In C# 3.0 and later you can use the <code>var</code> keyword instead of the type name in many cases.</li> <li>Thanks to inheritance and interfaces sometimes the type on the left-hand side doesn't match the type on the right hand side.</li> </ol> http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-when-upgrading-our-legacy-apps/507309#507309 69 Answer by Joel Coehoorn for Should we select VB.NET or C# when upgrading our legacy apps? Joel Coehoorn 2009-02-03T14:37:18Z 2009-12-01T03:19:55Z <p>You'll have a lot of people here tell you to use C#. There are some merits to that. On the one hand, VB.Net will provide a more-familiar syntax and there is the occasional (rare) case where you can just copy/paste an old module into the new project and it just works. On the other hand, it's just different enough that <a href="http://jcoehoorn.vox.com/library/post/dos-and-donts-for-vb6-programmers-using-net.html" rel="nofollow">developers keep trying to do things the old way</a> and ending up with <em>worse</em> code as a result, because they didn't understand how VB.Net was different. </p> <p>The important thing to take away from this is not that you should choose C#, but that whether you choose C# or VB.Net you need to treat it like you're learning a whole new language. VB.Net is very similar to VB6, but the moment you make an assumption that something works the same way that it did for VB6 as often as not you end up making a mistake about how it's supposed to be done.</p> <p>Personally I hated VB6, but I <a href="http://jcoehoorn.vox.com/library/post/why-i-like-vbnet-over-c.html" rel="nofollow">really like VB.Net</a> &mdash; even more so than C# &mdash; and I learned to program using C++. I think VB.Net gets a <a href="http://jcoehoorn.vox.com/library/post/vbnet-all-grown-up.html" rel="nofollow">bad rap sometimes</a> because of it's vb6 heritage, mostly from C# developers who haven't used it all, or at least not long enough to appreciate it. But I'm weird that way; there aren't many with my background who will prefer VB.Net to C#. Incidentally, some &mdash; not all &mdash; of my complaints about C# in the first link of this paragraph have since been addressed.</p> <p><strong>Update:</strong><br> Also see my <a href="http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-when-upgrading-our-legacy-apps/674620#674620">addendum</a> here:<br> <a href="http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-when-upgrading-our-legacy-apps/674620#674620">http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-when-upgrading-our-legacy-apps/674620#674620</a></p> http://stackoverflow.com/questions/18082/validate-numbers-in-javascript-isnumeric/174921#174921 30 Answer by Joel Coehoorn for Validate numbers in Javascript - IsNumeric() Joel Coehoorn 2008-10-06T16:04:45Z 2009-12-01T03:08:10Z <p>Arrrgh! Don't listen to the regular expression answers. RegEx is icky for this, and I'm not talking just performance. It's so easy to make subtle, impossible to spot mistakes with your regex. </p> <p>If you can't use <code>isNaN()</code>, this should work much better:</p> <pre><code>function IsNumeric(input) { return (input - 0) == input &amp;&amp; input.length &gt; 0; } </code></pre> <p>The <code>(input - 0)</code> expression forces javascript to do type coercion on your input value; it must first be interpreted as a number for the boolean compare. If that conversion to a number fails, the expression will result in <code>NaN</code>. Then this <em>numeric</em> result is compared to the original value you passed in. Since the left hand side is a number, type coercion is again used. They should always be the same (always true), but there's a special rule that says <code>NaN</code> is never equal to <code>NaN</code>, and so a value that can't be converted to a number will always return false. The check on the length is of course for the empty string special case. In summary, <strong><em>if you want to know if a value can be converted to a number, actually try to convert it to a number.</em></strong></p> <p>Note that it falls down on your 0x89f test, but that's because in many environments that's an okay way to define a number literal. If you want to catch that specific scenario you could add an additional check. Even better, if that's your reason for not using isNaN() then just wrap your own function around isNaN() that can also do the additional check.</p> http://stackoverflow.com/questions/1821646/controls-visibility-property-modified-by-javascript-is-ignored-after-postback/1821770#1821770 1 Answer by Joel Coehoorn for Controls' visibility property, modified by JavaScript, is ignored after postback Joel Coehoorn 2009-11-30T19:10:21Z 2009-11-30T19:10:21Z <p>A postback is just another way of saying the html form was submitted. When you submit a form, the <em>only</em> things sent to the server are the <code>value</code> and <code>name</code> properties of the <code>input</code> and <code>select</code> elements in the form. That's why your "text" is preserved: it's the <code>value</code> attribute of that element. If you want to also preserve your visibility changes, or any other changes, you need to add an element to your form that can hold these changes somehow in it's value attribute. </p> <p>That's essentially what ViewState is; an extra hidden element whose value property holds the current state of controls. But ViewState works for maintaining state between server instances of your page. It's not for moving new changes from the client to the server.</p> http://stackoverflow.com/questions/1817677/why-is-my-destructor-getting-called/1817773#1817773 1 Answer by Joel Coehoorn for Why is my Destructor getting called? Joel Coehoorn 2009-11-30T03:56:28Z 2009-11-30T16:22:06Z <p>It sounds like you're doing something very wrong. In a managed environment, keeping a reference around like this that will essentially live forever amounts to a memory leak, unless you really mean to keep these objects around.</p> <p>The other thing to remember here is that there's no such thing as a destructor in C#. What you have are <em>finalizers</em>, which are different. It's rare with managed code that you should even need to write a finalizer at all. The only good reason to do so is when you are implementing IDisposable for a type to wrap an unmanaged resource <em>that's not already covered by a finalizer</em>. </p> <p>For example, lots of people create a type that implements IDisposable and wraps SqlConnection as part of their data access layer. This way they can wrap instances of the type in using blocks and make sure any SqlConnections they create are disposed properly. But this type does <em>not</em> need a finalizer, because the underlying database connection is already covered by the finalizer in the SqlConnection class itself. There's no <em>new</em> unmanaged resource type to worry about, just the SqlConnection type. But if you were building a whole new database engine and were implementing the new .Net data provider for it, you would want to implement a finalizer for your connection.</p> http://stackoverflow.com/questions/1813032/help-with-c-pattern/1813140#1813140 0 Answer by Joel Coehoorn for help with c# pattern. Joel Coehoorn 2009-11-28T17:25:00Z 2009-11-28T17:54:50Z <p>I see several recommendations for a template function. This is fine, but it doesn't tell the whole story. I'm guessing part of the issue is that each of your Validate and Convert function work a little differently, which means that a simple generic function may not be adequate.</p> <p>If that's the case, you have a few options. One is to just overload the Validate/Convert functions and let the type system's overload resolution work out which one to call. Another (and this is preferred) is to use the template pattern recommended earlier and just have each of your types implement a common interface. And a third option is to require a delegate parameter for the function for each of your methods. You already have examples of the first two, so here is a code example for how to write the method to accept delegates:</p> <pre><code>public T Create&lt;T&gt;(T c, Action&lt;T&gt; validate, Func&lt;T, string&gt; convert) { Log.BeginRequest(c, ActionType.Create); validate(c); WebService.Send(convert(c)); Log.EndRequest(c, ActionType.Create); } </code></pre> http://stackoverflow.com/questions/1195846/can-net-based-applications-be-expected-to-perform-in-this-manner/1195871#1195871 7 Answer by Joel Coehoorn for Can .NET based applications be expected to perform in this manner? Joel Coehoorn 2009-07-28T18:28:57Z 2009-11-26T22:27:43Z <blockquote> <p>Typically these applications are doing a little bit of database work </p> </blockquote> <p>There you go. The packaged native applications likely aren't talking to a database. That alone could easily take 10-30 ms+ for even a single short query.</p> <p>Also, .NET does have some additional overhead required to establish an application domain. You might find that things work better if you can group some of your small applications into fewer larger ones, or perhaps use command-line parameters to configure them to run several tasks at once.</p> http://stackoverflow.com/questions/296309/open-a-file-for-shared-writing 2 Open a file for shared writing Joel Coehoorn 2008-11-17T17:47:27Z 2009-11-24T08:57:43Z <p>The following code is just a simplified example to demonstrate my problem:</p> <pre><code>using System; using System.IO; using System.Diagnostics; using System.Threading; namespace ConsoleApplication5 { class Program { static string LogFile = @"C:\test.log"; static void Main(string[] args) { for (int i = 0;i&lt;10;i++) { new Thread(new ParameterizedThreadStart(DoWork)).Start(i); } Console.ReadKey(); } static void DoWork(object param) { int count = (int)param; try { using (FileStream fs = new FileStream(LogFile, FileMode.Append, FileAccess.Write, FileShare.ReadWrite)) using (StreamWriter sw = new StreamWriter(fs)) { sw.WriteLine(DateTime.Now + " - Start " + count.ToString()); Thread.Sleep(2000); // simulate doing some work sw.WriteLine(DateTime.Now + " - End " + count.ToString()); } } catch (Exception e) { Console.WriteLine(count.ToString() + ": " + e.Message); return; } Console.WriteLine(count.ToString() + ": Done."); } } } </code></pre> <p>The problem here is that typically only one entry makes it into the file, even though I call the method 10 times. The file should be open to allow sharing. As far as I can tell no exceptions are thrown. What's going on?</p> <p>In the real code that this example shadows, each call to DoWork is actually in a separate process, though testing shows that the results are the same-- if I can fix it here I can fix it there.</p> http://stackoverflow.com/questions/1783587/visual-basic-script-that-control-a-date-format/1783623#1783623 0 Answer by Joel Coehoorn for Visual basic script that control a date format Joel Coehoorn 2009-11-23T14:56:55Z 2009-11-23T14:56:55Z <p>Wait what? Your question is not very clear. Do you have a DateTime and need to output it in a specific format? Are you accepting a string from the user and need to make sure it fits that format? Do you get a string from somewhere else that you need to match for a specific format?</p> <p>Most of all, <em>why</em> do you care? You shouldn't be dealing with dates as strings, except at the point of interaction with the user or other data source. Inside your program they should be a DateTime type. Assuming you're 'vb.net' tag is correct, the DateTime has handy Parse, TryParse, and ParseExact, and TryParseExact static methods you can use to accept most anything the user could throw at you.</p> http://stackoverflow.com/questions/1780679/net-webbrowser-webclient-webrequest-httpwebrequest-argh/1780746#1780746 2 Answer by Joel Coehoorn for .NET: WebBrowser, WebClient, WebRequest, HTTPWebRequest... ARGH! Joel Coehoorn 2009-11-23T01:53:01Z 2009-11-23T02:08:14Z <p>I don't know of any System.Net.WebBrowser, but WebClient is basically a class that lets you easily download files (including html pages) from the web into memory or even directly to file. A basic code sample looks like this:</p> <pre><code>string html; using (var wc = new WebClient()) { html = wc.DownloadString("http://stackoverflow.com/questions/1780679/"); } </code></pre> <p>You can do a lot with WebClient, but there are some limitations. If you need to do some serious web scraping, you'll need to get lower level. That's where the HttpWebRequest/HttpWebResponse come in. You can use them to send any request a normal web browser might send, in any sequence. For example, you may need to log in to a web site before you can request the page you really want, and WebClient might not be able to do that. HttpWebRequest will.</p> <p>Now, there is one other option. System.Windows.Forms.WebBrowser is a <em>control</em> designed to place on a form. It basically wraps the engine used in Internet Explorer to provide all the capabilities of a web browser. You need to be careful using this for general scraping: it's not portable (bad for mono), uses a lot of resources, and has similar security issues as running a full browser. The control is best used in a form to connect to a specific known web resource. For example, you may have a Windows Forms app for sale, and web app where you sell it for download. You might provide a WebBrowser control that shows a few pages on this web site specifically intended for view in your app that allows users to purchase in-app upgrades.</p> http://stackoverflow.com/questions/1760719/c-beginner-where-has-my-ilist-where-method-gone/1760723#1760723 9 Answer by Joel Coehoorn for C# Beginner: Where has my IList.Where() method gone? Joel Coehoorn 2009-11-19T03:34:28Z 2009-11-19T03:52:34Z <p>You need a using directive for <code>System.Linq</code>. <code>.Where()</code> is an extension method on <code>IEnumerable&lt;T&gt;</code> (which <code>IList&lt;T&gt;</code> implements) that is defined in the System.Linq namespace.</p> http://stackoverflow.com/questions/1760698/sql-server-sum-2-decimal/1760720#1760720 1 Answer by Joel Coehoorn for SQL Server SUM() 2 decimal Joel Coehoorn 2009-11-19T03:33:47Z 2009-11-19T03:33:47Z <p>You mean <a href="http://msdn.microsoft.com/en-us/library/ms175003.aspx" rel="nofollow">ROUND()</a>?</p> <p>But even that is tricky. Read the docs, and you'll see it still returns a plain numeric expression, which likely still includes trailing zeros. You may need to do extra string processing to get the exact display value you want, and that's likely better done on the client.</p> http://stackoverflow.com/questions/1759508/why-3-equal-symbols-in-boolean-comparisons/1759521#1759521 3 Answer by Joel Coehoorn for Why 3 equal symbols in boolean comparisons? Joel Coehoorn 2009-11-18T22:13:16Z 2009-11-18T22:13:16Z <p>The === does not allow type coercion, so something like this would return false:</p> <pre><code>if (2 === '2') // false </code></pre> <p>The "normal" javascript == operator does allow type coercion, and so this would return true:</p> <pre><code>if (2 == '2') // true </code></pre> http://stackoverflow.com/questions/1759029/foreach-in-sql/1759079#1759079 2 Answer by Joel Coehoorn for Foreach in SQL? Joel Coehoorn 2009-11-18T21:04:31Z 2009-11-18T21:04:31Z <pre><code>INSERT INTO `term_nodes` (fld1, fld2, fld3) SELECT tn.`tid`, 4, n.`nid` FROM `nodes` n INNER JOIN `term_nodes` tn ON tn.`name`=n.`Y` WHERE n.`ContentType`= X </code></pre> http://stackoverflow.com/questions/1758828/mysql-query-glitch/1758903#1758903 2 Answer by Joel Coehoorn for MySQL Query Glitch Joel Coehoorn 2009-11-18T20:38:10Z 2009-11-18T20:38:10Z <p>I'm not sure exactly why your table is updated by a select query. But I do know you're going about building your query string all wrong. You should do it like this instead:</p> <pre><code>Using cn As New MySqlConnection("your connection string here"), _ cmd As New MySqlCommand("SELECT points FROM user WHERE username= @UserName") cmd.Parameters.AddWithValue("@UserName", UsernameText.Text) cn.Open() ''# ExecuteReader or Fill command go here, connection will be automatically closed ''# when control falls out of the using block, even if an exception is thrown End Using </code></pre> http://stackoverflow.com/questions/1841970/how-to-create-a-db-that-holds-all-my-tables-tables-from-aspnetdb-and-my-other-ta/1841985#1841985 Comment by Joel Coehoorn on How to create a DB that holds all my tables (tables from ASPNETDB and my other tables)? Joel Coehoorn 2009-12-04T16:23:32Z 2009-12-04T16:23:32Z Your connection refers to an .mdf file. <i>That is sql server,</i> even if the storage file is located in your app_data folder. You won't be able to use that file without a sql server engine running that you can attach it to. asp.net just hides the attachment part from you. http://stackoverflow.com/questions/1841970/how-to-create-a-db-that-holds-all-my-tables-tables-from-aspnetdb-and-my-other-ta/1841985#1841985 Comment by Joel Coehoorn on How to create a DB that holds all my tables (tables from ASPNETDB and my other tables)? Joel Coehoorn 2009-12-04T15:29:27Z 2009-12-04T15:29:27Z The program should still be included with VWD Express. I would normally tell you to use the visual studio command prompt to access it, but I'm not sure whether or not that feature is excluded from VWD Express. To stat a normal command prompt, in windows XP just go to your start menu, choose <code>Run</code>, and type &quot;<code>cmd</code>&quot; into the window that opens. http://stackoverflow.com/questions/1845112/select-distinct-of-a-date-along-with-other-fields-from-a-table Comment by Joel Coehoorn on Select distinct of a date along with other fields from a table Joel Coehoorn 2009-12-04T06:52:19Z 2009-12-04T06:52:19Z you need to define &quot;first&quot; http://stackoverflow.com/questions/1841970/how-to-create-a-db-that-holds-all-my-tables-tables-from-aspnetdb-and-my-other-ta/1841985#1841985 Comment by Joel Coehoorn on How to create a DB that holds all my tables (tables from ASPNETDB and my other tables)? Joel Coehoorn 2009-12-03T21:04:27Z 2009-12-03T21:04:27Z As for how to use it, check it's command line options the same way as any other windows command line program (via the <code>/?</code> switch). http://stackoverflow.com/questions/1841970/how-to-create-a-db-that-holds-all-my-tables-tables-from-aspnetdb-and-my-other-ta/1841985#1841985 Comment by Joel Coehoorn on How to create a DB that holds all my tables (tables from ASPNETDB and my other tables)? Joel Coehoorn 2009-12-03T21:03:50Z 2009-12-03T21:03:50Z I don't have the location handy. Use the Visual Studio command prompt and it should be in the path, or use windows search to find it. http://stackoverflow.com/questions/1842040/c-net-3-5-is-there-any-way-to-get-this-function-name/1842061#1842061 Comment by Joel Coehoorn on C# (.NET 3.5) Is there any way to get this function name? Joel Coehoorn 2009-12-03T21:01:56Z 2009-12-03T21:01:56Z You're thinking stack- <b>trace</b>. This code just checks an individual frame. http://stackoverflow.com/questions/1841823/concepts-in-c-3-0 Comment by Joel Coehoorn on Concepts in C# 3.0 Joel Coehoorn 2009-12-03T18:25:07Z 2009-12-03T18:25:07Z &quot;3.0&quot; by itself is a very bad tag. http://stackoverflow.com/questions/1836016/sqlserverce-problem-with-parameterized-queries-from-net Comment by Joel Coehoorn on SQLServerCE Problem with parameterized queries from .NET Joel Coehoorn 2009-12-03T18:09:11Z 2009-12-03T18:09:11Z have you tried <code>inv&#95;type&#95;name = COALESCE(@name, inv&#95;type&#95;name)</code> (with DBNull.Value for the parameter value)? http://stackoverflow.com/questions/1743650/is-there-a-standard-way-for-net-winforms-apps-to-auto-upgrade/1743750#1743750 Comment by Joel Coehoorn on Is there a standard way for .NET Winforms apps to auto-upgrade? Joel Coehoorn 2009-12-03T15:17:54Z 2009-12-03T15:17:54Z @Theraneman : ClickOnce can ensure an app is up to date every time it's run. What does it matter if the app is a few days out of date if the user hasn't run it? http://stackoverflow.com/questions/1836076/storing-special-characters-in-database/1836119#1836119 Comment by Joel Coehoorn on Storing special characters in database Joel Coehoorn 2009-12-03T02:55:06Z 2009-12-03T02:55:06Z Maybe for a while, but eventually someone will try to put unicode characters into your app. best to be prepared. http://stackoverflow.com/questions/1836338/saving-panel-as-an-image Comment by Joel Coehoorn on Saving Panel as an Image ... Joel Coehoorn 2009-12-02T22:36:37Z 2009-12-02T22:36:37Z ... I'd correct the post myself, but if that's pasted from your real source you might want to know about it... http://stackoverflow.com/questions/1836338/saving-panel-as-an-image Comment by Joel Coehoorn on Saving Panel as an Image ... Joel Coehoorn 2009-12-02T22:36:05Z 2009-12-02T22:36:05Z You have &quot;pgn&quot; instead of &quot;png&quot; in your filter. http://stackoverflow.com/questions/1836198/override-a-file-checkout-in-visual-studio-2003 Comment by Joel Coehoorn on Override a File Checkout in Visual Studio 2003 Joel Coehoorn 2009-12-02T22:26:41Z 2009-12-02T22:26:41Z Visual Studio itself never checks out files. Do you mean source safe or other source control plugin? http://stackoverflow.com/questions/1836076/storing-special-characters-in-database/1836119#1836119 Comment by Joel Coehoorn on Storing special characters in database Joel Coehoorn 2009-12-02T22:24:34Z 2009-12-02T22:24:34Z varchar only allows a single byte per character. &quot;special&quot; characters often require more than that. http://stackoverflow.com/questions/1836016/sqlserverce-problem-with-parameterized-queries-from-net Comment by Joel Coehoorn on SQLServerCE Problem with parameterized queries from .NET Joel Coehoorn 2009-12-02T21:57:01Z 2009-12-02T21:57:01Z I fail to see a material difference between your first and second samples. What &quot;function&quot; are you referring to? .Fill()?