<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 15:57:21 +0000</lastBuildDate>
    <item>
      <title>(C#) How to Set Line Spacing of a Paragraph in an Excel Shape or Textbox inside .NET Apps - sherazam</title>
      <link>https://snipplr.com/view/147788/how-to-set-line-spacing-of-a-paragraph-in-an-excel-shape-or-textbox-inside-net-apps</link>
      <description>&lt;p&gt;This technical tip shows how to Set Line Spacing of the Paragraph in a Shape or Textbox in .NET applications. You can set the line space of the paragraph, its space before and space after using the TextParagraph.LineSpace, TextParagraph.SpaceBefore and TextParagraph.SpaceAfter respectively. The following example shows how to Set Line Spacing of the Paragraph in a Shape or Textbox.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Jul 2016 18:24:58 UTC</pubDate>
      <guid>https://snipplr.com/view/147788/how-to-set-line-spacing-of-a-paragraph-in-an-excel-shape-or-textbox-inside-net-apps</guid>
    </item>
    <item>
      <title>(C#) How to Add Rectangle or Line Object to An Existing PDF File using .NET - sherazam</title>
      <link>https://snipplr.com/view/147619/how-to-add-rectangle-or-line-object-to-an-existing-pdf-file-using-net</link>
      <description>&lt;p&gt;This technical tip shows how .NET developers can add line object to an Existing PDF File inside their .NET applications. Aspose.Pdf for .NET supports the feature to add graph objects (for example graph, line, rectangle etc.) to PDF documents. You also get the leverage to add Line object where you can also specify the dash pattern, color and other formatting for Line element. The legacy Aspose.Pdf.Generator provides the feature to set DashLengthInBlack and DashLengthInWhite properties where dash pattern for line object can be defined. Similar features can be accomplished while using DOM approach.&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jul 2016 19:02:40 UTC</pubDate>
      <guid>https://snipplr.com/view/147619/how-to-add-rectangle-or-line-object-to-an-existing-pdf-file-using-net</guid>
    </item>
    <item>
      <title>(C#) How to Render an Image of 3D Model from the Camera inside .NET Application - sherazam</title>
      <link>https://snipplr.com/view/147514/how-to-render-an-image-of-3d-model-from-the-camera-inside-net-application</link>
      <description>&lt;p&gt;This Technical tip explains how .NET developers can render an image of 3D model from the camera inside their .NET applications. Using Aspose.3D for .NET, developers can render an image to view a realistic image of 3D model, with or without the enhanced background, textures, shadows and also adjust the image size. The Render method exposed by the Scene class can be used to take a picture from the active camera. Developers may also use the several different ways to navigate and position the camera in the scene. In this code example, we create a camera at position (10,10,10) in an existing 3D scene and look at the origin point for rendering.&lt;/p&gt;</description>
      <pubDate>Wed, 13 Jul 2016 18:52:55 UTC</pubDate>
      <guid>https://snipplr.com/view/147514/how-to-render-an-image-of-3d-model-from-the-camera-inside-net-application</guid>
    </item>
    <item>
      <title>(DOS Batch) Show information about a user in a Windows domain - rm1984</title>
      <link>https://snipplr.com/view/147233/show-information-about-a-user-in-a-windows-domain</link>
      <description>&lt;p&gt;Show information about a user in a Windows domain&lt;/p&gt;</description>
      <pubDate>Thu, 30 Jun 2016 18:36:03 UTC</pubDate>
      <guid>https://snipplr.com/view/147233/show-information-about-a-user-in-a-windows-domain</guid>
    </item>
    <item>
      <title>(C#) How to Crop EMF Image using Shifts or Rectangle Approaches in .NET Applications - sherazam</title>
      <link>https://snipplr.com/view/147213/how-to-crop-emf-image-using-shifts-or-rectangle-approaches-in-net-applications</link>
      <description>&lt;p&gt;This technical tip explains how .NET developers can Crop an EMF Image inside their .NET applications. Image cropping usually refers to the removal of the outer parts of an image to help improve the framing. Cropping may also be used to cut out some portion of an image to increase the focus on a particular area. Aspose.Imaging for .Net API supports two different approaches for cropping image: by shifts and by rectangle. The EmfImage class provides an overloaded version of the Crop method that accepts 4 integer values denoting Left, Right, Top &amp; Bottom. Based on these four values, the Crop method moves the image boundaries toward the center of the image while discarding the outer portion.&lt;/p&gt;</description>
      <pubDate>Wed, 29 Jun 2016 19:03:17 UTC</pubDate>
      <guid>https://snipplr.com/view/147213/how-to-crop-emf-image-using-shifts-or-rectangle-approaches-in-net-applications</guid>
    </item>
    <item>
      <title>(C#) How to Convert PDF Pages to TIFF Image inside .NET Applications - sherazam</title>
      <link>https://snipplr.com/view/147177/how-to-convert-pdf-pages-to-tiff-image-inside-net-applications</link>
      <description>&lt;p&gt;This technical tip shows how to convert PDF pages to TIFF image inside .NET Applications.  The TiffDevice class allows you to convert PDF pages to TIFF images. This class provides a method named Process which allows you to convert all the pages in a PDF file to a single TIFF image. To convert a particular page in a PDF file to a TIFF image, use an overloaded version of the Process(..) method which takes a page number as an argument for conversion.&lt;/p&gt;</description>
      <pubDate>Wed, 22 Jun 2016 17:38:49 UTC</pubDate>
      <guid>https://snipplr.com/view/147177/how-to-convert-pdf-pages-to-tiff-image-inside-net-applications</guid>
    </item>
    <item>
      <title>(C#) How to Copy Message from One Mailbox Folder to Another in .NET Apps - sherazam</title>
      <link>https://snipplr.com/view/147162/how-to-copy-message-from-one-mailbox-folder-to-another-in-net-apps</link>
      <description>&lt;p&gt;This technical tip explains how .NET developers can Copy Message from one Mailbox folder to another. Aspose.Email API provides the capability to copy message from one mailbox folder to another. It allows copying a single as well as multiple messages using the CopyMessage and CopyMessages methods. The CopyMessages method provides the capability to copy multiple messages from source folder of a mailbox to the destination mailbox folder. The following code sample illustrates this by copying two messages.&lt;/p&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:30:52 UTC</pubDate>
      <guid>https://snipplr.com/view/147162/how-to-copy-message-from-one-mailbox-folder-to-another-in-net-apps</guid>
    </item>
    <item>
      <title>(C#) How to Retrieve Email Messages from Server with Paging Support inside .NET Apps - sherazam</title>
      <link>https://snipplr.com/view/146644/how-to-retrieve-email-messages-from-server-with-paging-support-inside-net-apps</link>
      <description>&lt;p&gt;This technical tip explains how to .NET developers can list email messages with paging support inside their .NET Applications. In scenarios, where the email server contains a large number of messages in mailbox, it is often desired to list or retrieve the messages with paging support. Aspose.Email API's ImapClient lets you retreive the messages from the server with paging support.&lt;/p&gt;</description>
      <pubDate>Wed, 13 Apr 2016 18:13:34 UTC</pubDate>
      <guid>https://snipplr.com/view/146644/how-to-retrieve-email-messages-from-server-with-paging-support-inside-net-apps</guid>
    </item>
    <item>
      <title>(C#) How to implement conference calling for a SIP softphone in C#? - warnerBro19</title>
      <link>https://snipplr.com/view/95922/how-to-implement-conference-calling-for-a-sip-softphone-in-c</link>
      <description>&lt;p&gt;A conference call is a meeting, conducted over the phone using audio, between two or more people and usually for the purposes of discussing a particular topic. In my former snippets I dealt with text-to-speech and speech-to-text functionalities. So the implementation of conference calling can sound a little bit strange as compared with my previous tutorials. But I thought it provides a good opportunity for a new challange, so I thought I share my upshot expectedly that it will be useful for you. &#13;
&#13;
A softphone with built-in conference call feature can be greatly used in business communication as well as in companionship. The source code below is ready for use, so you only need to copy&amp;paste it to your Visual Studio, then modify the necessary fields. (Do not forget to add the necessary DLL file providing the VoIP background to your references: http://www.voip-sip-sdk.com)&#13;
&#13;
This program will be a console application that functions as a softphone making conference calling possible. This solution assumes that you have a PBX with some SIP extensions installed previously. After creating the necessary using lines and objects, you need to define your PBX and provide the appropriate SIP account details in order to be able to register your application to the phone system. When you have created all the required methods for SIP calling, you need to initialize the conference room and handle the related events. AddToConference is used to add new party to the conference room and RemoveFromConference is used when the call is ended.&#13;
&#13;
Have a good time!&lt;/p&gt;</description>
      <pubDate>Fri, 03 Apr 2015 19:57:46 UTC</pubDate>
      <guid>https://snipplr.com/view/95922/how-to-implement-conference-calling-for-a-sip-softphone-in-c</guid>
    </item>
    <item>
      <title>(C#) How to make SIP video calls in C# - sacha-manji</title>
      <link>https://snipplr.com/view/88431/how-to-make-sip-video-calls-in-c</link>
      <description>&lt;p&gt;While searching on the Internet on how to make SIP video calls using C#, I recognised that there arenâ€™t any brief and straightforward tutorial in this topic. I found multi-page articles (sorry, but some of them are full of bullsh*t) and neverending forum threads, but none of them provided me complete solution. Therefore, I undertook to create a short and concise guide on how to make video calls in C# using the VoIP technology.&#13;
&#13;
Look at the prerequisites:&#13;
&#13;
-	PBX: To be able to make and receive video calls you, a phone system (e.g. Asterisk) is essentially needed. You need to add a new SIP account in your PBX for this application.&#13;
&#13;
-	Visual Studio: This solution is based on a console softphone, so a new Visual C# Console Application is just enough.&#13;
&#13;
-	VoIPSDK.dll: I used prewritten VoIP components to implement the SIP video calling feature. The necessary .dll file can be found on this website: http://www.voip-sip-sdk.com/. It should be added to your references.&#13;
&#13;
-	Test phone: To test your application you can use any VoIP phone stat supports video calling (e.g. Bria softphone).&#13;
&#13;
Now take a look at the code. As you can see below, just a few lines of C# code are enough to connect the application to a PBX and to initiate a video call. Firstly, you need to perform the SIP registration tasks. You need to create a softphone and a phone line object, then you need to specify the SIP account to be used for the phone line. These configurations are needed to be able to register to your PBX. After calling the RegisterPhoneLine method the regsitration procedure starts, and the application will indicates its status due to the mySoftphone_PhoneLineStateChanged method. The PhoneCallVideoSender and PhoneCallVideoReceiver objects are responsible for video handling. To handle the USB webcamera, the WebCamera object can be used. The CallType class is used to identify whether the call is a video or an audio call.&#13;
&#13;
To make a test call, provide valid SIP account details for this console application to be able to register to your PBX, then specify a telephone number to be dialled (it can be an other SIP account that has been previously registered to the PBX). After running the application, it dials the provided phone number automatically meanwhile sending the image of the webcamera.&lt;/p&gt;</description>
      <pubDate>Mon, 26 Jan 2015 21:50:53 UTC</pubDate>
      <guid>https://snipplr.com/view/88431/how-to-make-sip-video-calls-in-c</guid>
    </item>
    <item>
      <title>(C#) DocumentDB Controller - giventocode</title>
      <link>https://snipplr.com/view/79884/documentdb-controller</link>
      <description>&lt;p&gt;API Controller for Azure Mobile Services with DocumentDB as the backend.&lt;/p&gt;</description>
      <pubDate>Fri, 17 Oct 2014 01:41:23 UTC</pubDate>
      <guid>https://snipplr.com/view/79884/documentdb-controller</guid>
    </item>
    <item>
      <title>(C#) Document Entity Domain Manager - giventocode</title>
      <link>https://snipplr.com/view/79883/document-entity-domain-manager</link>
      <description>&lt;p&gt;Document Entity Domain Manager for Azure Mobile Services&lt;/p&gt;</description>
      <pubDate>Fri, 17 Oct 2014 01:36:44 UTC</pubDate>
      <guid>https://snipplr.com/view/79883/document-entity-domain-manager</guid>
    </item>
    <item>
      <title>(C#) C#/.NET  Code Samples to Save Microsoft OneNote (.one) file as an image (.PNG, .BMP, .JPEG, .GIF) file - johansonkatherine</title>
      <link>https://snipplr.com/view/73837/cnet--code-samples-to-save-microsoft-onenote-one-file-as-an-image-png-bmp-jpeg-gif-file</link>
      <description>&lt;p&gt;The Aspose.Note for .NET API allows developers to open files &amp; manipulate elements of OneNote books &amp; export them to PNG, GIF, JPEG, BMP and PDF formats. The following code sample shows developers how to save OneNote File as an image in C#/.NET&lt;/p&gt;</description>
      <pubDate>Tue, 11 Mar 2014 20:54:07 UTC</pubDate>
      <guid>https://snipplr.com/view/73837/cnet--code-samples-to-save-microsoft-onenote-one-file-as-an-image-png-bmp-jpeg-gif-file</guid>
    </item>
    <item>
      <title>(Java) C# &amp; VB.NET Code Samples for Exporting Microsoft Visio Diagram to XML - johansonkatherine</title>
      <link>https://snipplr.com/view/73532/c--vbnet-code-samples-for-exporting-microsoft-visio-diagram-to-xml</link>
      <description>&lt;p&gt;This technical tip shows how .NET developers can export Microsoft Visio diagram to XML inside their own applications using Aspose.Diagram for .NET. Aspose.Diagram for .NET lets you export diagrams to a variety of formats: image formats, HTML, SVG, SWF and XML formats:&#13;
&#13;
â€¢	VDX defines an XML diagram.&#13;
â€¢	VTX defines an XML template.&#13;
â€¢	VSX defines an XML stencil.&#13;
&#13;
The Diagram class' constructors read a diagram and the Save method is used to save, or export, a diagram in a different file format. The code snippets in this article show how to use the Save method to save a Visio file to VDX, VTX and VSX.&lt;/p&gt;</description>
      <pubDate>Thu, 30 Jan 2014 19:14:03 UTC</pubDate>
      <guid>https://snipplr.com/view/73532/c--vbnet-code-samples-for-exporting-microsoft-visio-diagram-to-xml</guid>
    </item>
    <item>
      <title>(Visual Basic) How to change selected item on combobox in code behind - keidash</title>
      <link>https://snipplr.com/view/71664/how-to-change-selected-item-on-combobox-in-code-behind</link>
      <description>&lt;p&gt;Example to change the selected item in a ComboBox, in code behind. For VB.Net&lt;/p&gt;</description>
      <pubDate>Fri, 28 Jun 2013 19:39:28 UTC</pubDate>
      <guid>https://snipplr.com/view/71664/how-to-change-selected-item-on-combobox-in-code-behind</guid>
    </item>
    <item>
      <title>(C#) .NET - C# - WebClient and HtmlAgilityPack - Fetching and Parsing HTML - denakitan</title>
      <link>https://snipplr.com/view/68101/net--c--webclient-and-htmlagilitypack--fetching-and-parsing-html</link>
      <description>&lt;p&gt;Shows how to use WebClient class to retrieve HTML from an URL and then to use HtmlAgilityPack to parse it.&lt;/p&gt;</description>
      <pubDate>Mon, 05 Nov 2012 14:50:26 UTC</pubDate>
      <guid>https://snipplr.com/view/68101/net--c--webclient-and-htmlagilitypack--fetching-and-parsing-html</guid>
    </item>
    <item>
      <title>(C#) .NET - C# - DateTime - Basics - denakitan</title>
      <link>https://snipplr.com/view/67827/net--c--datetime--basics</link>
      <description>&lt;p&gt;Basic examples on the usage of the DateTime objects.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 04:56:56 UTC</pubDate>
      <guid>https://snipplr.com/view/67827/net--c--datetime--basics</guid>
    </item>
    <item>
      <title>(C#) .NET - C# - Enum - Basics - denakitan</title>
      <link>https://snipplr.com/view/67826/net--c--enum--basics</link>
      <description>&lt;p&gt;Examples of use of Enum type, like how to iterate its items.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 04:49:18 UTC</pubDate>
      <guid>https://snipplr.com/view/67826/net--c--enum--basics</guid>
    </item>
    <item>
      <title>(C#) .NET - C# - Interop - Excel  - Utility/Wrapper Class - denakitan</title>
      <link>https://snipplr.com/view/67825/net--c--interop--excel---utilitywrapper-class</link>
      <description>&lt;p&gt;Utility class that abstracts the creation of a Excel spreadsheet through Interop, and helps on adding and format its contents.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 04:21:00 UTC</pubDate>
      <guid>https://snipplr.com/view/67825/net--c--interop--excel---utilitywrapper-class</guid>
    </item>
    <item>
      <title>(C#) .NET - C# - Resources - Basics - denakitan</title>
      <link>https://snipplr.com/view/67823/net--c--resources--basics</link>
      <description>&lt;p&gt;Basic examples on using information stored as Resources.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2012 04:08:37 UTC</pubDate>
      <guid>https://snipplr.com/view/67823/net--c--resources--basics</guid>
    </item>
    <item>
      <title>(C#) .NET - C# - Basics - Examples - Directory IO and DateTime Parsing - denakitan</title>
      <link>https://snipplr.com/view/67769/net--c--basics--examples--directory-io-and-datetime-parsing</link>
      <description>&lt;p&gt;Example of the usage of Directory IO class and the parsing of strings to DateTime.&lt;/p&gt;</description>
      <pubDate>Wed, 17 Oct 2012 08:51:23 UTC</pubDate>
      <guid>https://snipplr.com/view/67769/net--c--basics--examples--directory-io-and-datetime-parsing</guid>
    </item>
    <item>
      <title>(C#) .NET - WPF - C# - Basics - Examples - ComboBox ItemsSource Definition - denakitan</title>
      <link>https://snipplr.com/view/67768/net--wpf--c--basics--examples--combobox-itemssource-definition</link>
      <description>&lt;p&gt;Snippet to illustrate how to bind a ComboBox to a Dictionary.&lt;/p&gt;</description>
      <pubDate>Wed, 17 Oct 2012 08:06:57 UTC</pubDate>
      <guid>https://snipplr.com/view/67768/net--wpf--c--basics--examples--combobox-itemssource-definition</guid>
    </item>
    <item>
      <title>(ASP) how to use dynamically generated .Net element IDs on page in jquery or css - rumremix</title>
      <link>https://snipplr.com/view/67168/how-to-use-dynamically-generated-net-element-ids-on-page-in-jquery-or-css</link>
      <description>&lt;p&gt;In the examples, below, Step1 is the id  given to the element. If the element is set to runat="server", when it is rendered on the page, the id will change dynamically to something like ctl00$PlaceHolderMain$Step1. But the actual value may change. To make sure we capture the correct value to manipulate the element in javascript or CSS, use the technique below. Note that this code will need to live on the same page as the element, not in an external js or css file.&lt;/p&gt;</description>
      <pubDate>Thu, 13 Sep 2012 04:37:21 UTC</pubDate>
      <guid>https://snipplr.com/view/67168/how-to-use-dynamically-generated-net-element-ids-on-page-in-jquery-or-css</guid>
    </item>
    <item>
      <title>(C#) .NET - LINQ - C# - Basics - Examples - The Three Parts of a LINQ Query - denakitan</title>
      <link>https://snipplr.com/view/64638/net--linq--c--basics--examples--the-three-parts-of-a-linq-query</link>
      <description>&lt;p&gt;Snippet to illustrate the three actions that happen in all LINQ query operations.&lt;/p&gt;</description>
      <pubDate>Thu, 19 Apr 2012 05:42:05 UTC</pubDate>
      <guid>https://snipplr.com/view/64638/net--linq--c--basics--examples--the-three-parts-of-a-linq-query</guid>
    </item>
    <item>
      <title>(XML) Setting up Sharepoint files as a visual studio .Net solution - rumremix</title>
      <link>https://snipplr.com/view/63219/setting-up-sharepoint-files-as-a-visual-studio-net-solution</link>
      <description>&lt;p&gt;&lt;strong&gt;Setting up a sp .net soln&lt;/strong&gt; &#13;
&#13;
&lt;p&gt;File --&amp;gt; New --&amp;gt; Project&lt;/p&gt;&#13;
&lt;p&gt;on lefthand side -&amp;gt; Sharepoint -&amp;gt; 2010&lt;/p&gt;&#13;
&lt;p&gt;usually select an empty template&lt;/p&gt;&#13;
&lt;p&gt;name the project&lt;/p&gt;&#13;
&lt;p&gt;&lt;/p&gt;&#13;
&lt;p&gt;to add files, create a module...&lt;/p&gt;&#13;
&lt;p&gt;right-click project --&amp;gt; add --&amp;gt; new item&lt;/p&gt;&#13;
&lt;p&gt;select "module"&lt;/p&gt;&#13;
&lt;p&gt;give the module a name (such as masterpagecatalog)&lt;/p&gt;&#13;
&lt;p&gt;this will create the module, containing an elements.xml file and open the elements.xml file in code editor. Sample.txt will also be created but may be deleted.&lt;/p&gt;&#13;
&#13;
&lt;p&gt;Drag any previously created files that will live in the new module into the module icon in solution explorer&lt;/p&gt;&#13;
&#13;
&lt;p&gt;Edit elements.xml.  (See example edits to elements.xml in code block further down.) &lt;/p&gt;&#13;
&#13;
&#13;
&lt;p&gt;Edits to make to default xml:&lt;/p&gt;&#13;
&#13;
&lt;p&gt;in &amp;lt;Module&amp;gt; tag, put a url (such as  Url="_catalogs/masterpage" ) and put  RootWebOnly="TRUE"&lt;/p&gt;&#13;
&#13;
&lt;p&gt;The &amp;lt;file&amp;gt; tag will also be created with a default url property. Make sure to edit this so that it is correct. By default, it will create a path starting with the name of the module. And if there is no such folder already with that name beneath the Module path, the feature will create one.  The actual path is designated by both the &amp;lt;module&amp;gt; url property and the &amp;lt;file&amp;gt; url property (that is, both of those properties are combined).&lt;/p&gt;&#13;
&#13;
&lt;p&gt;Add Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE" to the &amp;lt;file&amp;gt; elements. IgnoreIfAlreadyExists="TRUE" means "overwrite existing file". Type="GhostableInLibrary" setting is used when a file is placed into a library. If a file is placed outside of a library, Type="Ghostable" would be used.&lt;/p&gt;&#13;
&#13;
&lt;p&gt;Change the &amp;lt;file&amp;gt; tags so that it is not self-closing.&lt;/p&gt;&#13;
&#13;
&lt;p&gt;Add some Property tags.Columns in the master page correspond to file object properties indicated in the module xml. Other file properties in the xml will also be added to the "property bag" that do not correspond to master page columns (see &amp;lt;property&amp;gt; tags above). &lt;/p&gt;&#13;
&#13;
&lt;p&gt;First, it is good practice to always add&#13;
&amp;lt;Property Name="FeatureId" Value="$SharePoint.Feature.Id$" Type="string"/&amp;gt;&lt;/p&gt;&#13;
&#13;
&lt;p&gt;On compliation, Value="$SharePoint.Feature.Id$" will be replaced with guid of feature. &lt;/p&gt;&#13;
&#13;
&lt;p&gt;For a master page, the following metadata will be added via the property tags&lt;/p&gt;&#13;
&#13;
&lt;p&gt;&amp;lt;Property Name="UIVersion" Value="4" /&amp;gt; &lt;/p&gt; &#13;
&lt;p&gt;&amp;lt;Property Name="ContentTypeId" Value="0x010105" /&amp;gt;&lt;/p&gt;&#13;
&lt;p&gt;&amp;lt;Property Name="ContentType" Value="$Resources:cmscore,contenttype_masterpage_name;" /&amp;gt;&lt;/p&gt;&#13;
&lt;p&gt;&amp;lt;Property Name="MasterPageDescription" Value="Masterpage for SepulvedaPOC sites." /&amp;gt; &lt;/p&gt;&#13;
&#13;
&#13;
&lt;p&gt;Make sure to edit the description as appropriate.&lt;/p&gt;&#13;
&#13;
&lt;p&gt;When the module was created, VS automatically created a feature called "Feature 1". Note that features may also be created by right-clicking "Features" in soln explorer and selecting "Add Feature".&lt;/p&gt;&#13;
&#13;
&lt;p&gt;Next step: add event reciever feature activated code if necessary&lt;/p&gt;&#13;
&#13;
&lt;p&gt;* Make sure to add the proper modules to the feature&lt;br&gt;&#13;
* Make sure that Scope is set to "Site" in the feature if the solution is a sandbox solution&lt;/p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 10 Feb 2012 04:50:30 UTC</pubDate>
      <guid>https://snipplr.com/view/63219/setting-up-sharepoint-files-as-a-visual-studio-net-solution</guid>
    </item>
    <item>
      <title>(C#) Mostrare una tile dall'isolated storage con Windows Phone 7.1 - kajinka13</title>
      <link>https://snipplr.com/view/63133/mostrare-una-tile-dallisolated-storage-con-windows-phone-71</link>
      <description>&lt;p&gt;Mostrare una tile dall'isolated storage con Windows Phone 7.1&lt;/p&gt;</description>
      <pubDate>Tue, 07 Feb 2012 07:51:13 UTC</pubDate>
      <guid>https://snipplr.com/view/63133/mostrare-una-tile-dallisolated-storage-con-windows-phone-71</guid>
    </item>
    <item>
      <title>(C#) Create stored procedured in your database to handle users - Barlon</title>
      <link>https://snipplr.com/view/61014/create-stored-procedured-in-your-database-to-handle-users</link>
      <description>&lt;p&gt;Create stored procedured in your database to handle users. Membership and Rulemanager.&#13;
&#13;
Type the line below in a commandprompt where "xxx.xx.xx.x" is IP to server and "mr" stands form membership and rulemanager.&lt;/p&gt;</description>
      <pubDate>Mon, 21 Nov 2011 04:28:08 UTC</pubDate>
      <guid>https://snipplr.com/view/61014/create-stored-procedured-in-your-database-to-handle-users</guid>
    </item>
    <item>
      <title>(VB.NET) Distinct datatable 1.0 - Gompje</title>
      <link>https://snipplr.com/view/60700/distinct-datatable-10</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 10 Nov 2011 22:19:53 UTC</pubDate>
      <guid>https://snipplr.com/view/60700/distinct-datatable-10</guid>
    </item>
    <item>
      <title>(VB.NET) Global System Object extensions for easier conditionals (VB.net example) - bryanlyman</title>
      <link>https://snipplr.com/view/59759/global-system-object-extensions-for-easier-conditionals-vbnet-example</link>
      <description>&lt;p&gt;Because there is no way to use object extenders in vb.net here is an example of how you can get similar functionality. See the C# example for further info.&lt;/p&gt;</description>
      <pubDate>Fri, 14 Oct 2011 16:45:34 UTC</pubDate>
      <guid>https://snipplr.com/view/59759/global-system-object-extensions-for-easier-conditionals-vbnet-example</guid>
    </item>
    <item>
      <title>(C#) Sending different Email types  with ASP.Net - derebus</title>
      <link>https://snipplr.com/view/57068/sending-different-email-types--with-aspnet</link>
      <description>&lt;p&gt;Como insertar imgenes en un envio via email en ASP.NET&lt;/p&gt;</description>
      <pubDate>Sat, 23 Jul 2011 09:29:25 UTC</pubDate>
      <guid>https://snipplr.com/view/57068/sending-different-email-types--with-aspnet</guid>
    </item>
    <item>
      <title>(C#) System Object extensions for easier conditionals (Extending Base Object Types) - bryanlyman</title>
      <link>https://snipplr.com/view/53894/system-object-extensions-for-easier-conditionals-extending-base-object-types</link>
      <description>&lt;p&gt;.net 3.0+, To create stability in your code, you must check all inputs into a method to make sure they are valid . Often people overlook this step because of laziness, or because they aren't convinced that exceptions and assertions are actually in place to help you instead of cause you a headache. Here are some extensions which can be used to enhance the System.Object class so that their methods are global to all classes; this makes input checking effortless. This is also somewhat generic in nature because the extensions take no class type in to account before they are called, but we can use type checking to perform different boxing (casting) operations.  Sadly this cannot be done in VB.net because late binding restrictions do not allow the Object class to be extended (See my VB.Net example for further information).&lt;/p&gt;</description>
      <pubDate>Sat, 21 May 2011 02:48:17 UTC</pubDate>
      <guid>https://snipplr.com/view/53894/system-object-extensions-for-easier-conditionals-extending-base-object-types</guid>
    </item>
    <item>
      <title>(C#) Loading Partial CUI's at Startup - cadnet</title>
      <link>https://snipplr.com/view/52182/loading-partial-cuis-at-startup</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 16 Apr 2011 07:33:42 UTC</pubDate>
      <guid>https://snipplr.com/view/52182/loading-partial-cuis-at-startup</guid>
    </item>
    <item>
      <title>(C++) boost.asioå¼‚æ­¥é‡è¿ž - liouys</title>
      <link>https://snipplr.com/view/50885/boostasio</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 20 Mar 2011 13:56:21 UTC</pubDate>
      <guid>https://snipplr.com/view/50885/boostasio</guid>
    </item>
    <item>
      <title>(Ruby) Using net http ping - Shamaoke</title>
      <link>https://snipplr.com/view/50481/using-net-http-ping</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 10 Mar 2011 22:41:40 UTC</pubDate>
      <guid>https://snipplr.com/view/50481/using-net-http-ping</guid>
    </item>
    <item>
      <title>(C#) Filter JSON-&gt;JSONP for .NET 3.5 - FMalk</title>
      <link>https://snipplr.com/view/46627/filter-jsonjsonp-for-net-35</link>
      <description>&lt;p&gt;The filter only needs to know which requests need to be returned as JSONP, doesn't care how. Modify "OnBeginRequest" accordinly.&#13;
If original .asmx doesn't return JSON, extend it like example shows.&#13;
JSONP only works for GET requests, so don't forget to change [ScriptMethod] if needed.&lt;/p&gt;</description>
      <pubDate>Thu, 06 Jan 2011 06:47:46 UTC</pubDate>
      <guid>https://snipplr.com/view/46627/filter-jsonjsonp-for-net-35</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 NetConnectShare Class - adrianparr</title>
      <link>https://snipplr.com/view/45586/as3-netconnectshare-class</link>
      <description>&lt;p&gt;This can be used to help load, play and monitor playback of external video.&lt;/p&gt;</description>
      <pubDate>Sat, 11 Dec 2010 01:35:39 UTC</pubDate>
      <guid>https://snipplr.com/view/45586/as3-netconnectshare-class</guid>
    </item>
    <item>
      <title>(ActionScript 3) auto register object aliases for remoting - away4m</title>
      <link>https://snipplr.com/view/44487/auto-register-object-aliases-for-remoting</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 20 Nov 2010 08:46:25 UTC</pubDate>
      <guid>https://snipplr.com/view/44487/auto-register-object-aliases-for-remoting</guid>
    </item>
    <item>
      <title>(C#) Split with regular expression, string extension method - gyurisc</title>
      <link>https://snipplr.com/view/43836/split-with-regular-expression-string-extension-method</link>
      <description>&lt;p&gt;This is an extension method for splitting strings with a regular expression.&lt;/p&gt;</description>
      <pubDate>Wed, 10 Nov 2010 02:34:11 UTC</pubDate>
      <guid>https://snipplr.com/view/43836/split-with-regular-expression-string-extension-method</guid>
    </item>
    <item>
      <title>(C#) isNumber extension method for string in C# - gyurisc</title>
      <link>https://snipplr.com/view/43834/isnumber-extension-method-for-string-in-c</link>
      <description>&lt;p&gt;isNumber string extension method for testing strings.&lt;/p&gt;</description>
      <pubDate>Wed, 10 Nov 2010 02:17:51 UTC</pubDate>
      <guid>https://snipplr.com/view/43834/isnumber-extension-method-for-string-in-c</guid>
    </item>
    <item>
      <title>(VB.NET) Add javascript in VB.Net and C# - ramirocalero</title>
      <link>https://snipplr.com/view/42977/add-javascript-in-vbnet-and-c</link>
      <description>&lt;p&gt;Hay dos maneras, la mejor es usar el script manager, tambien ver la diferencia entre &#13;
http://forums.asp.net/t/902895.aspx&lt;/p&gt;</description>
      <pubDate>Tue, 26 Oct 2010 23:36:35 UTC</pubDate>
      <guid>https://snipplr.com/view/42977/add-javascript-in-vbnet-and-c</guid>
    </item>
    <item>
      <title>(C#) create aspnet db in sql from .net tools - hairajeshk</title>
      <link>https://snipplr.com/view/42539/create-aspnet-db-in-sql-from-net-tools</link>
      <description>&lt;p&gt;create aspnet db in sql from .net tools&lt;/p&gt;</description>
      <pubDate>Tue, 19 Oct 2010 13:13:24 UTC</pubDate>
      <guid>https://snipplr.com/view/42539/create-aspnet-db-in-sql-from-net-tools</guid>
    </item>
    <item>
      <title>(VB.NET) Programmatically Determine the Operating System using .NET - goo</title>
      <link>https://snipplr.com/view/41368/programmatically-determine-the-operating-system-using-net</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 03 Oct 2010 03:09:41 UTC</pubDate>
      <guid>https://snipplr.com/view/41368/programmatically-determine-the-operating-system-using-net</guid>
    </item>
    <item>
      <title>(C#) Profile example - housecor</title>
      <link>https://snipplr.com/view/40153/profile-example</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 08 Sep 2010 23:41:19 UTC</pubDate>
      <guid>https://snipplr.com/view/40153/profile-example</guid>
    </item>
    <item>
      <title>(JavaScript) How To Check .Net Framework Version Installed - indra</title>
      <link>https://snipplr.com/view/39704/how-to-check-net-framework-version-installed</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Aug 2010 17:20:59 UTC</pubDate>
      <guid>https://snipplr.com/view/39704/how-to-check-net-framework-version-installed</guid>
    </item>
    <item>
      <title>(C#) String Comparison C# - stewshack</title>
      <link>https://snipplr.com/view/38608/string-comparison-c</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 06 Aug 2010 13:59:36 UTC</pubDate>
      <guid>https://snipplr.com/view/38608/string-comparison-c</guid>
    </item>
    <item>
      <title>(C#) Sorting Gridview Control ASP.NET - mpcircuitry</title>
      <link>https://snipplr.com/view/36549/sorting-gridview-control-aspnet</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 01 Jul 2010 01:47:44 UTC</pubDate>
      <guid>https://snipplr.com/view/36549/sorting-gridview-control-aspnet</guid>
    </item>
    <item>
      <title>(C#) ASP.NET Membership Provider - Remove Unwanted Profile Properties - mmfusion</title>
      <link>https://snipplr.com/view/36547/aspnet-membership-provider--remove-unwanted-profile-properties</link>
      <description>&lt;p&gt;I removed several properties from my custom Profile class, and wanted to clean out the data from the aspnet\_Profile table. This code will remove all unwanted data from the PropertyNames and PropertyValuesString columns of aspnet\_Profile. Note this assumes PropertyValuesBinary is not used, though it wouldn't be hard to support that too.&lt;/p&gt;</description>
      <pubDate>Thu, 01 Jul 2010 00:15:48 UTC</pubDate>
      <guid>https://snipplr.com/view/36547/aspnet-membership-provider--remove-unwanted-profile-properties</guid>
    </item>
    <item>
      <title>(C#) DateTime format - imstand</title>
      <link>https://snipplr.com/view/35455/datetime-format</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 02 Jun 2010 21:29:27 UTC</pubDate>
      <guid>https://snipplr.com/view/35455/datetime-format</guid>
    </item>
    <item>
      <title>(XML) Priority Binding - ethansimmons</title>
      <link>https://snipplr.com/view/34652/priority-binding</link>
      <description>&lt;p&gt;WPF unleashed pg 303&lt;/p&gt;</description>
      <pubDate>Mon, 17 May 2010 16:27:18 UTC</pubDate>
      <guid>https://snipplr.com/view/34652/priority-binding</guid>
    </item>
    <item>
      <title>(C#) Cause a Postback in .NET - blackf0rk</title>
      <link>https://snipplr.com/view/34651/cause-a-postback-in-net</link>
      <description>&lt;p&gt;This code will execute a postback.&lt;/p&gt;</description>
      <pubDate>Mon, 17 May 2010 16:25:32 UTC</pubDate>
      <guid>https://snipplr.com/view/34651/cause-a-postback-in-net</guid>
    </item>
  </channel>
</rss>
