Browse by Tags

All Tags » Article (RSS)

ObjectSharp's DevLounge Goes Live

ObjectSharp has always been very community focused. Our consultants run user groups; we speak at user groups, code camps and conferences; we man the experts areas at big Microsoft events; and we run our own community events like Visual Studio 2008 at...
Posted by windsor | with no comments

Using Custom Business Objects with Windows Communication Foundation on the Visual Basic Community Site

An article/walktrough I wrote on Using Custom Business Objects with Windows Communication Foundation has been posted to the Visual Basic Community Site . In my previous article, Getting Started with Windows Communication Foundation , I described the basics...
Posted by windsor | 1 comment(s)
Filed under: , , ,

Getting Started with Windows Communication Foundation on the Visual Basic Community Site

An article/walktrough I wrote on Getting Started with Windows Communication Foundation has been posted to the Visual Basic Community Site . Windows Communication Foundation (WCF) is Microsoft’s next generation platform for building distributed systems...
Posted by windsor | 1 comment(s)
Filed under: , ,

Guest Blog Post on the Canadian Developers Site: Discoverability

I've got a post up on the Canadian Developer's blog talking about Discoverability and the .NET Framework . Hmm... since this material comes from the talk I'll be doing, I guess this is a good time to plug DevTeach . You still have time to...
Posted by windsor | 1 comment(s)

Application Settings Made Easy with My and Visual Basic 2005

Most applications require some configuration settings that could change over time. Classic examples would be a connection string to a database, the URL to your company web site, or the path to a log file. These settings could be stored in the application...
Posted by windsor | with no comments

Some Specifics on Generics

Generics are the most significant language addition to .NET 2.0. They allow for code re-use in ways not previously available and make it much easier to write type-safe, better performing code. That is, they help you turn runtime exceptions into compile...
Posted by windsor | with no comments

Keep Client Applications Responsive with the BackgroundWorker

Many applications need to perform some kind of long-running task like downloading a file, performing a complex calculation, or retrieving data from a database. Executing these tasks can make your application become unresponsive and end up making your...
Posted by windsor | with no comments