Browse by Tags

Tagged Content List
  • Wiki Page: Azure Mobile Services Custom API - Exploring Server Side Capability

    This Wiki Article explores some of the capabilities of Azure Mobile Services API that might be of interest in some scenarios. Note: this article assumes some familiarity with Azure Mobile Services. For a great introduction see the Microsoft documentation . Node.js It is important...
  • Wiki Page: SharePoint 2010: Find Installed Feature Information in SharePoint

    It is possible to find SharePoint installed feature information by the means of the SharePoint Power Shell Console. This PowerShell script does this for you. PS 1: Gives a simple output of all features in table format sorted by solutionId then featureName. $url = "Your site URL...
  • Wiki Page: Become More Productive by Making Custom Code Generation Tools

    Download You can download this example project at the following link. MSDN Galleries (C# and Visual Basic examples) Introduction Sometimes when programming, we get stuck spending valuable time performing repetitive tasks. We can forget that it's possible to create our own reusable...
  • Wiki Page: Conditional Branches With Visual Basic.Net

    What is a conditional branch ? Conditional branches are how computers can be programmed to make decisions based on varying conditions. Without conditional branches , computers would not be able to 'Think'. How do conditional branches work? There are 2 kinds of conditional branches...
  • Wiki Page: Bitmap.Lockbits De-Mystified .Net

    How To Use Bitmap.Lockbits Many people may have noticed in the past how intimidating using Bitmap.Lockbits has been due to a lack of clarification/documentation on its usage. This article attempts to do an in depth review of its usage. It does not focus on alternate methods to lockbits. I remember...
  • Wiki Page: Small Basic: How to Create an Extension Using VB.NET

    Table of Contents STEP 1: Create an Extension STEP 2: Make it Work STEP 3: Moving On Other Languages This article is about how to create a simple extension that you can build on for Small Basic (Microsoft). To get started you will need Small Basic, .NET Framework 3.5, and Visual Basic.NET 10. If...
  • Wiki Page: Visual Basic - Knife Thrower!

    Table of Contents What is this article about? Glossary/MSDN Library Cross Reference of terms What is GDI+? What is a polygon in Visual Basic? How does polygon rotation work? Part1 Form Initialization Part2 Form1's Load event Part 3 - Waiting for input Part 4 - The polygon Class Project Source...
  • Wiki Page: Visual Basic - Drive Searcher

    Table of Contents Finding files with Visual Basic Source Code Introducing the DriveSearcher Class SearchParameters FileFoundEventHandler StatusChangedEventHandler DriveSearcher Class Resources Finding files with Visual Basic A few times a month, I will see people asking in the forums...
  • Wiki Page: Convert System.Decimal to and from Byte Arrays (VB & C#)

    Table of Contents Introduction ​ Getting the bytes of a System.Decimal Creating an instance of the System.Decimal from bytes Summary References Introduction ​ At first glance converting the datatype (System.Decimal) to and from bytes may appear to be a challenge, this is because the...
  • Wiki Page: T-SQL: Script to Find the Names of Stored Procedures that Use Dynamic SQL

    This script was developed to answer the question in this thread I need query find all the SPs that used dynamic SQL We can execute dynamic sql using sp_executesql or just with Exec / Execute . To find the names of the StoredProcedure that may have used dynamic SQL, this script can be used...
  • Wiki Page: Understanding NOLOCK Query Hint

    In our day to day T-SQL querying we use lot of query hints to modify the way a particular query will be executed. When we specify query hint SQL Server produces optimized plan using this query hint. This can be dangerous if it is not tested before in UAT as it is known fact that query plan which SQL...
  • Wiki Page: How to Get the Textual Representation of a Number (Convert Number to Words) in VB.Net

    Table of Contents Introduction Designing the Class Converting Decimal Values Usage Example Summary Appendix A: Complete Code Sample Introduction Converting a decimal number into its textual representation is nothing new and the Internet is full of examples on ways to do so. The basic idea...
  • Wiki Page: SharePoint 2013: Integrate Yammer with SharePoint for Social Feature(s)

    Table of Contents Yammer ? Yammer Integration with SharePoint Integration with Yammer Web part Integration with Yammer embed code Yammer ? Yammer is a social communication platform for organization. Employees can communicate with each other to share valuable information, they can get in touch...
  • Wiki Page: T-SQL: Applying APPLY Operator

    This article originates from the following MSDN Transact SQL Forum's question: Complex logic to be implemented in SQL - Please help! and I hope I made a pun with its title. In my solution to the problem presented by the thread's originator I am going to show how to use OUTER APPLY...
  • Wiki Page: T-SQL: Date-Related Queries

    In this article I plan to add various interesting date related queries. This article will expand when new problems will present themselves in the Transact-SQL forum. Table of Contents Finding Day Number from the Beginning of the Year Finding Beginning and Ending of the Previous Month See Also ...
  • Wiki Page: T-SQL: Gaps and Islands Problem

    This article will consider a simple classical Gaps & Islands problem asked recently in Transact-SQL Forum at MSDN with non original title "Query Help" . Table of Contents Problem Definition Solution See Also Problem Definition The thread originator was kind enough...
  • Wiki Page: SharePoint 2013: How to Get Following and Followers of User by using JSOM or JavaScript

    Table of Contents ​ Using Social Information in SharePoint 2013 First step Second Step See Also Other languages ​ Using Social Information in SharePoint 2013 Getting Following and followers of a specific or current user in SharePoint 2013 is very easy. SharePoint 2013 has provided client side...
  • Wiki Page: SharePoint 2013 - Comment récupérer les suivis et les adeptes d'un utilisateur en utilisant JSOM ou JavaScript (fr-FR)

    Note : Cet article est une traduction de l'article SharePoint 2013: How to Get Following and Followers of User by using JSOM or JavaScript. Table of Contents Utilisation des informations sociales dans SharePoint 2013 Première étape Deuxième étape Voir aussi Autres langues disponibles ...
  • Wiki Page: How to Handle image/pjpeg MIME Type in a image control which is not supported in SSRS

    Solution: 1.Go the image control and go to the properties. 2. You would find the property "Use this MIME type" 3. Write a expression to change the Mime type to a MIME type that is supported by SSRS ex: If(First(Fields!MIME_TYPE.Value, "DataSetImage") = "image/pjpeg"...
  • Wiki Page: Querying and Creating Records in Dynamics CRM 2011 from BizTalk Server 2010

    Table of Contents Introduction Integration Strategies Referencing the Service Mapping the Query Message Mapping the Create Message Configuring the Send Port Executing the Query Summary See Also Introduction Microsoft Dynamics CRM 2011 is the latest version of Microsoft’s CRM platform. Both the...
  • Wiki Page: BizTalk Server:Receive Pipeline Component To Validate Incoming Data

    Table of Contents Problem Solution Component Code Execute(): Code here Utility Function: Using the component Getting : Instance Xpath From XSD Registering Component Adding it to tool bar Points of Interest See Also Problem BizTalk default EDI validation will validate data base on Schema Enumerations...
  • Wiki Page: BizTalk: Mapping: Script Functoid: Type of Input and Output Parameters

    Rule of thumb: In the "Script Functoids - Inline C#" use only string types as the input and output parameters. How it works: If the C# method in the Script Functoids - Inline C# has non-string parameter, it will be converted to the string on the "border" of this functoid...
  • Wiki Page: BizTalk: Monitoring and Automatically Starting Host Instances Via A Scheduled Task

    by Ron Phillips, aka El Bo on Technet Table of Contents Introduction Building the Sample See Also Introduction If you've ever gotten a phone call at 2 am asking you to figure out why a system is down, you'll appreciate the utility of self-healing systems. With a little work with...
  • Wiki Page: Save Credentials for all Servers’ RDP Connections

    It was a big joy when I found a solution how to save my current windows credentials for all servers' rdp connections. We have more than 50 servers and it's annoying to enter my credentials on every rdp connection to server. But can you imagine how it is hard for environment with 200 and even...
  • Wiki Page: How to Programmatically Add a Workflow Variable when Rehosting the Workflow Designer

    When creating workflows programmatically, variables can be added to an activity by adding them to the activity's variable collection, like this. Variable< int > n = new Variable< int >( "n" , 1); Sequence s = GetSequenceActivityFromSomewhere(); s.Variables.Add...
Page 8 of 45 (1,105 items) «678910»
Can't find it? Write it!