Articles tagged BI

21 June 2006
21 June 2006

Creating Usable Applications

If I had a penny for every person who said "usability is just common sense", I'd have a pretty reasonable stack of pennies - maybe 30 or so. Clearly I'm not going to be able to retire on this, but at least it demonstrates that many people have misconceptions about how usable interfaces are designed. … Read more
19 June 2006
19 June 2006

Asynchronous processing in .NET part 1: fundamentals

0
39
In Windows Forms applications, we often need to perform some complex processing in the background, while still continuing with other tasks, such as monitoring user input and updating the user interface. For example, if you think of a web browser, it fetches and renders a web page without the main form hanging, so we can still press the Stop or Back buttons without waiting for the current page to load. This is achieved through asynchronous processing; that is, processing that takes advantage of Windows' multi-threading abilities to perform (as it appears to the user) two tasks at the same time.… Read more