Author Archives: Ben

The Software Industry is Lost

Our industry is more than 50 years old and still trying to understand some fundamental questions. There have been many analogies and practices to describe how software should be built, yet we still do not have definitive answers to questions … Continue reading

Posted in process, srt | 1 Comment

CodeMash 2011

It has been about a month since CodeMash has passed – there was good content and good discussions. Exactly what I hope to get out of CodeMash. I continue to think about some of the ideas and discussions; I have … Continue reading

Posted in CodeMash, srt | 1 Comment

Parallel LINQ (PLINQ)

LINQ is getting an upgrade with .Net 4.0. Features are being added that allow us to easily execute queries in parallel. It gives us another reason to drop those odious for and foreach statements and use LINQ. .Net 4.0 introduces … Continue reading

Posted in .Net, C#, Linq | Comments Off on Parallel LINQ (PLINQ)

WPF LL: TextBoxes that just keep growing

This problem was probably discovered accidentally and shows me once again how important it is to have non-technical and new people testing your programs. The problem encountered was that the TextBoxes on one of our Windows would just keep expanding … Continue reading

Posted in srt, WPF | 4 Comments

WPF LL: XML Binding and Data Converters

In the project I’ve been working on, we’re binding a bunch of controls to an XML document. In our bindings, we are extensively using XPath. One of the things that did not occur to me immediately, and seems very obvious … Continue reading

Posted in .Net, WPF | Comments Off on WPF LL: XML Binding and Data Converters

WPF Lessons Learned – Use ContextMenu.Items over ContextMenu.ItemsSource

I’ve been working on a WPF project for a client and have learned a lot in the process. I’d like to touch on some of these things. This first post will be about creating a ContextMenu. I’ve had to create … Continue reading

Posted in .Net, C#, WPF | Comments Off on WPF Lessons Learned – Use ContextMenu.Items over ContextMenu.ItemsSource

Study Group – WPF

For the last two weeks Anne Marsan has led study group. Both of her sessions were about WPF and she led them by writing up instructions on how to produce a project that illustrated what she wanted to teach. Her … Continue reading

Posted in .Net, Study Group, WPF | Comments Off on Study Group – WPF

Study Group – F#

Chris Marinos led study group this week on F#. F# is Microsoft’s foray into functional programming; it isn’t strictly functional, but it is clearly designed with that purpose in mind. I thought I had gotten some of experience with functional … Continue reading

Posted in .Net, F#, Study Group | Comments Off on Study Group – F#

Study Group – JEE

Last year we ran a study group in preparation for the .Net certification test. Bill Heitzeg decided to revive the study group with a different focus. Our new purpose is to get a brief overview of a technology each week … Continue reading

Posted in Study Group | Comments Off on Study Group – JEE

Convert to Linq!

While writing my last post, I was looking at the code to see if it was really something I wanted to post for general scrutiny and saw that I could use Linq to do the same thing. Here’s the old … Continue reading

Posted in .Net, Linq | Comments Off on Convert to Linq!