Browse by Tags

Tagged Content List
  • Wiki Page: Dynamics CRM 2011 Portal Development – CrmDataSource

    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...
  • Wiki Page: Dynamics CRM 2011 Portal Development – SavedQueryDataSource

    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...
  • Wiki Page: Dynamics CRM Database Optimization with DMVs

    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...
  • Wiki Page: SharePoint 2013 Workflow Does Not Exist

    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...
  • Wiki Page: Nancy - a Lightweight .Net Framework

    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...
  • Wiki Page: Setup SharePoint 2013 App Development Environment Using Powershell

    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...
  • Wiki Page: Chain of Responsibility Pattern

    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...
  • Wiki Page: Iterator Pattern

    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...
  • Wiki Page: Mediator Pattern

    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...
  • Wiki Page: Flyweight Pattern

    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...
  • Wiki Page: Composite Pattern

    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...
  • Wiki Page: Bridge Pattern

    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 /...
  • Wiki Page: Adapter Pattern

    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...
  • Wiki Page: Prototype Pattern

    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...
  • Wiki Page: Builder Pattern

    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...
  • Wiki Page: Abstract Factory

    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...
  • Wiki Page: Factory Method

    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...
  • Wiki Page: About size_t and ptrdiff_t

    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 ...
  • Wiki Page: Load Text File Unicode and Non-Unicode Using Integration Service

    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...
  • Wiki Page: Get Customer's Technical Notification E-mail and List of all Company Admins

    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...
  • Wiki Page: Building SharePoint App Using JavaScript & REST with MVVM

    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...
  • Wiki Page: Global Link in SharePoint Sites Using Configuration File

    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...
  • Wiki Page: SharePoint 2010: Client Object Model with SilverLight

    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...
  • Wiki Page: SharePoint 2010: Import Data from Excel into a List using PowerShell

    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...
  • Wiki Page: SharePoint 2010: Create Analytic Reports using LogParser and PowerShell

    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...
Page 196 of 209 (5,220 items) «194195196197198»
Can't find it? Write it!