User lc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T06:07:29Zhttp://stackoverflow.com/feeds/user/44853http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1798874/t-sql-str-c-net-linq-to-sql-equivalent/1798923#17989230Answer by lc for T-SQL STR() C#.NET LINQ to SQL Equivalentlc2009-11-25T18:16:11Z2009-11-25T18:16:11Z<p>The first thing that comes to mind is <a href="http://msdn.microsoft.com/en-us/library/f71z6k0c.aspx" rel="nofollow"><code>ToString()</code></a>.</p>
<p>See the link for some examples of how to format it to your liking, or refer to the following:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx" rel="nofollow">Standard Numeric Format Strings</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/0c899ak8.aspx" rel="nofollow">Custom Numeric Format Strings</a></li>
</ul>
<p><hr></p>
<p>However, your statement here leads me to question whether you <em>really</em> want a string or not:</p>
<blockquote>
<p>I'm trying to explicitly set the number of decimal places for a field.</p>
</blockquote>
<p>Perhaps you could clarify what exactly you're trying to do?</p>
http://stackoverflow.com/questions/1798752/linq-where-extension-method-lambda-expressions-and-bools/1798809#17988091Answer by lc for Linq, Where Extension Method, Lambda Expressions, and Bool'slc2009-11-25T17:59:46Z2009-11-25T18:06:29Z<p>You're not assigning the results of your queries to anything. Each call to <code>Where()</code> returns the results of that query, which you'll need to do something with.</p>
<p>In your case, you have a few options (all of which produce the same final result):</p>
<ul>
<li><p>If you want to do something with the non-Bool1 results, you can choose to keep them around:</p>
<pre><code>var notBool1 = results.Where(l => !l.Bool1);
var query = notBool1.Where(l => l.Column1.Contains(fooString));
</code></pre></li>
<li><p>You can chain <code>Where()</code> calls together:</p>
<pre><code>var query = results.Where(l => !l.Bool1)
.Where(l => l.Column1.Contains(fooString));
</code></pre></li>
<li><p>This is probably the fastest, although perhaps not by much:</p>
<pre><code>var query = results.Where(l => !lBool1 && l.Column1.Contains(fooString));
</code></pre></li>
</ul>
http://stackoverflow.com/questions/1795767/change-datetime-in-debugger/1795798#17957982Answer by lc for Change DateTime in debuggerlc2009-11-25T09:48:32Z2009-11-25T09:48:32Z<p>Without looking at what you have, I'm not really sure what edit field you're referring to. However, you could try using the immediate window and <code>DateTime.Parse</code> or <code>new DateTime()</code> instead.</p>
http://stackoverflow.com/questions/1795693/how-to-close-dialog-opened-by-showmodaldialog/1795722#17957223Answer by lc for How to close dialog opened by showModalDialog?lc2009-11-25T09:31:09Z2009-11-25T09:31:09Z<p>The definition of a modal window is that execution of the current function stops until the modal window is closed. That is, the call to <code>showModalDialog()</code> will block until the shown dialog is closed. Therefore, your <code>win.close()</code> will be called <em>after</em> the window is already closed (not what you're intending).</p>
<p>You have a couple options:</p>
<ul>
<li><p>Show the dialog as non-modal and wait in an events loop until a certain condition is met. Then, close the window from the calling function.</p></li>
<li><p>The modal dialog closes itself at an appropriate time.</p></li>
</ul>
http://stackoverflow.com/questions/1788051/copy-a-column-of-data-from-one-excel-file-to-another-file/1788097#17880971Answer by lc for Copy a column of data from one excel file to another file..lc2009-11-24T05:56:51Z2009-11-24T05:56:51Z<p>It might make life a lot easier to keep everything in one workbook using separate sheets instead of completely separate files. Then you can make use of HLOOKUP, VLOOKUP, and referencing ranges with the <code>Sheetname!Address</code> format (<code>Sheet1!A3:A4</code> for example)...</p>
http://stackoverflow.com/questions/1788001/search-functionality/1788023#17880230Answer by lc for search functionalitylc2009-11-24T05:36:26Z2009-11-24T05:36:26Z<p>Well, outside of SQL, you're left to the calling application to do searches. <em>Definitely</em> not the recommended choice if you can avoid it as you'll have to read all data first before searching it; indexing is a very powerful feature for databases.</p>
<p>If you want to display all data and <em>then</em> manipulate/sort/filter it, however, this method has its place.</p>
<p>Perhaps you wish to clarify your question as to what you're looking to accomplish?</p>
http://stackoverflow.com/questions/1787790/how-to-reference-one-foreign-key-column-with-multiple-primary-key-column/1787821#17878210Answer by lc for How to reference one foreign key column with multiple primary key columnlc2009-11-24T04:39:30Z2009-11-24T04:39:30Z<p>Create a "person" superclass that can be either of type "student" or type "faculty". Reference <em>this</em> from the <code>BOOK_Issue</code> table instead.</p>
<p>Basically to create this relationship, you'll need one unique ID that spans both "student" and "faculty". Put this in a table (<code>tbl_person</code>?) and have each row in <code>tbl_student</code> and <code>tbl_faculty</code> reference this new table. It's probably also best to then pull out the fields present in both <code>tbl_student</code> and <code>tbl_faculty</code> and put them in this new supertable instead.</p>
http://stackoverflow.com/questions/1787396/what-would-happen-if-i-re-apply-the-job-that-i-failed-the-interview-previously/1787441#17874411Answer by lc for What would happen if I re-apply the job that I failed the interview previously?lc2009-11-24T02:37:09Z2009-11-24T02:37:09Z<p>Well, one thing's for sure: if you <em>don't</em> re-apply, you <em>definitely won't</em> get another phone screening chance.</p>
<p>As @Greg D said, if they do give you another chance, you have the opportunity to show your stuff for real this time. If not, take it as a learning experience and make the next interview a priority in your schedule.</p>
http://stackoverflow.com/questions/1786993/dealing-with-tokens-in-c/1787295#17872950Answer by lc for Dealing with Tokens in C#lc2009-11-24T01:50:09Z2009-11-24T01:50:09Z<p>To simply answer your question, what's wrong with <code>tokenMachine.AddTokens(-2)</code>? Given the requirements, it doesn't seem to be out of the question. The .NET framework also commonly uses this construction as well (e.g. <code>DateTime.AddDays()</code> takes a negative number to subtract).</p>
<p>However, a bad instructor may mark you off for this, using the argument that "[he intended to specify that] the machine can only dispense one token at a time", so it may be best to clarify the specifications.</p>
http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1770473#17704733Answer by lc for Code-Golf: What is the shortest program that compiles and crashes?lc2009-11-20T13:38:11Z2009-11-20T13:38:11Z<p>In QBasic:</p>
<pre><code>? 1/0
</code></pre>
<p>(At least I <em>think</em> it'll still compile and then crash with divide-by-zero; it's been quite some time...)</p>
http://stackoverflow.com/questions/1770135/send-a-key-press-to-an-active-app-problem/1770182#17701820Answer by lc for Send a key press to an active app problemlc2009-11-20T12:32:07Z2009-11-20T12:32:07Z<p>I'm guessing Frets on Fire doesn't deal with Windows keypress messages, but is instead polling the input devices directly; thus it won't respond to <code>SendKeys</code>.</p>
<p>As for workaround options, the two I come up with off-hand are:</p>
<ul>
<li>Create/find an input device driver to communicate with. There has to be some joystick/gamepad driver or something somewhere you can modify to work with.</li>
<li>Open up Frets on Fire and look at how it gets its input. Either learn from this or add a hook you can then use to communicate.</li>
</ul>
<p>Mind you, neither of these seems like a quick job.</p>
http://stackoverflow.com/questions/888865/problem-with-icon-on-creating-new-maximized-mdi-child-form-in-net3Problem with icon on creating new maximized MDI child form in .NETlc2009-05-20T16:11:21Z2009-09-21T10:34:29Z
<p>I have a .NET 3.5 MDI WinForms application.</p>
<p>I set a a child form's <code>Icon</code> property, and the icon shows up correctly in the top left corner of the form. I then maximize the child form and the icon is still OK.</p>
<p><em>With the child form still maximized</em>, I open another child window, which automatically comes up maximized. This form's icon is not the one in the <code>Icon</code> property, but the default .NET icon (the one with the blue, red, and yellow squares). However, if I <em>resize</em> the MDI parent form, the icon resets itself and displays properly.</p>
<p>Does anyone have a workaround or know why this happens?</p>
http://stackoverflow.com/questions/676078/which-is-preferred-nullable-hasvalue-or-nullable-null5Which is preferred: Nullable<>.HasValue or Nullable<> == null?lc2009-03-24T03:30:01Z2009-08-30T19:41:17Z
<p>I always used (a)<code>Nullable<>.HasValue</code> because I liked the semantics. However, recently I was working on someone else's existing code base where they used (b)<code>Nullable<> == null</code> exclusively instead. Is there a reason to use one over the other, or is it purely preference?</p>
<p>(a)</p>
<pre><code>int? a;
if(a.HasValue)
...
</code></pre>
<p>(b)</p>
<pre><code>int? b;
if(b != null)
...
</code></pre>
http://stackoverflow.com/questions/420998/binding-a-combobox-to-an-ilist-and-using-selectedvalue0Binding a ComboBox to an IList and using SelectedValuelc2009-01-07T16:28:59Z2009-08-10T08:45:29Z
<p>I have a <code>ComboBox</code> set up as follows, where <code>KVPList</code> is an <code>IList</code> (of <code>KeyValuePair</code> if it matters):</p>
<pre><code>comboBox.DisplayMember = "Value";
comboBox.ValueMember = "Key";
comboBox.DataSource = KVPList;
</code></pre>
<p>I then have set up a binding with <code>SelectedValue</code>, binding to a <code>BindingSource</code> (to a <code>DataSet</code>). For whatever reason, the combo box always turns up blank when the form is displayed. It is properly populated, however (the values of the <code>IList</code> show up fine and can be selected).</p>
<p>Now, I've tried my best to trace through, and it appears to initially set the SelectedValue correctly when bound, but then somewhere along the way it gets reset to <code>null</code>. I've played with the order things get called as well, to no avail.</p>
<p>Can anyone shed some light on this or suggest a workaround?</p>
<p>For the record, on the same form, I have another <code>ComboBox</code> on the same form, with its <code>SelectedValue</code> bound to the same <code>BindingSource</code>. The <code>DataSource</code> is a <code>DataSet</code>, not an <code>IList</code> and it works like a charm. It might be an option to make a <code>DataTable</code> from the <code>IList</code>, but it seems like a whole lot of extra overhead; I'm generating the <code>IList</code> from an enumeration.</p>
http://stackoverflow.com/questions/1234329/sql-selecting-finished-orders-with-multiple-operations/1234344#12343441Answer by lc for SQL Selecting finished orders with multiple operationslc2009-08-05T16:32:14Z2009-08-05T16:56:47Z<p>A good ol' <code>WHERE NOT EXISTS</code> clause ought to work here:</p>
<pre><code>SELECT DISTINCT o.order_no
FROM orders o
WHERE NOT EXISTS (SELECT p.order_no
FROM orders p
WHERE p.order_no = o.order_no
AND p.finished IS NULL)
</code></pre>
http://stackoverflow.com/questions/1234089/how-can-i-use-to-combine-these-two-lines-into-one/1234172#12341720Answer by lc for How can I use ?? to combine these two lines into one?lc2009-08-05T15:59:47Z2009-08-05T15:59:47Z<p>Not quite. The closest you'll get is with an extension method like the following:</p>
<pre><code>public static string ValueOrDefault(this XAttribute attribute, string Default)
{
if(attribute == null)
return Default;
else
return attribute.Value;
}
</code></pre>
<p>Then you can shorten your two lines into:</p>
<pre><code>string lastNameDisplay = xml.Element("lastName").Attribute("display").ValueOrDefault("NONE");
</code></pre>
http://stackoverflow.com/questions/1233916/linq-find-all-checked-checkboxes-in-a-gridview/1233947#12339473Answer by lc for LINQ: find all checked checkboxes in a GridViewlc2009-08-05T15:18:20Z2009-08-05T15:18:20Z<p>I'm pretty sure you're not going to get any performance improvement from this, but it might make it <em>slightly</em> easier to read:</p>
<pre><code>var checkedIDs = from GridViewRow msgRow in messagesGrid.Rows
where ((CheckBox)msgRow.FindControl("chkUpdateStatus")).Checked
select Int32.Parse(messagesGrid.DataKeys[msgRow.RowIndex].Value.ToString());
</code></pre>
<p>Again, not sure it makes a difference. Also, why are you converting to a string then to an int? Is there something <code>Convert.ToInt32</code> can't do for you?</p>
http://stackoverflow.com/questions/1227835/sql-combine-two-tables-for-one-output/1227844#12278447Answer by lc for SQL - Combine two tables for one outputlc2009-08-04T14:26:54Z2009-08-04T14:26:54Z<p>You'll need to use <code>UNION</code> to combine the results of two queries. In your case:</p>
<pre><code>SELECT ChargeNum, CategoryID, SUM(Hours)
FROM KnownHours
GROUP BY ChargeNum, CategoryID
UNION ALL
SELECT ChargeNum, 'Unknown' AS CategoryID, SUM(Hours)
FROM UnknownHours
GROUP BY ChargeNum
</code></pre>
<p>Note - If you use <code>UNION ALL</code> as in above, it's no slower than running the two queries separately as it does no duplicate-checking.</p>
http://stackoverflow.com/questions/1225398/how-do-i-use-group-by-showing-the-newest-row-of-data/1225407#12254070Answer by lc for How do I use group by showing the newest row of datalc2009-08-04T01:49:32Z2009-08-04T02:09:38Z<p>I think you're looking for the <code>ORDER BY</code> clause.</p>
<pre><code>SELECT Foo.Bar, Foo.SomeTimestamp
FROM Foo
ORDER BY Foo.SomeTimestamp DESC
</code></pre>
<p>If you're grouping by a column, you're probably returning aggregate data. If the timestamp is unique for each row of aggregate data, you may need to use the <code>MAX</code> function (or the like) to return a single timestamp for each group. For example:</p>
<pre><code>SELECT Foo.TypeID, SUM(Foo.Price) AS Price, MAX(Foo.OrderDate) AS LastOrder
FROM Foo
GROUP BY Foo.TypeID
ORDER BY MAX(Foo.OrderDate) DESC
</code></pre>
<p><hr /></p>
<p>If you only want the first row, you can use the <code>LIMIT</code> clause:</p>
<pre><code>SELECT Foo.Bar, Foo.SomeTimestamp
FROM Foo
ORDER BY Foo.SomeTimestamp DESC
LIMIT 0, 1
</code></pre>
<p>This starts at row 0 and returns at most 1 row.</p>
http://stackoverflow.com/questions/1225294/c-find-a-file-within-all-possible-folders/1225313#12253130Answer by lc for c# Find a file within all possible folders?lc2009-08-04T00:54:31Z2009-08-04T00:54:31Z<p>If you want to know a little more about the mechanics of searching multiple directories, Googling revealed <a href="http://dotnetperls.com/recursively-find-files" rel="nofollow">this post</a>. It has a good solution and explanation of recursing through directories yourself. You can change the filespec in <code>Directory.GetFiles</code> to match your search string and probably use it as is.</p>
http://stackoverflow.com/questions/1225214/c-identifier-expected/1225237#12252372Answer by lc for c# identifier expected?lc2009-08-04T00:18:02Z2009-08-04T00:18:02Z<p>Here is your problem:</p>
<pre><code>static void RecursiveCopy(origDir, destDir)
</code></pre>
<p>You don't specify the types for the parameters, perhaps you intended the following:</p>
<pre><code>static void RecursiveCopy(string origDir, string destDir)
</code></pre>
<p><hr /></p>
<p>There are more issues however that I've noticed. It's possible you're still working on these, but from what you've posted:</p>
<ul>
<li><p>You never call your <code>RecursiveCopy</code> method. Perhaps you meant to <em>call it from <code>Main()</code></em> instead of declaring an overload with two parameters?</p></li>
<li><p>You declare two public fields <code>origDir</code> and <code>destDir</code> but then never use them. Instead you create two local variables in <code>RecursiveCopy()</code> and use these instead. <em>Did you intend to create parameters or use the public fields instead?</em></p></li>
<li><p>Your copy is not actually true to its name of "recursive".</p></li>
</ul>
http://stackoverflow.com/questions/1225180/sql-two-outer-joins/1225204#12252040Answer by lc for SQL - Two Outer Joinslc2009-08-04T00:05:34Z2009-08-04T00:05:34Z<p>I'm guessing you want the provinces and states concatenated in one table. For this, you'll want the union operator. I've also added a column <code>RegionType</code> which is 0 for a province and 1 for a state. You might want to apply this pattern as a way to differentiate between the two in your final query.</p>
<p>Try something like:</p>
<pre><code>SELECT c.Name as CountryName, p.Name as RegionName, 0 as RegionType
FROM Country c
LEFT OUTER JOIN Province p on c.ID = p.CountryID
UNION ALL
SELECT c.Name as CountryName, s.Name as RegionName, 1 as RegionType
FROM Country c
LEFT OUTER JOIN State s on s.ID = p.CountryID
</code></pre>
http://stackoverflow.com/questions/1204217/mysql-select-join-3-tables/1204250#12042501Answer by lc for MySQL Select JOIN 3 Tableslc2009-07-30T03:10:47Z2009-07-30T03:21:30Z<p>You'll need two joins. Something like the following should get you started (although I don't 100% understand the relationship between <code>pm_data</code> and <code>pm_info</code>):</p>
<pre><code>SELECT pm_info.is_read, sender.usrFirst + ' ' + sender.usrLast as sender_name,
pm_data.date_sent, pm_data.title, pm_data.thread_id
FROM pm_info
INNER JOIN pm_data ON pm_info.thread_id = pm_data.thread_id
INNER JOIN tblUsers AS sender ON pm_data.sender_id = tblUsers.usrID
WHERE pm_info.receiver_id = @USER_ID /*in this case, 2*/
ORDER BY pm_data.date_sent DESC
</code></pre>
<p>I'm assuming the relation between <code>pm_data</code> and <code>pm_info</code> is the thread id. If it isn't, you should be able to adjust the above to whatever you need. I've also sorted by date sent here, but <strong>it won't keep the threads together</strong>. I'm not sure if you want to keep them together or not from the way you've phrased your question.</p>
<p><hr /></p>
<p><strong>If you want to keep threads together</strong>, you'll need a more complicated query:</p>
<pre><code>SELECT pm_info.is_read, sender.usrFirst + ' ' + sender.usrLast as sender_name,
pm_data.date_sent, pm_data.title, pm_data.thread_id
FROM pm_info
INNER JOIN pm_data ON pm_info.thread_id = pm_data.thread_id
INNER JOIN tblUsers AS sender ON pm_data.sender_id = tblUsers.usrID
INNER JOIN (SELECT thread_id, MAX(date_sent) AS max_date
FROM pm_data
GROUP BY thread_id) AS most_recent_date
ON pm_data.thread_id = most_recent_date.thread_id
WHERE pm_info.receiver_id = @USER_ID /*in this case, 2*/
ORDER BY most_recent_date.max_date DESC, pm_data.thread_id,
pm_data.date_sent DESC
</code></pre>
<p>This query uses a subselect to find the most recent modified date for each thread, then sorts by this first.</p>
http://stackoverflow.com/questions/1194289/evaluation-of-multiples-in-expressions-in-where-clauses-in-mysql/1194361#11943611Answer by lc for Evaluation of multiples 'IN' Expressions in 'WHERE' clauses in mysql lc2009-07-28T14:10:29Z2009-07-28T14:10:29Z<p>Your example does not exactly illustrate your question, but <em>multiple IN clauses are not related to one another; they are evaluated in sequence like any other WHERE clause</em>.</p>
<p>Thus, the following query</p>
<pre><code>SELECT * FROM FOO WHERE b IN(5,7) AND c IN(4,8)
</code></pre>
<p>will match any of the following:</p>
<pre>b c
----
5 4
5 8
7 4
7 8</pre>
<p><hr /></p>
<p><code>IN</code> can be considered shorthand for or-separated comparisons. This means the previous query can also be written as (the mechanics are slightly different, but the concept is the same):</p>
<pre><code>SELECT * FROM FOO WHERE (b = 5 OR b = 7) AND (c = 4 OR c = 8)
</code></pre>
<p><hr /></p>
<p>So, in your example, yes, the only rows returned are 2 and 4. But it is not quite for the reason you suppose.</p>
http://stackoverflow.com/questions/948881/image-animation-stops-on-minimizing-and-restoring0Image animation stops on minimizing and restoringlc2009-06-04T06:28:32Z2009-07-28T06:10:14Z
<p>I have a .NET WinForms application with an animated GIF in a <code>PictureBox</code>. It's a loading animation, shown while a <code>BackgroundWorker</code> does some processing in another thread. I load the image by setting the <code>Image</code> property and it animates on its own.</p>
<p>All is fine until I minimize and restore the application. At which point, the image stops animating and just displays whatever frame it was last on. </p>
<p>Note that:</p>
<ul>
<li>The background thread still runs fine and none of the "business" of the application is affected.</li>
<li>Subsequently-displayed animated GIFs do work fine (unless the application is minimized again).</li>
</ul>
<p>Does anyone know what causes this problem? Any workarounds?</p>
http://stackoverflow.com/questions/412256/can-the-iphone-determine-if-youre-facing-north-south-east-or-west/412275#4122753Answer by lc for Can the iPhone determine if you're facing north, south, east or west?lc2009-01-05T04:31:54Z2009-07-27T01:11:18Z<p>There's no compass in the iPhone or iPhone 3G. <em>The iPhone 3GS, however, has seen the addition of a digital compass, so this process has become easier.</em></p>
<p>On a 1st gen or 3G, the only way to determine facing is what stalepretzel is suggesting. But beware that it will only work when the GPS has a sufficient lock and the user is actually moving. You'll have to do a lot of smoothing to get any kind of usable data, perhaps with instructions to the user to hold it still while walking.</p>
http://stackoverflow.com/questions/1133311/how-to-use-two-ordering-criteria-in-c/1133399#11333992Answer by lc for How to use two ordering criteria in C#?lc2009-07-15T19:19:21Z2009-07-15T19:19:21Z<p>You can use another <code>OrderBy</code> clause.</p>
<pre><code>items = items.Where(a => a.Contains(contained))
.OrderBy(a => a.StartsWith(contained) ? 0 : 1)
.ThenBy(a => a);
</code></pre>
http://stackoverflow.com/questions/1133167/how-to-extract-frame-timing-information-from-animated-gif1How to extract frame timing information from animated GIF?lc2009-07-15T18:40:07Z2009-07-15T18:45:30Z
<p>This is brought on by a <a href="http://stackoverflow.com/questions/796186/animated-gif-in-imagelist-tabpage">previous question</a>. Apparently <code>ImageList</code> doesn't support animated GIFs, so I'm stuck animating it myself.</p>
<p>I know <a href="http://www.vcskicks.com/csharp_animated_gif.html" rel="nofollow">how to extract the frames</a>, but does anyone know how to extract the <em>frame timing information</em> from an animated GIF?</p>
http://stackoverflow.com/questions/796186/animated-gif-in-imagelist-tabpage0Animated GIF in ImageList / TabPagelc2009-04-28T04:13:49Z2009-07-15T18:32:40Z
<p>I'd like to show an animated GIF as the tab image on a <code>TabPage</code>.</p>
<p>If I add my image to an <code>ImageList</code> and use the <code>TabPage.ImageIndex</code> property, it only shows the first frame (and doesn't animate):</p>
<pre><code>ImageList imageList = new ImageList();
imageList.Images.Add(Properties.Resources.my_animated_gif);
tabControl.ImageList = imageList;
tabPage.ImageIndex = 0;
</code></pre>
<p>A few forums on the net also suggest <code>ImageList</code> doesn't support animated GIFs.</p>
<p>Is there an easy way to display an animated GIF as an image on a <code>TabPage</code>? Do I have to owner-draw and animate the image?</p>
http://stackoverflow.com/questions/1132471/how-to-reference-column-name-instead-of-e-columnindex-in-winform-datagridview-eve/1132500#11325001Answer by lc for How to reference column name instead of e.ColumnIndex in WinForm DataGridView event handlers?lc2009-07-15T16:31:24Z2009-07-15T16:31:24Z<p>Sure. It's of course not directly <em>in</em> the <code>DataGridViewCellEventArgs</code>, but it's easily obtainable. In your event handler:</p>
<pre><code>DataGridView dgv = (DataGridView)sender;
string columnName = dgv.Columns[e.ColumnIndex].Name;
</code></pre>
http://stackoverflow.com/questions/1806607/trim-all-whitespace-in-an-arrayComment by lc on Trim all whitespace in an arraylc2009-11-27T03:43:10Z2009-11-27T03:43:10Z@Matt Hamilton - it looks like "trim" means <i>all</i> whitespace. From the example, I assume the 2nd, 4th, and 6th elements should be one word each (i.e. "Amargasaurus", "Brachiosaurus", and "Tyrannosaurus" respectively).http://stackoverflow.com/questions/1806607/trim-all-whitespace-in-an-array/1806624#1806624Comment by lc on Trim all whitespace in an arraylc2009-11-27T03:41:15Z2009-11-27T03:41:15ZCuriosity question, but what's the cost of making a new array vs editing the current one in place? Does the compiler optimize it to the same thing?http://stackoverflow.com/questions/1806607/trim-all-whitespace-in-an-array/1806615#1806615Comment by lc on Trim all whitespace in an arraylc2009-11-27T03:40:04Z2009-11-27T03:40:04ZYou could also use a foreach loop.http://stackoverflow.com/questions/1795693/how-to-close-dialog-opened-by-showmodaldialog/1795722#1795722Comment by lc on How to close dialog opened by showModalDialog?lc2009-11-25T18:23:45Z2009-11-25T18:23:45ZWell, the dialog could <i>close itself</i> with <code>window.close()</code>, but just as @sdwilsh says, you can't do anything from outside of it.http://stackoverflow.com/questions/1798874/t-sql-str-c-net-linq-to-sql-equivalent/1798923#1798923Comment by lc on T-SQL STR() C#.NET LINQ to SQL Equivalentlc2009-11-25T18:20:30Z2009-11-25T18:20:30ZWhy don't you take the number as is from the database, then convert it to a string when you go to display it?http://stackoverflow.com/questions/1795763/gridview-export-to-csv-issueComment by lc on Gridview: Export to csv issuelc2009-11-25T09:46:11Z2009-11-25T09:46:11ZIs it possible the GridView isn't actually bound yet at the time you're trying to export (and thus has no rows)?http://stackoverflow.com/questions/1787964/username-password-string-comparison-problemComment by lc on Username & password string comparison problemlc2009-11-24T05:24:02Z2009-11-24T05:24:02ZWhat's <code>passwordField.getPassword()</code> returning?http://stackoverflow.com/questions/1787939/check-time-difference-in-javascriptComment by lc on check time difference in javascriptlc2009-11-24T05:14:05Z2009-11-24T05:14:05ZWhat format is the user entering the times?http://stackoverflow.com/questions/1787881/convert-any-file-to-csv-formate/1787904#1787904Comment by lc on convert any file to .csv formatelc2009-11-24T05:12:39Z2009-11-24T05:12:39ZThis should <i>really</i> be a comment...http://stackoverflow.com/questions/1787834/can-i-know-what-opensource-paid-script-are-they-usingComment by lc on Can I know what opensource/paid script are they using ?lc2009-11-24T04:45:47Z2009-11-24T04:45:47ZNot sure what you mean by 'script', but can't you just check the source?http://stackoverflow.com/questions/1787717/c-which-is-faster-do-while-or-for/1787719#1787719Comment by lc on C# which is faster do/while or for?lc2009-11-24T04:14:59Z2009-11-24T04:14:59ZIn my world, 0 is always less than 13, and thus the for loop above will always be executed. Besides, isn't a for loop just syntactic sugar for a do-while loop anyway? Am I just missing something in your explanation?http://stackoverflow.com/questions/1787449/how-to-get-from-sub-query-where-id-does-not-exist/1787452#1787452Comment by lc on How to get from sub query where id does not existlc2009-11-24T02:50:11Z2009-11-24T02:50:11Z@Ali Very true. Frankly, I've had flaky results with IN before; replacing it with EXISTS or JOIN has fixed the problem. Perhaps it's another example of this...http://stackoverflow.com/questions/1787449/how-to-get-from-sub-query-where-id-does-not-exist/1787452#1787452Comment by lc on How to get from sub query where id does not existlc2009-11-24T02:49:04Z2009-11-24T02:49:04Z@o.k.w It's a left-join, which says to take all records where the join conditions match and if there are no records matching the join condition to take the left side (TABLE_1 in this case) and set the right side NULL. Thus this query returns all rows where there is no matching TABLE_2 row.http://stackoverflow.com/questions/1787449/how-to-get-from-sub-query-where-id-does-not-exist/1787452#1787452Comment by lc on How to get from sub query where id does not existlc2009-11-24T02:46:43Z2009-11-24T02:46:43ZThis should produce the same result set as the OP's query, though, no? (Depending on how the RDBMS uses indexes, however, one <i>may</i> be faster than the other, but that's not the original question..)http://stackoverflow.com/questions/1787449/how-to-get-from-sub-query-where-id-does-not-existComment by lc on How to get from sub query where id does not existlc2009-11-24T02:42:22Z2009-11-24T02:42:22ZWhat is going wrong? At first glance your query looks OK for what you're describing...