Sign in
John W Powell
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
C#
Debugging
Design Pattern
Don't Talk to Strangers
Input Language
msbuild
PowerShell
SharePoint
SharePoint 2007
sharepoint 2010
SharePoint Designer
SharePoint Foundation
Team Build
TFS
Unit Test
Visual Studio
Visual Studio 2010
visual studio extensions
VSEWSS 1.3
WCF
Windows Communication Foundation
Windows SharePoint Services
WSS
WSS3
Archive
Archives
January 2012
(2)
November 2010
(1)
March 2010
(1)
December 2009
(2)
November 2009
(3)
August 2009
(3)
June 2009
(2)
March 2009
(1)
February 2009
(1)
January 2009
(3)
November 2008
(2)
October 2008
(1)
September 2008
(2)
August 2008
(2)
July 2008
(2)
June 2008
(1)
May 2008
(7)
April 2008
(1)
March 2008
(2)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
John W Powell
How to Copy an Assembly From the GAC to the File System
Posted
over 4 years ago
by
johnwpowell
15
Comments
Sometimes you need a local copy of an assembly from the GAC and here is a quick tip on how to do it. The GAC can be found in the c:\windows\assembly directory, but if you try to browse it, the following custom shell extension appears: This view...
John W Powell
SharePoint Designer Copy List Item Workflow Activity Does Not Copy All Fields
Posted
over 4 years ago
by
johnwpowell
9
Comments
A common SharePoint customization request is to copy or move items and documents between lists. This can be accomplished without development by creating a workflow using SharePoint Designer (SPD). With this approach, you may encounter issues with list...
John W Powell
10 Tips to Boost Your Productivity with C# and Visual Studio 2008
Posted
over 5 years ago
by
johnwpowell
28
Comments
Learn Key Bindings It's an obvious and trivial thing, but the timesaving will add up, especially for those actions you perform tens or hundreds of times a day such as building and debugging. Here are some basic bindings every Visual Studio developer...
John W Powell
SharePoint Intermittent 403 Forbidden Errors
Posted
over 5 years ago
by
johnwpowell
32
Comments
I recently encountered intermittent 403 Forbidden errors on a Windows SharePoint Services (WSS) site. Most of the site would work, but when users accessed certain functions such as uploading a document or adding calendar items, they would receive a 403...
John W Powell
SharePoint 2010 Localization with Visual Studio 2010
Posted
over 4 years ago
by
johnwpowell
12
Comments
In this walkthrough, I’ll show you how to create a SharePoint 2010 localized feature using Visual Studio 2010. The basic mechanics of localizing a SharePoint 2010 feature are the same as localizing a SharePoint 2007 feature, and is well documented. If...
John W Powell
The 7 Habits of Highly Effective Developers
Posted
over 5 years ago
by
johnwpowell
14
Comments
If you want to achieve your highest aspirations and overcome your greatest challenges, identify and apply the principle or natural law that governs the results you seek . How we apply a principle will vary greatly and will be determined by our unique...
John W Powell
Walkthrough - Build a Windows SharePoint Services 3.0 Development Virtual PC with SQL Server, Active Directory and E-mail
Posted
over 5 years ago
by
johnwpowell
10
Comments
If you are building or testing SharePoint customizations, you should use virtualization over physical servers. Virtualizing your SharePoint development and test environment has many benefits including easier debugging, the ability to rollback changes...
John W Powell
How to Create a Reusable WCF Service Host for Windows Services and Self-Hosting
Posted
over 5 years ago
by
johnwpowell
6
Comments
In this article, I'll show you how to create a reusable service host that can be run from either from the console (self-hosted) or installed as a Windows service. I'll also demonstrate how to use a configuration file instead of code to control which WCF...
John W Powell
How to Implement an Interface Without Making Members Public Using Explicit Interface Implementation
Posted
over 5 years ago
by
johnwpowell
4
Comments
If you've ever implemented an interface, you've probably encountered the requirement that the member you are implementing must be public. For example, you cannot define a property in an interface and then make the setter internal as demonstrated by the...
John W Powell
C# and .Net Framework Features by Version Quick Reference
Posted
over 5 years ago
by
johnwpowell
5
Comments
With few exceptions, developers like using the latest tools and technologies, but are often constrained by the development or production environment. There are many reasons organizations are unwilling or slow to adopt new technology, and these can range...
John W Powell
Write to the SharePoint 2010 Developer Dashboard With JavaScript
Posted
over 4 years ago
by
johnwpowell
1
Comments
When developing JavaScript solutions, I like to provide a tracing mechanism that can be turned on and off to aid debugging. The IE Developer Tools, debugger and Fiddler are very robust debugging tools, but they don’t enable client script code to...
John W Powell
A Lap Around SharePoint 2010 Sandboxed Solutions Resource Quotas
Posted
over 3 years ago
by
johnwpowell
0
Comments
In this post, I'll demonstrate sandbox solutions resource quotas and show you what happens when they are exceeded. When sandboxed code executes, certain metrics are collected such as % processor time and # of unhandled exceptions. Timer jobs compile the...
John W Powell
Consume SharePoint Web Services with WCF using the Repository, Gateway, Mapper, Domain Model and Factory Design Patterns
Posted
over 4 years ago
by
johnwpowell
9
Comments
The SharePoint developer community has produced a wealth of knowledge and code samples that demonstrate how to consume SharePoint web services and leverage them in domain-specific applications. This information is often task-centric, such as ...
John W Powell
How to Update a SharePoint User Account When They Leave the Company and Return
Posted
over 5 years ago
by
johnwpowell
8
Comments
In this article, I'll show you how to handle a common scenario when a user leaves the company and returns later. Many organizations delete user accounts after a period of time and when a user returns they often get a new Windows account with the same...
John W Powell
Make the RSS Feed Viewer Web Part Dynamic Using Filters and Web Part Connections
Posted
over 4 years ago
by
johnwpowell
2
Comments
One of the shortcomings of the RSS Viewer web part is that it can only be bound one feed. In this walkthrough, I’ll show you how to make the RSS Viewer web part dynamic with filter web parts and web part connections to enable binding to multiple feeds...
John W Powell
SharePoint 2010 Database Naming Standards
Posted
over 3 years ago
by
johnwpowell
4
Comments
In a previous post I made a case for following a database naming standard for SharePoint databases. What started as an investigation into how to rename the auto-generated SharePoint 2010 databases led me down a path bordering obsession. I...
John W Powell
Enable the Developer Dashboard using the Object Model / Powershell
Posted
over 4 years ago
by
johnwpowell
1
Comments
The SharePoint 2010 developer dashboard has three display levels (see SPDeveloperDashboardLevel Enumeration .): Off (default): The dashboard is not displayed, and there is no UI element to turn it on On : The dashboard is displayed, and there...
John W Powell
Lambda Expressions in 5 Minutes
Posted
over 5 years ago
by
johnwpowell
5
Comments
You don't need a course in advanced calculus to understand Lambda Expressions. In fact, you can learn the basics in 5 minutes or less. To accomplish this, we are going to revise a code snippet for an event handler from .Net 1.1 syntax to a syntactically...
John W Powell
Search SharePoint from the Internet Explorer Toolbar Using a Custom Search Provider
Posted
over 5 years ago
by
johnwpowell
3
Comments
Here is an easy way to search a SharePoint site from the IE toolbar without having to develop a custom add-in. Before showing you how to implement it, let's examine how custom search providers work. How Custom Search Providers Work When you browse...
John W Powell
Automate SharePoint Solution Builds with Visual Studio Extensions For Windows SharePoint Services (VSEWSS) 1.3
Posted
over 4 years ago
by
johnwpowell
8
Comments
In this walkthrough, I’ll demonstrate how to achieve automated builds and continuous integration by creating a build script for VSEWSS 1.3 solutions. The patterns and practices SharePoint Guidance (11 drop) contains an example build script that this article...
John W Powell
Error Configuring BizTalk SharePoint Adapter on SharePoint SP1
Posted
over 5 years ago
by
johnwpowell
4
Comments
This article provides a workaround for installing the BizTalk WSS Adapter on MOSS SP1 when you receive the following error: "Make sure the site is extended by Windows SharePoint Services. (CWssAdaCfg), " or "The data is invalid. Click on the error icon...
John W Powell
Create a SharePoint Custom Action to Zip and Download a Document Set
Posted
over 1 year ago
by
johnwpowell
0
Comments
I like writing code, but I love solving problems using the simplest possible approach even more. In this article, I’m going to show you how to enable users to zip and download all documents in a document set with no code. The document set...
John W Powell
Walkthrough: Import Data From a Line Of Business System into SharePoint User Profiles
Posted
over 5 years ago
by
johnwpowell
4
Comments
In this walkthrough, I'll show you how to import data from a line of business (LOB) system into SharePoint user profiles and make that information searchable. Using this approach, you can leverage information that is stored in other LOB systems and create...
John W Powell
SharePoint Database Naming Standards
Posted
over 4 years ago
by
johnwpowell
4
Comments
Call me picky, but I think it’s important to consistently name your SharePoint databases—especially on a shared SQL Server hosting multiple farms and applications. Not only is it a good practice, but by showing that you care about the databases, you’ll...
John W Powell
Subscribe to SharePoint Web Parts using Internet Explorer 8 Web Slices
Posted
over 4 years ago
by
johnwpowell
2
Comments
One of the new features of Internet Explorer 8 is Web Slices. This feature enables you to subscribe to a section of a web page and notifies you when the content changes. By design, SharePoint Web Parts are a natural fit for this feature, and in this article...
Page 1 of 2 (39 items)
1
2