Tag: Development

Community

Using Thread Pool Threads

(Jim Mischel) Thread pool threads are ideal for performing relatively short compute-bound operations that you want to execute in the background. For example, computing the cells in a spreadsheet, grammar- or spell-checking a document, and other such activities should be done in the background to pre

Community

LINQ To Objects – Part 3

(Ged Mead) Although some of the queries we saw at the end of Part 2 are quite impressive – and light years easier than doing it with Loops and If/Then tests – there are still more improvements to come. Let’s take the situation where you want to run Join queries across two separate data sources. T

Community

Auto Resize Dropdown Box

(Ashish Singh) Sometimes, using a built-in dropdown control does not meet your requirement. Suppose a dropdown box contains text that is longer in length than your box; therefore, the width of the dropdown will increase as the text length increases. But, an increase in the dropdown’s size affects yo

Community

Refactoring to State/Strategy

(Brian Mains) Sometimes it is more costly to implement an object as it is. Because of that, it is easier to refactor the design into an alternative approach. It can be more efficient and easier to maintain and I am going to illustrate this with a class I originally created that needs to be refactore