Sign in
Thom Robbins .NET Weblog
A blog of the technical and only sometimes uneventful side of programming in .NET and life within Microsoft
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET Framework
.NET Framework 3.0
.NET General Tips and Tricks
Atlas
Biztalk
CardSpace
Code Camp
DataGrid Programming
Fun and Interesting
InfoPath Tips and Tricks
Mobile Development
New England Developer Events
Office 2007
Pages
Regular Expression Tips and Tricks
SharePoint Tips and Tricks
Speech Related
Visual Basic
Visual Studio
Visual Studio 2005
Visual Studio 2008
WCF
Web Services
Windows Forms Tips and Tricks
XML Tips and Tricks
Archive
Archives
September 2009
(1)
March 2009
(2)
January 2009
(3)
December 2008
(5)
November 2008
(7)
February 2008
(2)
January 2008
(3)
December 2007
(7)
November 2007
(6)
October 2007
(2)
September 2007
(6)
August 2007
(5)
July 2007
(4)
June 2007
(10)
May 2007
(5)
April 2007
(4)
March 2007
(9)
February 2007
(6)
January 2007
(8)
December 2006
(20)
November 2006
(39)
October 2006
(12)
September 2006
(15)
August 2006
(30)
July 2006
(27)
June 2006
(46)
May 2006
(42)
April 2006
(40)
March 2006
(48)
February 2006
(37)
January 2006
(37)
December 2005
(24)
November 2005
(22)
October 2005
(41)
September 2005
(41)
August 2005
(44)
July 2005
(25)
June 2005
(19)
May 2005
(13)
April 2005
(18)
March 2005
(10)
February 2005
(21)
January 2005
(14)
December 2004
(25)
November 2004
(14)
October 2004
(18)
September 2004
(4)
August 2004
(39)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Thom Robbins .NET Weblog
Introducing the <DataContract>
Posted
over 7 years ago
by
trobbins
2
Comments
As we have seen in previous articles . Creating a Windows Communication Foundation (WCF) service begins with annotating the class with a <ServiceContract> attribute and an <OperationContract> for each exposed operation. The design of WCF uses...
Thom Robbins .NET Weblog
Playing with namespaces
Posted
over 7 years ago
by
trobbins
0
Comments
The Root Namespace property sets the base namespace for all files in the project. If you want to set the the root namespace of a Windows Form project it is done through the following steps. 1. Select My Project 2. Within the application tab...
Thom Robbins .NET Weblog
Microsoft Office Add-in: Microsoft Outlook SMS Add-in (MOSA)
Posted
over 7 years ago
by
trobbins
3
Comments
Very cool looking little tool that I am downloading now to check out. This download will enable you to send SMS text messages through most Global System for Mobile Communications (GSM) mobile phones connected to your PC using Microsoft Office Outlook...
Thom Robbins .NET Weblog
Making an Office Warmer
Posted
over 7 years ago
by
trobbins
0
Comments
Since my move out here things have been a bit hectic. Between the move here, the great Washington’s blizzard, a bizarre wind storm and various other things. I am a bit behind. One of the new things for me is having an office. Having worked out my home...
Thom Robbins .NET Weblog
The Big Wind
Posted
over 7 years ago
by
trobbins
1
Comments
In case you haven’t heard Seattle and the outlying areas had a huge wind storm late last week. Coming from New England I have to say it was pretty incredible and was a lot like the infamous Nor’easters. The unfortunate part was that this resulted in some...
Thom Robbins .NET Weblog
The Advantages of Running Applications on Windows Vista
Posted
over 7 years ago
by
trobbins
2
Comments
An excellent read and congratulations to Doug for putting this together. The Advantages of Running Applications on Windows Vista Details improvements in the Windows operating system with the release of Windows Vista, and describes new features in...
Thom Robbins .NET Weblog
Visual Studio 2005 Service Pack 1 (SP1)
Posted
over 7 years ago
by
trobbins
0
Comments
Visual Studio 2005 represents one of the most significant developer tools releases since the introduction of Visual Studio nearly a decade ago. It offers all types of developers a wider spectrum of development possibilities and a greatly advanced design...
Thom Robbins .NET Weblog
Webcast Wrap Up
Posted
over 7 years ago
by
trobbins
0
Comments
Thanks to everyone that attended yesterdays Webcast on Real World SOA. As promised you can find the slides here . Also as we talked about take a look at the recently updated Microsoft SOA site for some additional resources available here .
Thom Robbins .NET Weblog
Enabling Visual Styles
Posted
over 7 years ago
by
trobbins
0
Comments
Windows XP introduces a new look and feel to the Windows user interface. This new interface provided controls that have rounded corners and that change colors when you pause your mouse over them. By default Windows based applications created with Visual...
Thom Robbins .NET Weblog
RC of MSDNWiki available
Posted
over 7 years ago
by
trobbins
2
Comments
In case you haven’t seen it. The MSDN library has recently made available a Community Content feature for the Visual Studio 2005 documentation and the .NET 3.0 Class Library on MSDN Online. This feature is designed to allow the community of developers...
Thom Robbins .NET Weblog
IIS 7 Hosting
Posted
over 7 years ago
by
trobbins
0
Comments
Via Brian I got an email yesterday from Takeshi over at DiscountASP and they just launched free IIS7 Beta hosting for all customers who are interested. You can get all the details at http://www.discountasp.net/sp_iis7hosting.aspx This is a great...
Thom Robbins .NET Weblog
Microsoft Expression Web Free Trial
Posted
over 7 years ago
by
trobbins
0
Comments
Well worth the time! Microsoft® Expression Web is a professional design tool to create modern, standards-based sites which deliver superior quality on the Web. Check out the free trial here
Thom Robbins .NET Weblog
Looking at Assembly Information
Posted
over 7 years ago
by
trobbins
1
Comments
Assembly information is an important part of building an application. This is what gets generated to the executable during compilation. How can you see where this data gets published? Within in a Windows application select the project properties ...
Thom Robbins .NET Weblog
Environment.SpecialFolder
Posted
over 7 years ago
by
trobbins
0
Comments
A very useful environment enumeration is SpecialFolder. This provides an enumeration to special folders like My Pictures or the Startup menu. These folders are set by default by the system, or explicitly by the user. For example, ever try to get at a...
Thom Robbins .NET Weblog
Integrating WCF with your existing ASMX Services
Posted
over 7 years ago
by
trobbins
3
Comments
I am betting that you have at least one if not more ASMX services available today within your applications. So how do you get going with Windows Communication Foundation (WCF) and maintain that existing code? In this article we will look at an example...
Thom Robbins .NET Weblog
Looking for Workflow VB Samples
Posted
over 7 years ago
by
trobbins
2
Comments
Paul has a nice list of the WF samples available for VB developers here .
Thom Robbins .NET Weblog
Windows Live Search Beta for mobile
Posted
over 7 years ago
by
trobbins
3
Comments
I just saw this beta and installed it. Very cool! More information and download for your mobile device is here .
Thom Robbins .NET Weblog
MSDN Webcast: Enabling a New Generation of Dynamic Applications Through Service-Oriented Architecture
Posted
over 7 years ago
by
trobbins
1
Comments
Join me for a Webcast In this webcast, we discuss the Microsoft vision for service-oriented architecture and show how Microsoft supports this vision by way of an integrated platform. Learn how you can use your existing systems, line-of-business (LOB...
Thom Robbins .NET Weblog
2007 Office System Sample: Open XML File Format Code Snippets for Visual Studio 2005
Posted
over 7 years ago
by
trobbins
2
Comments
Pretty nice set of snippets This download includes snippets for use when customizing Microsoft Office Excel 2007, Microsoft Office PowerPoint 2007, and Microsoft Office Word 2007. Download and install these snippets to your Visual Studio code snippet...
Thom Robbins .NET Weblog
Office 2007 Webcasts
Posted
over 7 years ago
by
trobbins
0
Comments
Attend three webcasts and get a free copy. Definitely not a bad deal! http://www.powertogether.com/
Page 1 of 1 (20 items)