Browse by Tags

Tagged Content List
  • Wiki Page: BizTalk Server 2013: Encrypting and Decrypting a Message

    Table of Contents Introduction Preparation for encryption or decryption of a message with BizTalk Sending encrypted messages with BizTalk Server Receiving encrypted messages with BizTalk Server See Also Introduction There can be scenario's applicable within your enterprise when encryption mechanism...
  • Wiki Page: SharePoint 2010: Get "Modified" and "Modified By" Information from a View in a List or Library

    The "Modified", " Modified By ", " Created by ", " Created " cannot be accessed directly via the SPView object because this simply doesn't store that kind of information. To request this information the SPFile object needs to be used instead. "Created...
  • Wiki Page: SharePoint 2013: Latest Windows Security Update in July 2013 Breaks the SharePoint XSLT System Web Part Pages

    Last week a Microsoft Windows Security Update was applied to a production server running Windows Server 2008 and SharePoint 2010. Following this patch, content owners using the Insert Link > from SharePoint to insert a link to a page, list item, or documents started receiving an error on the system...
  • Wiki Page: XSLT Muenchian Grouping - BizTalk Complex Transformation

    Table of Contents Introduction Building the Sample See Also Introduction I have an XML in the following format: < section > < entries > < entry > < name >Product 1</ name > < categories > < category >Fruit</ category...
  • Wiki Page: Complex Flat File Conversion using BizTalk schema and Map

    Table of Contents Introduction Building the Sample See Also Introduction Consider the following requirements: User have Flat File format: CDR 0A|0|4|0A|Country|India/South|;2;1690;1;5;20070101;5;20070106;5;20130106;| CDR 1A|0|4|1A|Country|India/West|;2;1683;1;5;20070101;5;20070106;5;20120107;...
  • Wiki Page: Implementation of Routing Slip Pattern Using ESB Toolkit 2.1 and BizTalk Server

    Table of Contents Introduction Building the Sample Test the Application See Also The Microsoft BizTalk ESB Toolkit extends the capabilities of BizTalk Server to support a loosely coupled messaging architecture. This article demonstrated how to implement routing slip pattern using BizTalk ESB Toolkit...
  • Wiki Page: Windows Phone 8 Development: Maps and Clusters

    This code example demonstrates how to dynamically group pushpins in the map control. There is a lot of code for Windows Phone 7, then I merged all what I need to create a project for WP8. First of all you need some namespace declaration: for map control and for pushpins from WP Toolkit . ...
  • Wiki Page: SharePoint 2010: How to Use Web Analytics

    You need to plan before you configure Web Analytics Service Application for SharePoint. Why? The reason is simple, and Joel Oleson explains the reasons on this blog: http://www.sharepointjoel.com/Lists/Posts/Post.aspx?ID=515 The issues have not improved on SharePoint 2013. Check this out: http...
  • Wiki Page: SharePoint 2010: How to Maintain InfoPath Form Changes

    When InfoPath forms undergo changes, certain requirement mandates that the existing "filled-up" forms (which resides in a form library) should not get affected. How do we achieve this? This article discuss on option(s) available. Let us look at the question with a use case scenario ...
  • Wiki Page: T-SQL: FIFO Inventory Problem - Cost of Goods Sold

    In this article I am going to explain the FIFO (first in first out) algorithm for calculating cost of goods sold. This is the real business problem I am working on now. Table of Contents Different methods of calculating Cost of Goods Sold in the Inventory Calculation Implementing FIFO Cost of Goods...
  • Wiki Page: SharePoint 2010: When there is no Powershell cmdlet or it is Internal

    This is one of those I usually spend hours on trying to find the correct way of doing it, then after one or two days of denial, I end up resolving to this method. I've used it when working with SharePoint 2010 Product key and as this example describes, setting a preferred search center under User...
  • Wiki Page: Set Brush for ScrollViewer Thumb

    In WPF/Silverlight ScrollViewer and ScrollBar control doesn't have any property to change color of Thumb dynamically from XAML by setting property. We have to edit the Style of ScrollBar and set the Brush for it according to our requirement. Based on requirement of one of the user on MSDN Forum...
  • Wiki Page: Building an App using the DataviewModel from external XML

    The title pretty much explains everything we will find in this article and solution to this question We will be using data from xml file to build our own data model and then finally displaying that to end user. ( Actual Question Image Link ) Basically this question answers three things...
  • Wiki Page: SSIS: Flat File Source Datetime Column Format Issue and Solution

    Table of Contents Introduction Problem Definition How it works Solution Introduction Flat files as Source are widely used in SQL Server Integration Services Tool. This article will discuss one common issue with Flat File Date time Columns. Problem Definition Below is the Source data...
  • Wiki Page: Editable Button in WPF

    Today I am going to share a code snippet to create an Editable Button in WPF, where we can update the text of a Button at runtime. In this control the user would right-click a button and then click 'Edit' to make to control Editable, and later right-click it to save/cancel the change. First...
  • Wiki Page: WPF Data, Item and Control Templates - Minimum Code, Maximum Awesomeness

    Table of Contents Introduction The Sample Project A Brief Explanation Introduction This article is going to highlight some of the awesomeness of WPF (and Silverlight) through XAML, INotifyPropertyChanged, Item Templates, Data Templates and Control Templates. The Sample Project ...
  • Wiki Page: Nesting, ListView inside ListView DataTemplate (Or TreeView representation)

    This article builds a data model to represent the nesting relationship which can be displayed in a tree like structure inside nested ListViews. This tries to solve this MSDN problem and create a structure as shown below Data Model class Menu { public ObservableCollection<...
  • Wiki Page: Display Images in GridView/ListView using DataBinding

    This article shows how easy it is to display images in ItemsControl element using simple DataBinding. Answer posted to these MSDN questions ( 1 , 2 ) Let's take a look at this sample code for the implementation details: < GridView x:Name = "gridView" ItemsSource...
  • Wiki Page: Windows Store App with a SQLite Database

    In Windows Store Apps there are variety of ways/methods to store your application data. Examples of such mechanisms would be Web Storage , IndexedDB etc. and even SkyDrive. Today I am going to write about my favorite data storage method in developing Windows Store Apps which is “ SQLite ”. ...
  • Wiki Page: Introduction to IndexedDB

    Today I am going to write about a storage method which is available in HTML5 as well is in Windows Store Apps which is “IndexedDB”. IndexedDB is an API for client-side storage where significant amounts of structured data can be stored. Since IndexedDB is based on indexes, it provides high performance...
  • Wiki Page: Introduction to HTML 5 Web Storage

    HTML5 has introduced two mechanisms for storing structured data on the client side, similar to HTTP session cookies. HTTP cookies have some drawbacks such as limited to store 4 KB of data etc. Web storage is considered as one of the most rising data storage methods is HTML 5 web applications as well...
  • Wiki Page: WebView - Dynamic Html Page with Images (MVVM)

    This article provides support for WebView in Windows 8 to display local html file or html page created dynamically. Oftentimes developers are looking to display local html file but due to the WebView restrictions (for security reasons) are not able to achieve it. This also caters to following Code...
  • Wiki Page: Tasks Window in Visual Studio 2013 Preview

    The Tasks Window is one of the nicest things which was introduced with Visual Studio 2013 Preview. This window will be very useful when debugging asynchronous code. In Visual Studio 2010 and Visual Studio 2012 there is a window called Parallel Tasks. You can view the Parallel Tasks window either...
  • Wiki Page: Set WCF Service Authentication to Use a Custom Username & Password over HTTP

    It’s a common requirement where you want to authenticate the requests which the clients will make to your WCF services. And let's say that’s using some data which you have in your user table. In WCF, the default, when a user name and password is used for authentication, is let Windows to validate...
  • Wiki Page: Using Two Interfaces with the Same Method Signature in One Class

    Let me give you a brief description about common scenario, let’s say you have two interfaces Interface1, Interface2, and both interfaces are having a method addNumber() with the same signature. Now let’s say you have to implement both interfaces in one class (e.g. Class1: Interface1, Interface2). The...
Page 6 of 9 (205 items) «45678»
Can't find it? Write it!