Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Translate this page
Powered by
Microsoft® Translator
Popular Tags
.net
Active Directory
AD DS
ASP.NET
azure
Benoît Jester
BizTalk
BizTalk Server
BizTalk Server 2010
C#
C# .NET
Chen V
cloud
EAA
Ed Price
Edward van Biljon
en-US
es-ES
Excel
Exchange
Exchange 2010
Exchange 2013
Exchange Server 2010
fa-IR
FIM
FIM 2010
fr-FR
has Back to Top link
has code
has command
has comment
has Conclusion
has download link
has Gallery download
has image
Has Link
has links
has Other Languages
has reference
has References
has See Also
has summary
Has Table
Has TOC
has video
How To
Hyper-V
it-IT
Link Collection
Lync
magazine article
Mehmet Parlakyiğit
Microsoft
Microsoft Azure
Multi Language Wiki Articles
MVP
needs work
Office 365
pgtag
Português Brasil
PowerShell
pt-BR
SCCM
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint 2016
Sharepoint Online
Small Basic
SQL
SQL Server
SQL Server 2012
step by step
stub
System Center
System Center 2012
TAT
TAT Members
TechNet Guru
TechNet Guru Gold Medal Winner
TechNet Guru Medal Winner
TechNet Wiki
TechNet Wiki Featured Article
Translated into French
troubleshooting
tr-TR
T-SQL
Visual Studio
VS
Wiki
Windows
Windows 10
Windows 7
Windows 8
Windows Phone
Windows Phone Migration Content
Windows Server
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
Browse by Tags
>
TechNet Articles
>
All Tags
>
has code
Tagged Content List
Wiki Page:
Dynamics CRM 2011 Portal Development – CrmDataSource
Balaji M Kundalam
This document was originally published as Dynamics CRM 2011 Portal Development – CrmDataSource and has been reproduced here to allow the community to correct any inaccuracies or provide other enhancements before updating the original version of this topic. Dynamics CRM 2011 Portal Development...
on
4 Nov 2013
Wiki Page:
Dynamics CRM 2011 Portal Development – SavedQueryDataSource
Balaji M Kundalam
This document was originally published as Dynamics CRM 2011 Portal Development – SavedQueryDataSource and has been reproduced here to allow the community to correct any inaccuracies or provide other enhancements before updating the original version of this topic. Dynamics CRM 2011 Portal...
on
4 Nov 2013
Wiki Page:
Dynamics CRM Database Optimization with DMVs
Richard Mueller
On this article I will be covering mainly optimization around indexes and how DMV's can help to monitor and optimize indexes. Data management views (DMV's) Dynamic management views store SQL transactional information which can be used to monitor health, performance and diagnose problems...
on
3 Nov 2013
Wiki Page:
SharePoint 2013 Workflow Does Not Exist
Richard Mueller
Hi Everybody Today I am going to talk about a problem I faced when I tried to create workflow on Announcement List using SharePoint designer 2013 as shown in the below screen So I went to check the Workflow Application Service and I got the below message Therefore, I discovered...
on
3 Nov 2013
Wiki Page:
Nancy - a Lightweight .Net Framework
Richard Mueller
Who is Nancy? Nancy is a .NET platform (built with the .NET framework client profile) open source project developed by Andreas Hakansson (aka @TheCodeJunkie ), and Steven Robbins; this open source is inspired from the Ruby framework called Sinatra (it's a MVC framework, just extremely simple...
on
3 Nov 2013
Wiki Page:
Setup SharePoint 2013 App Development Environment Using Powershell
Richard Mueller
Note: You can use this method on sandbox environment where developers don’t want to setup the domain Name in DNS, Visual Studio will modify the host file during debugging to skip the need of creating the Domain name in DNS for App development on Development Environment. Assumptions - You have...
on
3 Nov 2013
Wiki Page:
Chain of Responsibility Pattern
Richard Mueller
Chain of Responsibility pattern is for a situation when there is a need to handle a single request by multiple handler objects. This ensures that the request need to be handled by one of the handlers in the Chain. In this pattern, the request is sent to the first handler, if the request can be processed...
on
3 Nov 2013
Wiki Page:
Iterator Pattern
Richard Mueller
This pattern provides a way to access elements from an aggregate sequentially. Microsoft's IEnumerable is one of the example of this pattern. Let me introduce this pattern using this interface. public class Element { public string Name { get ; set ; } } public...
on
3 Nov 2013
Wiki Page:
Mediator Pattern
Richard Mueller
Mediator pattern ensures that the components are loosely coupled, such that they don't call each others explicitly, rather they always use a separate Mediator implementation to do those jobs. public interface IComponent { void SetState( object state); } public...
on
3 Nov 2013
Wiki Page:
Flyweight Pattern
Richard Mueller
Flyweight allows you to share bulky data which are common to each object. In other words, if you think that same data is repeating for every object, you can use this pattern to point to the single object and hence can easily save space. /// <summary> /// Defines Flyweight object...
on
3 Nov 2013
Wiki Page:
Composite Pattern
Richard Mueller
Composite pattern treats components as a composition of one or more elements so that components can be separated between one another. In other words, Composite patterns are those for whom individual elements can easily be separated. /// <summary> /// Treats elements as composition...
on
3 Nov 2013
Wiki Page:
Bridge Pattern
Richard Mueller
Bridge pattern compose objects in tree structure. It decouples abstraction from implementation. Here abstraction represents the client where from the objects will be called. # region The Implementation /// <summary> /// Helps in providing truely decoupled architecture /...
on
3 Nov 2013
Wiki Page:
Adapter Pattern
Richard Mueller
Adapter pattern converts one instance of a class into another interface which client expects. In other words, Adapter pattern actually makes two classes compatible. public interface IAdapter { /// <summary> /// Interface method Add which decouples the actual concrete...
on
3 Nov 2013
Wiki Page:
Prototype Pattern
Richard Mueller
This pattern creates the kind of object using its prototype. In other words, while creating the object of Prototype object, the class actually creates a clone of it and returns it as prototype. public abstract class Prototype { // normal implementation public abstract...
on
3 Nov 2013
Wiki Page:
Builder Pattern
Richard Mueller
This pattern creates object based on the Interface, but also lets the subclass decide which class to instantiate. It also has finer control over the construction process. There is a concept of Director in Builder Pattern implementation. The director actually creates the object and also runs a few...
on
3 Nov 2013
Wiki Page:
Abstract Factory
Richard Mueller
Abstract factory is the extension of basic Factory pattern. It provides Factory interfaces for creating a family of related classes. In other words, here I am declaring interfaces for Factories, which will in turn work in similar fashion as with Factories. public interface IFactory1...
on
3 Nov 2013
Wiki Page:
Factory Method
Richard Mueller
A Factory method is just an addition to Factory class. It creates the object of the class through interfaces but on the other hand, it also lets the subclass to decide which class to be instantiated. public interface IProduct { string GetName(); string SetPrice( double...
on
3 Nov 2013
Wiki Page:
About size_t and ptrdiff_t
Richard Mueller
Table of Contents Abstract Introduction size_t type ptrdiff_t type Portability of size_t and ptrdiff_t Safety of ptrdiff_t and size_t types in address arithmetic Performance of code using ptrdiff_t and size_t Code refactoring with the purpose of moving to ptrdiff_t and size_t References Abstract ...
on
2 Nov 2013
Wiki Page:
Load Text File Unicode and Non-Unicode Using Integration Service
Richard Mueller
I want to share about load flat file type Unicode non-Unicode by Integration Services SQL Server 2012. Integration services is best tool for extract, transform and load data from various source. Prepare file text Create Folder Upload and Folder Success Upload Prepare Package Variable for Path and...
on
2 Nov 2013
Wiki Page:
Get Customer's Technical Notification E-mail and List of all Company Admins
Richard Mueller
Before you start... This article is a part of a collection of articles. Please read Office 365 Reporting via PowerShell for Syndication Partners to understand the audience this article is intended for, the background, what's in scope and out of scope, assumptions and limitations. Scenario...
on
2 Nov 2013
Wiki Page:
Building SharePoint App Using JavaScript & REST with MVVM
Richard Mueller
In this tutorial, we will be creating a simple SharePoint app which will Add a list item into a Customer List and then displaying all list items on the page. Artifact: SharePoint App Language : JavaScript, REST Pattern: Model View ViewModel Library: Knockout Step 1: Create a Visual Studio...
on
2 Nov 2013
Wiki Page:
Global Link in SharePoint Sites Using Configuration File
Richard Mueller
Introduction More than once I have request from Site Owner and Managers to add new Option and link without make any change in MasterPage or other Out of the Box page, for this example want to show how can use SharePoint Solution to add JavaScript and SharePoint Configuration file " Elements...
on
2 Nov 2013
Wiki Page:
SharePoint 2010: Client Object Model with SilverLight
Richard Mueller
Introduction SharePoint has been a worldwide success in its adoption as a tool of corporate Portals and Collaboration, this article is perspective view your demo as a development tool for enterprise solutions. In this article I will also give attention to one of the new services offered...
on
2 Nov 2013
Wiki Page:
SharePoint 2010: Import Data from Excel into a List using PowerShell
Matthew Yarlett
Introduction There are several different ways to import data from a spreadsheet into a SharePoint list. Depending on your requirements, you can copy data into SharePoint lists using the DataSheet view, for example. However, there are some circumstances where this won't work (i.e. lack of support...
on
2 Nov 2013
Wiki Page:
SharePoint 2010: Create Analytic Reports using LogParser and PowerShell
Matthew Yarlett
Table of Contents Introduction Walk Through References Introduction SharePoint has built-in analytic reports, but they don't always provide you with the data you need. This article demonstrates how you can combine two great Microsoft tools, LogParser and PowerShell, to create a custom...
on
2 Nov 2013
Page 196 of 209 (5,220 items)
«
194
195
196
197
198
»
Can't find it? Write it!
Post an Article