User Robert Gowland - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T21:30:04Zhttp://stackoverflow.com/feeds/user/20570http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1822055/using-scons-to-perform-validation0Using scons to perform validationRobert Gowland2009-11-30T19:58:57Z2009-11-30T19:58:57Z
<p>My company is switching from make to scons. Part of our make process is to call xmllint on a number of xml files to validate them against a schema.</p>
<p>I've got the following in my SConstruct:</p>
<pre><code>import os;
Env = DefaultEnvironment()
pwd = Dir('.').path
xmlValidator = Builder(action = 'xmllint --noout --schema '+pwd+'/path/schema.xsd '+pwd+'file.xml')
Env.Append(BUILDERS = {'ValidateXML' : xmlValidator})
Env.ValidateXML()
</code></pre>
<p>When I run:</p>
<pre><code>scons -Q
</code></pre>
<p>I get:</p>
<pre><code>scons: `.' is up to date.
</code></pre>
<p>But no validation is run.</p>
<p>What am I doing wrong?</p>
<p>I'm completely new to scons, and moderately familiar with Python.</p>
http://stackoverflow.com/questions/1757053/are-there-any-debugging-patterns/1757274#17572740Answer by Robert Gowland for Are there any Debugging Patterns? Robert Gowland2009-11-18T16:32:09Z2009-11-18T16:32:09Z<p>Just a few I've come across:</p>
<ul>
<li>When two identical systems are
generating different results, verify
that (in order of likelihood):
<ul>
<li>The versions of all components are, in
fact, identical between the two
systems, </li>
<li>The config is identical
between the two systems, and </li>
<li>There is
no residual data on one system that
was not present on the other. </li>
</ul></li>
<li>gdb and
gcc parse code better than I do. Let
software do its job so you can do
yours.</li>
<li>When data comes out one end of a process different from what you're expecting, verify data all along the process to verify that it is as expected, rather than focusing on a function in the process down-stream from the real problem.</li>
<li>Do not focus on a specific piece of code if you haven't verified that it is the cause of the bug.</li>
<li>Get more sleep. Alert debugging is always more effective.</li>
</ul>
<p>I've got more on my web site under Software Development -> Debugging if you're interested.</p>
http://stackoverflow.com/questions/1730298/users-asking-for-denormalized-database/1731014#17310141Answer by Robert Gowland for Users asking for denormalized databaseRobert Gowland2009-11-13T18:28:25Z2009-11-13T18:28:25Z<p>The customer is always right. However, the customer is likely to back down when you convert their requirement into <strong>dollars and cents</strong>. A 100 column table will require <strong>extra dev time</strong> to write the code that does what the database would do automatically with the proper implementation. Further, their <strong>support costs will be higher</strong> since more code means more problems and lower ease of debugging.</p>
http://stackoverflow.com/questions/681953/python-class-decorator3Python Class DecoratorRobert Gowland2009-03-25T14:52:02Z2009-10-21T15:40:44Z
<p>In Python 2.5, is there a way to create a decorator that decorates a class? Specifically, I want to use a decorator to add a member to a class and change the constructor to take a value for that member.</p>
<p>Looking for something like the following (which has a syntax error on 'class Foo:':</p>
<pre><code>def getId(self): return self.__id
class addID(original_class):
def __init__(self, id, *args, **kws):
self.__id = id
self.getId = getId
original_class.__init__(self, *args, **kws)
@addID
class Foo:
def __init__(self, value1):
self.value1 = value1
if __name__ == '__main__':
foo1 = Foo(5,1)
print foo1.value1, foo1.getId()
foo2 = Foo(15,2)
print foo2.value1, foo2.getId()
</code></pre>
<p>Thanks,
Rob</p>
<p><strong>Edit:</strong>
Rereading this question, I guess what I'm really after is a way to do something like a C# interface in Python. I need to switch my paradigm I suppose.</p>
http://stackoverflow.com/questions/1588574/how-to-refactor-this/1588760#15887600Answer by Robert Gowland for How to refactor this? Robert Gowland2009-10-19T13:44:31Z2009-10-19T13:44:31Z<p>Are you looking for the Abstract Factory pattern? The declared intent in 'Design Patterns' is "Provide an interface for creating families of related or dependent objects without specifying their concrete classes."</p>
<p><a href="http://en.wikipedia.org/wiki/Abstract%5Ffactory" rel="nofollow">http://en.wikipedia.org/wiki/Abstract_factory</a></p>
http://stackoverflow.com/questions/1466966/whats-your-process-for-dealing-with-database-schema-changes-in-a-dev-team/1467278#14672780Answer by Robert Gowland for What's your process for dealing with database schema changes in a dev team?Robert Gowland2009-09-23T16:48:07Z2009-09-23T16:48:07Z<p>At my work, we deal with pretty large databases that are time-consuming to generate, so for us, starting from scratch with a new DB isn't ideal. Like Harper, we have our DDL in SVN. Additionally, we store a version number in a database table. Every check-in that changes the DB must be accompanied by a script that:</p>
<ol>
<li>Will upgrade the database schema and modify any existing data appropriately, and</li>
<li>Will update the version number in the database.</li>
</ol>
<p>Further, we number the scripts and database versions such that a script we've written knows how to upgrade further along a branch or from an older branch to a newer one without any input from the developer (apart from the database name and the directory to the upgrade scripts).</p>
<p>Thus, if I've got a copy of a customer's 4GB DB that's from a year old version and I want to test how their data will work with the version we cut yesterday, I can just run our script and let it handle the upgrades rather than having to start from scratch and redo every INSERT, UPDATE and DELETE performed since the database was created.</p>
http://stackoverflow.com/questions/561174/c-printing-a-net-datagridview/561712#5617120Answer by Robert Gowland for C# - Printing a .NET DataGridViewRobert Gowland2009-02-18T16:02:05Z2009-09-16T16:31:23Z<p>If you are going to be printing more than just DataGridViews, then a more generic approach may be worth pursuing. We use MigraDoc and then wrote our own class to read DataGridViews and output MigraDoc classes representing a table.</p>
<p>There are lots of great printing packages available, but I only have experience with MigraDoc.</p>
<p><strong>Edit:</strong></p>
<p>In response to comments, here is a link to my site showing the code I created for generating MigraDoc tables and an example of using it to display a DataGridView (<a href="http://www.gowland.ca/printing-tables-with-migradoc" rel="nofollow">DataGridView to MigraDoc tables</a>).</p>
http://stackoverflow.com/questions/1019835/c-prevent-delete-key-on-custom-widget-from-triggering-short-cut-on-menu0C# prevent Delete key on custom widget from triggering short-cut on menuRobert Gowland2009-06-19T20:11:15Z2009-06-26T14:37:13Z
<p>In a C# desktop application, I have a customer widget which contains a text box. I also have a menu item on a menu strip that has the Delete key as its short-cut key. The behaviour I'm finding is that pressing delete in the text box, which the user will expect to delete a character, is actually triggering the menu item and deleting the whole object they are working on.</p>
<p>Is there any way to let the text box have "first crack" at handling the key press rather than the menu item?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1019835/c-prevent-delete-key-on-custom-widget-from-triggering-short-cut-on-menu/1049462#10494621Answer by Robert Gowland for C# prevent Delete key on custom widget from triggering short-cut on menuRobert Gowland2009-06-26T14:31:13Z2009-06-26T14:37:13Z<p><strong>What we did</strong></p>
<p>The solution we ended up using was to disable those menu items, thereby disabling their respective short-cut keys, when the control that those menu items were intended to act upon.</p>
<p>This solved the problem where clicking delete in an unrelated text box deletes the selected item in the main widget. However, it introduces the problem that the user has to click on the main widget in order to access those menu items. To counter this a little bit, I did make it such that the main widget regains focus when the panel with the hideable widgets is hidden.</p>
<p>I'm not advocating this solution, just including it for completeness.</p>
<p><strong>What I would have liked</strong></p>
<p>My ultimate solution would be to only perform the action only if:</p>
<ol>
<li>the main widget has focus, OR</li>
<li>the even was triggered via clicking the menu item</li>
</ol>
<p>but there doesn't seem to be a way to detect whether the even was triggered by a short-cut key within the framework.</p>
http://stackoverflow.com/questions/757408/c-usercontrol-verticalscroll-value-not-being-set1C# UserControl.VerticalScroll.Value not being setRobert Gowland2009-04-16T18:19:48Z2009-06-24T20:26:00Z
<p>I've got a chunk of C# code that is supposed to set VerticalScroll.Value within a class that inherits from UserControl. It gets called when any child object of the class changes sizes. The class has its AutoScroll property set to true.</p>
<pre><code> public void ScrollTo(int top)
{
if (top >= this.VerticalScroll.Minimum && top <= this.VerticalScroll.Maximum)
{
this.VerticalScroll.Value = top;
}
}
</code></pre>
<p>The problem is, when tracing through the code, sometimes this.VerticalScroll.Value gets set, sometimes it keeps the value that it had before this method was called.</p>
<p>Is this a bug in VS, or are there known conditions under which the value will ignore attempts to set it?</p>
<p>Thanks,
Rob</p>
http://stackoverflow.com/questions/1037273/is-there-a-workflow-tool-that-increases-productivity/1038939#10389390Answer by Robert Gowland for Is there a Workflow tool that increases productivityRobert Gowland2009-06-24T15:04:14Z2009-06-24T15:04:14Z<p>It's low tech, but for each task I work on, I keep a text document open which describes the task I'm working on, the next actions, the actions I'm waiting on for other people, any assumptions I've made along the way, my test plan, and any other notes I made.</p>
<p>I find that this keeps me on track, let's me recover from interruptions faster, and forces me to think through the issue more clearly than keeping all this in my head. The result is time savings and better work/testing.</p>
<p>For example:</p>
<pre><code>Issue 57833
Assumptions:
- The import should fail on condition X
- Customer Y doesn't use the import
Next Actions:
[X] Get clarification or screenshot
( ) Waiting on account manager to get me the import file
[ ] Reproduce the bug
[ ] ...
[ ] ...
Tasks:
[X] Fix loop conditions in blah::method
[ ] Update config for customer A
[ ] Update config for customer B
[ ] Testing
Testing:
[ ] Import file with problem X; import correctly failed and reported X
[ ] Import file with problem Y; import correctly failed and reported Y
[ ] Added unit tests
Notes:
Using user 5323 to reproduce bug
</code></pre>
http://stackoverflow.com/questions/389439/datagridview-tooltiptext-not-showing0DataGridView ToolTipText not showingRobert Gowland2008-12-23T17:02:10Z2009-06-11T11:53:57Z
<p>I have data bound DataGridView in a desktop app with columns that have their ToolTipText property set, yet no tool tip is displayed when I hover over grid view (cells or cell headers).</p>
<p>The ShowCellToolTips property of the grid view is 'true', and I have verified using break points that it is not changed programatically before I mouse over.</p>
<p>I have tried creating a CellToolTipTextNeeded event handler to see what the tool tip text was, but the event handler is never called.</p>
<p>Is there anything I have missed?</p>
<p>Thanks,
Rob</p>
http://stackoverflow.com/questions/971270/is-function-point-analysis-still-used-for-estimates/971398#9713980Answer by Robert Gowland for Is function point analysis still used for estimates?Robert Gowland2009-06-09T17:20:10Z2009-06-09T17:20:10Z<p>I just took the introductory course of a project management program, and we didn't even look at "function point analysis" (I'm not sure what that is), but we spent a lot of time looking at WBS. All the following processes referred back to the WBS.</p>
http://stackoverflow.com/questions/965663/useful-bash-code-snippets/965937#9659377Answer by Robert Gowland for Useful BASH code snippetsRobert Gowland2009-06-08T17:07:54Z2009-06-08T17:24:13Z<p>In a BASH script, assign an argument to variable but provide a default if it exists:</p>
<pre><code>MYVAR=${1:-default}
</code></pre>
<p>$MYVAR will contain the first argument if one was given else "default".</p>
http://stackoverflow.com/questions/917576/how-can-i-avoid-pitfalls-passing-the-finished-product-to-the-install-team/939732#9397320Answer by Robert Gowland for How can I avoid pitfalls passing the finished product to the install team?Robert Gowland2009-06-02T13:59:00Z2009-06-02T13:59:00Z<p>After some discussion, it was our build team that came up with the idea of using something called Jump Start. We can package our RPMs and any necessary configuration (MySQL commands, changes to httpd.conf, etc...). Once we encounter a problem with an install, we can modify the script; this pretty much guarantees that the same mistake will not be made twice.</p>
<p>I'll update once we actually start using this live.</p>
http://stackoverflow.com/questions/917576/how-can-i-avoid-pitfalls-passing-the-finished-product-to-the-install-team4How can I avoid pitfalls passing the finished product to the install team?Robert Gowland2009-05-27T19:25:48Z2009-06-02T13:59:00Z
<p>Anyone out there have any experience with passing off a finished product to the install team?</p>
<p>Our product is installable via RPMs but also requires copying some MySQL data, modifying some config files and running a few development written scripts. Having an install team is great, but it is development that is on-call and after each install we get calls from the customer after hours that we have to support.</p>
<p>We do learn from each incident, but it would be good for our customers, our reputation and my sleep to be a bit more proactive.</p>
<p>Specifically:</p>
<ul>
<li>What tools have you used to improve
communication/collaboration between
the teams?</li>
<li>What technical solutions have you used? </li>
<li>What policies have you used? </li>
<li>Has anyone had any success with writing post-install validation tools?</li>
</ul>
<p><strong>Edit:</strong>
I should clarify that I'm not talking about software failures that development and/or QA should have caught. The problem is calls from the customer saying "Option A isn't available all of a sudden" because it wasn't configured to be on, or "I can't log on" because the authentication server is not configured correctly.</p>
http://stackoverflow.com/questions/927031/serious-help-on-maintaining-an-ongoing-project/927149#9271492Answer by Robert Gowland for Serious help on maintaining an ongoing projectRobert Gowland2009-05-29T17:18:19Z2009-05-29T17:18:19Z<p>We tend to use attrition as an opportunity to bring in better talent. Not that it isn't a set-back, but its a great chance to make your company stronger. Be sure to figure out why the group left, so you can resolve the problem for your new hires.</p>
http://stackoverflow.com/questions/920992/unit-test-adoption/921263#9212633Answer by Robert Gowland for Unit test adoptionRobert Gowland2009-05-28T14:54:08Z2009-05-28T14:54:08Z<p>If the problem is that your tests are getting out of date with the actual code, you could do one or both of:</p>
<ol>
<li>Train all developers to not pass code reviews that don't update unit tests.</li>
<li>Set up an automatic test box that runs the full set of units tests after every check-in and emails those who break the build. (We used to think that that was just for the "big boys" but we used an open source package on a dedicated box.)</li>
</ol>
http://stackoverflow.com/questions/853937/how-can-i-improve-my-technical-writing/882899#8828991Answer by Robert Gowland for How can I improve my technical writing?Robert Gowland2009-05-19T13:51:03Z2009-05-19T13:51:03Z<p>We do peer review of all technical documents (functional specs, design docs, etc...) that almost always turn up something that I missed or should have done differently or could have explained better.</p>
<p>After each review meeting I do a personal lessons learned exercise in my journal (whether I wrote the reviewed document or not). I then take the results of these lessons learned exercises and add them to check-lists that I use when composing my technical docs.</p>
<p>I've just started this, but you can check out the results so far on my web site (via my profile).</p>
http://stackoverflow.com/questions/824588/address-match-key-algorithm/824916#8249160Answer by Robert Gowland for Address Match Key AlgorithmRobert Gowland2009-05-05T13:45:08Z2009-05-05T13:45:08Z<p>If I was to take a crack at this I'd convert each address string into a tree using a pre-defined order of operations.</p>
<p>Eg. 110 Test Street Apt 3. Anywhere California 90210 =></p>
<ol>
<li>Get the type of address. Eg Street addresses have different formats that rural route addresses and this is different by country.</li>
<li>Given that this is a street address, get the string that represents the type of street and convert that to an enum (eBoulevard, eRoad, etc..)</li>
<li>Given that this is a street address, pull out the street name (store in lower case)</li>
<li>Given that this is a street address, pull out the street number</li>
<li><p>Given that this is a street address, look for any apartment number (could be before the street number with a dash, could be after "Apt.", etc...)</p>
<pre><code> eStreet //1.an enum of possible address types eg. eStreet, eRuralRoute,...
|
eStreet //2.an enum of street types eg. eStreet, eBlvd, eWay,...
/ | \
</code></pre>
<p>Name Number Apt
| | |
test 110 3</p></li>
</ol>
<p>Eg. RR#3 Anywhere California 90210 =></p>
<ol>
<li>Get the type of address: rural route</li>
<li><p>Given that this is a rural route address, get the route number</p>
<pre><code> eRuralRoute
|
3
</code></pre></li>
</ol>
<p>You'll need to do something similar for country state and zip information.</p>
<p>Then compare the resulting trees.</p>
<p>This makes the comparison very simple, however, the code to generate the trees is very tricky. You'd want to test the crap out of it on thousands and thousands of addresses. Your problem is simpler if it is only US addresses you care about; British addresses as already mentioned are quite different, and Canadian address may have French in them (eg. Place D'Arms, Rue Laurent, etc...)</p>
http://stackoverflow.com/questions/819934/generating-columns-in-gridview-c-linq/820385#8203850Answer by Robert Gowland for Generating Columns in GridView ( C#, LINQ )Robert Gowland2009-05-04T14:39:02Z2009-05-04T14:39:02Z<p>The way I've seen it done is to create a class that has the properties that you want, for example,</p>
<pre><code>class CustOrders
{
public string CustName {get; set;}
public int Orders2002-1 {get; set;}
public int Orders2002-2 {get; set;}
...
public int Orders2009-1 {get; set;}
}
</code></pre>
<p>Then use the System.Windows.Forms.BindingSource, call it say CustOrdsBindingSource and set its DataSource to a list of your new class.</p>
<pre><code>List<CustOrders> myListOfCustOrders = new List<CustOrders>();
/* Code to populate myListOfCustOrders */
CustOrdsBindingSource.DataSource = myListOfCustOrders;
</code></pre>
<p>In this case you will have to write the code to convert each result of your query results to an instance of CustOrders and store it in myListOfCustOrders.</p>
<p>Finally, the grid view's data source will also have to be set:</p>
<pre><code>gridView1.DataSource = CustOrdsBindingSource;
</code></pre>
<p>The big problem I see with this approach is that you will have to change the CustOrders class every year unless there is some voodoo some can suggest to insert properties into the class at run time.</p>
<p>Either way, I hope this gives you a start.</p>
http://stackoverflow.com/questions/806669/should-i-add-compiled-binaries-to-my-subversion-repository/806870#8068700Answer by Robert Gowland for Should I add compiled binaries to my Subversion repository?Robert Gowland2009-04-30T13:23:17Z2009-04-30T13:23:17Z<p>Well, let's play devil's advocate... here's a case for storing DLL's in a repository.</p>
<p>Company A has 6+ teams at any given point in time. Most of these teams develop at least some part of their product in C#. Given the specific nature of Company A, the standard DateTime classes don't have enough functionality, so they have developed their own classes derived from DateTime which they make available in a DLL.</p>
<p>Each of the 6+ groups has its own directory in the repository and most require the DateTime DLLs, so they have a copy of the compiled DLLs in each product directory, and push new copies to a directory only when there is new functionality available that the project in that directory requires.</p>
<p>Is there another solution that gives the following benefits?:
1) Prevents the developers from having the check out two directories to work on a single project. (In real life there are more than two, but for the sake of this example let's call it two.)
2) Prevents QA from having to retest all products when only one product needs to change the DateTime classes.</p>
http://stackoverflow.com/questions/140774/ways-to-prepare-your-mind-before-coding/786824#7868241Answer by Robert Gowland for Ways to prepare your mind before coding?Robert Gowland2009-04-24T17:22:28Z2009-04-24T17:22:28Z<p>I start by making a check-list of specific changes I am going to make during that coding session, then check them off as I complete them.</p>
http://stackoverflow.com/questions/786404/what-factors-make-technical-debt-give-way-to-the-need-for-technical-bankruptcy/786803#7868034Answer by Robert Gowland for What factors make technical debt give way to the need for technical bankruptcy?Robert Gowland2009-04-24T17:14:45Z2009-04-24T17:14:45Z<p>A project at a company I worked for was in a great deal of technical debt a few years back. Even with half the team dedicated to reducing debt, they never even put a dent in it since the other half were either adding in new debt or updating code that a debt reducing team member was trying to improve.</p>
<p>The CTO declared <strong>Technical Debt Protection</strong> (after getting sign-off from the existing customers). During this phase they only worked on technical debt: <em>no new features</em>, no new customers. The team was given <em>6 months</em>. If, after 6 months the debt was not reduced to an acceptable level, then the cancellation of the project was a serious consideration.</p>
<p>Fortunately, the 6 months payed off big time and the project was in great shape.</p>
<p>However, this would have been the point at which the project was scrapped had it gone the other way.</p>
http://stackoverflow.com/questions/749057/if-more-than-x-items-are-selected-in-a-listbox-revert-to-the-previous-selection/753049#7530490Answer by Robert Gowland for If more than X items are selected in a ListBox, revert to the previous selectionRobert Gowland2009-04-15T18:23:38Z2009-04-15T18:23:38Z<p>Thanks to Lucero's insight that I could put the code to store the selection in another event, I was able to create a solution using MouseUp. As stated in the comments to Lucero's question, MouseDown fires after the SelectedValueChange event, so I has to use MouseUp instead. Here is the code:</p>
<pre><code> /// <summary>
/// Handle the ListBox's SelectedValueChanged event, revert the selection if there are too many selected
/// </summary>
/// <param name="sender">the sending object</param>
/// <param name="e">the event args</param>
void ChildSelectionChanged(object sender, EventArgs e)
{
ListBox listBox = sender as ListBox;
//If the number of selected items is greater than the number the user is allowed to select
if ((this.MaxSelection != null) && (listBox.SelectedItems.Count > this.MaxSelection))
{
//Prevent this method from running while reverting the selection
listBox.SelectedIndexChanged -= ChildSelectionChanged;
//Revert the selection to the previously stored selection
try
{
for (int index = 0; index < listBox.Items.Count; index++)
{
if (listBox.SelectedIndices.Contains(index) && !this.previousSelection.Contains(index))
{
listBox.SetSelected(index, false);
}
}
}
catch (ArgumentOutOfRangeException ex)
{
}
catch (InvalidOperationException ex)
{
}
finally
{
//Re-enable this method as an event handler for the selection change event
listBox.SelectedIndexChanged += ChildSelectionChanged;
}
}
else
{
RaiseSelectionChangedEvent();
}
}
/// <summary>
/// Handle the ListBox's MouseUp event, store the selection state.
/// </summary>
/// <param name="sender">the sending object</param>
/// <param name="e">the event args</param>
/// <remarks>This method saves the state of selection of the list box into a class member.
/// This is used by the SelectedValueChanged handler such that when the user selects more
/// items than they are allowed to, it will revert the selection to the state saved here
/// in this MouseUp handler, which is the state of the selection at the end of the previous
/// mouse click.
/// We have to use the MouseUp event since:
/// a) the SelectedValueChanged event is called multiple times when a Shift-click is made;
/// the first time it fires the item that was Shift-clicked is selected, the next time it
/// fires, the rest of the items intended by the Shift-click are selected. Thus using the
/// SelectedValueChanged handler to store the selection state would fail in the following
/// scenario:
/// i) the user is allowed to select 2 items max
/// ii) the user clicks Line1
/// iii) the SelectedValueChanged fires, the max has not been exceeded, selection stored
/// let's call it Selection_A which contains Line1
/// iii) the user Shift-clicks and item 2 lines down from the first selection called Line3
/// iv) the SelectedValueChanged fires, the selection shows that only Line1 and Line3 are
/// selected, hence the max has not been exceeded, selection stored let's call it
/// Selection_B which contains Line1, Line3
/// v) the SelectedValueChanged fires again, this time Line1, Line2, and Line3 are selected,
/// hence the max has been exceeded so we revert to the previously stored selection
/// which is Selection_B, what we wanted was to revert to Selection_A
/// b) the MouseDown event fires after the first SelectedValueChanged event, hence saving the
/// state in MouseDown also stores the state at the wrong time.</remarks>
private void valuesListBox_MouseUp(object sender, MouseEventArgs e)
{
if (this.MaxSelection == null)
{
return;
}
ListBox listBox = sender as ListBox;
//Store the current selection
this.previousSelection.Clear();
foreach (int selectedIndex in listBox.SelectedIndices)
{
this.previousSelection.Add(selectedIndex);
}
}
</code></pre>
http://stackoverflow.com/questions/749057/if-more-than-x-items-are-selected-in-a-listbox-revert-to-the-previous-selection0If more than X items are selected in a ListBox, revert to the previous selectionRobert Gowland2009-04-14T19:40:29Z2009-04-15T18:23:38Z
<p>I have a text box where I want to limit the number of selected items to MaxSelection. The desired behaviour is that once MaxSelection items are selected any futher selections are ignored. (Thus this question is different from "<a href="http://stackoverflow.com/questions/541883/limit-selections-in-a-listbox-in-vb-net">limit selections in a listbox in vb.net</a>").</p>
<p>I have an event handler for the SelectedIndexChanged event for the list box that attempts to accomplish this. If the user uses Ctrl-click to select the (MaxSelection+1)th item, the selection is reverted to the previous selection.</p>
<p>The problem is when the user selects an item and then Shift-clicks an item down the list that is MaxSelection+1 items further down the list. In this case, more than one SelectedIndexChanged event is raised: one for the Shift-click which selects the item that was Shift-clicked, and one to select all the items between the original selection and the Shift-clicked selection. The first of these events allows the user to select the Shift-clicked item (which is technically correct), then the second event reverts the selection to the selection as it was after the first event (which will be the originally selected item and the Shift-clicked item). What is desired is that the code would revert the selection to the selection before the first event (which is only the originally selected item).</p>
<p>Is there any way to retain the selection before the Shift-click?</p>
<p>Thanks,
Rob</p>
<p>Here's the SelectedIndexChanged event handler:</p>
<pre><code> void ChildSelectionChanged(object sender, EventArgs e)
{
ListBox listBox = sender as ListBox;
//If the number of selected items is greater than the number the user is allowed to select
if ((this.MaxSelection != null) && (listBox.SelectedItems.Count > this.MaxSelection))
{
//Prevent this method from running while reverting the selection
listBox.SelectedIndexChanged -= ChildSelectionChanged;
//Revert the selection to the previous selection
try
{
for (int index = 0; index < listBox.Items.Count; index++)
{
if (listBox.SelectedIndices.Contains(index) && !this.previousSelection.Contains(index))
{
listBox.SetSelected(index, false);
}
}
}
finally
{
//Re-enable this method as an event handler for the selection change event
listBox.SelectedIndexChanged += ChildSelectionChanged;
}
}
else
{
//Store the current selection
this.previousSelection.Clear();
foreach (int selectedIndex in listBox.SelectedIndices)
{
this.previousSelection.Add(selectedIndex);
}
//Let any interested code know the selection has changed.
//(We do not do this in the case where the selection would put
//the selected count above max since we revert the selection;
//there is no net effect in that case.)
RaiseSelectionChangedEvent();
}
}
</code></pre>
http://stackoverflow.com/questions/557240/should-i-always-fully-qualify-column-names-in-sql/557799#5577990Answer by Robert Gowland for Should I Always Fully Qualify Column Names In SQL?Robert Gowland2009-02-17T17:16:14Z2009-02-17T18:24:19Z<p><strong>Don't solve problems you don't have yet.</strong> (At least that's what my team lead is always telling me.) I'm sure the monkey who someday has to add a JOIN to your statement can figure it out.</p>
http://stackoverflow.com/questions/389439/datagridview-tooltiptext-not-showing/547194#5471940Answer by Robert Gowland for DataGridView ToolTipText not showingRobert Gowland2009-02-13T18:49:52Z2009-02-13T18:49:52Z<p>We ended up using a ToolTip widget and the CellMouseEnter, CellMouseLeave events to show it appropriately. Not optimal, but it works around the odd behaviour we were experiencing.</p>
http://stackoverflow.com/questions/538385/what-is-managed-unmanaged-net-code-and-what-difference-does-it-make-to-me0What is Managed/Unmanaged .net code and what difference does it make to me? [closed]Robert Gowland2009-02-11T19:31:52Z2009-02-11T19:37:09Z
<p>I see the terms managed and unmanaged used a fair bit around here. Searching online I can get a fuzzy notion of what they are, but what I really need to know is how it affects me as C# desktop app developer? How do I know which I'm dealing with at any point and how does it change my approach to that code?</p>
<h3>Duplicate</h3>
<blockquote>
<p><a href="http://stackoverflow.com/questions/334326/what-is-managed-unmanaged-code-in-c">http://stackoverflow.com/questions/334326/what-is-managed-unmanaged-code-in-c</a></p>
</blockquote>
http://stackoverflow.com/questions/450833/net-server-based-pdf-generation/450993#4509930Answer by Robert Gowland for .NET server based PDF generationRobert Gowland2009-01-16T16:23:23Z2009-01-16T16:23:23Z<p>We used a set of third party DLLs from <a href="http://www.pdfsharp.com/PDFsharp/index.php?option=com_frontpage&Itemid=1" rel="nofollow" title="PDFSharp">PDFSharp</a> who in turn use DLLs from MigraDoc. I'm not privy to all the reasons that we went that direction (the decision was made by a senior developer), but I can tell you that:</p>
<ul>
<li>It seems to be in active
development. </li>
<li>It had most of the
features we needed.</li>
<li>The source code
is available. Although it used some
patterns and conventions that I
hadn't seen before, once I got on to
them, it was fairly easy to make the
changes. I added support for using
the System.Drawing.Image directly
rather than as saving files.</li>
<li>It is
not documented well either
internally or externally.</li>
</ul>
http://stackoverflow.com/questions/1771293/can-a-func-call-itself-recursivelyComment by Robert Gowland on Can a Func<> call itself recursively?Robert Gowland2009-11-20T16:56:17Z2009-11-20T16:56:17ZSame as <a href="http://stackoverflow.com/questions/1079164/c-recursive-functions-with-lambdas" rel="nofollow" title="c recursive functions with lambdas">stackoverflow.com/questions/1079164/…</a> ?http://stackoverflow.com/questions/1702052/ways-to-prevent-over-engineering/1702084#1702084Comment by Robert Gowland on Ways to prevent over-engineering?Robert Gowland2009-11-09T17:08:46Z2009-11-09T17:08:46ZThis is critical. However it requires the person who brings the design to have the humility to accept input from fellow employees.http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/243839#243839Comment by Robert Gowland on Dealbreakers for new programming jobs?Robert Gowland2009-10-07T13:17:42Z2009-10-07T13:17:42Z@Spence, yes, but that's true of every answer to this question.http://stackoverflow.com/questions/561174/c-printing-a-net-datagridview/561712#561712Comment by Robert Gowland on C# - Printing a .NET DataGridViewRobert Gowland2009-09-16T16:31:45Z2009-09-16T16:31:45ZUpdated my answer with a link. Hope this helps!http://stackoverflow.com/questions/1357183/first-agile-project-what-should-i-write-firstComment by Robert Gowland on First Agile Project - What should I write first?Robert Gowland2009-08-31T13:00:30Z2009-08-31T13:00:30ZOK, assuming he knows what TDD is, where would he start writing tests?http://stackoverflow.com/questions/1326480/do-you-ever-talk-about-programming-to-non-programmers/1326834#1326834Comment by Robert Gowland on Do you ever talk about programming to non-programmers?Robert Gowland2009-08-25T13:18:22Z2009-08-25T13:18:22ZAgreed. Most people find my company's products fascinating, but glaze over when I get even the slightest bit technical.http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/98315#98315Comment by Robert Gowland on What are your favorite Vim tricks?Robert Gowland2009-08-18T13:08:35Z2009-08-18T13:08:35ZIn addition to <> and "", this also works with [], {}, and ().http://stackoverflow.com/questions/1121085/does-an-incorrect-comment-smell/1121106#1121106Comment by Robert Gowland on does an incorrect comment smell?Robert Gowland2009-07-13T20:40:15Z2009-07-13T20:40:15Z@n8wrl - Except that the discrepancy in this case could have led to the bug right away, which, in my opinion, means that the commented code was better than uncommented code would have been, even though the comment was wrong.http://stackoverflow.com/questions/1119229/what-is-a-less-pleasing-sounding-name-for-the-waterfall-process/1119272#1119272Comment by Robert Gowland on What is a less pleasing sounding name for the waterfall process?Robert Gowland2009-07-13T13:16:49Z2009-07-13T13:16:49ZOr No Going Back.http://stackoverflow.com/questions/757408/c-usercontrol-verticalscroll-value-not-being-set/1004090#1004090Comment by Robert Gowland on C# UserControl.VerticalScroll.Value not being setRobert Gowland2009-07-09T16:00:10Z2009-07-09T16:00:10ZI'd have to test it to up-vote it. Since the project was completed in May, you'll have to wait until I get a free moment.http://stackoverflow.com/questions/1019835/c-prevent-delete-key-on-custom-widget-from-triggering-short-cut-on-menu/1019923#1019923Comment by Robert Gowland on C# prevent Delete key on custom widget from triggering short-cut on menuRobert Gowland2009-06-26T14:51:57Z2009-06-26T14:51:57Z@marr75, I have to disagree with the statement that using Delete as a short-cut key is a bad idea. We're simply applying it to a widget that doesn't have default handling. We have the exact same problem with Ctrl-C, Ctrl-V, and Ctrl-X, but lots of programs use those as short-cut keys to menu items, the difference is that they somehow are able to know when the user intends them to be applied to the main window rather than on a widget in a side-bar. (Actually, not all handle it well. We recently discovered that Microsoft Project has the same bug as us.)http://stackoverflow.com/questions/1019835/c-prevent-delete-key-on-custom-widget-from-triggering-short-cut-on-menu/1019918#1019918Comment by Robert Gowland on C# prevent Delete key on custom widget from triggering short-cut on menuRobert Gowland2009-06-26T14:46:22Z2009-06-26T14:46:22Z@C-Pound Guru, For just the Delete key shortcut that's fine, but also do copy and paste (Ctrl-C, and Ctrl-V respectively). These are the standard short-cuts for these operations; changing them to Shift-Ctrl-C and Shift-Ctrl-V just so that the action is performed only when the user intends to perform the action on the main widget seems to make the application clunky and non-standard.
The second option would be find if there was only one text box, but there are several widgets and adding an event to each one to try to guess the user's intent would be cumbersome.http://stackoverflow.com/questions/1019835/c-prevent-delete-key-on-custom-widget-from-triggering-short-cut-on-menu/1019923#1019923Comment by Robert Gowland on C# prevent Delete key on custom widget from triggering short-cut on menuRobert Gowland2009-06-26T14:41:50Z2009-06-26T14:41:50ZCorrection to my previous comment: just handling the keypress when the widget we care about is active would not show the short-cut keys on the menu beside their respective actions so that is not a valid solution either.http://stackoverflow.com/questions/1019835/c-prevent-delete-key-on-custom-widget-from-triggering-short-cut-on-menu/1019923#1019923Comment by Robert Gowland on C# prevent Delete key on custom widget from triggering short-cut on menuRobert Gowland2009-06-23T15:37:57Z2009-06-23T15:37:57Z@marr75, the more I look at this issue, the more I agree that using Delete as a global shortcut was a bad idea; the amount of code we'd have to add in order to make sure that we perform the delete only when we suspect the customer wants it is staggering. Conversely, we could just handle the keypress when the widget we care about is active would get us very close to our original intention.http://stackoverflow.com/questions/1028413/can-you-delete-a-column-of-text-in-vim-vi-gvim/1028461#1028461Comment by Robert Gowland on Can you delete a column of text in Vim / Vi / gVim?Robert Gowland2009-06-22T19:37:58Z2009-06-22T19:37:58ZNote that if using Vim under Windows, this won't work (perhaps with the right config it may).