Browse by Tags

Tagged Content List
  • Wiki Page: VB.NET: Upgrading from MS-Access to SQL-Server (Part 2/3)

    Table of Contents Introduction Data provider comparing read operations Creating MS-Access queries Creating SQL-Server queries Backup and restore database Convert Microsoft Access SQL to SQL Server (T-SQL) Parameterized queries SQL-Server Stored Procedures Returning multiple results sets Entity Framework...
  • Wiki Page: SharePoint 2016 Troubleshooting: Resolving a missing server side dependency in the Farm Admin content database

    Table of Contents Problem Solution Summary References Note Problem Observed the following issue appearing in the farm health report after removing a commercial farm solution: [MissingFeature] Database [SharePoint_AdminContent] has reference(s) to a missing feature: Name = [FeatureName], Id...
  • Wiki Page: Use Azure BizTalk Service to Transform Flat File to XML

    Table of Contents Introduction Step by Step Test the Solution Source Code See Also Introduction This sample demonstrates how to use Azure Service Bus to transform flat file to XML. The XML Bridge receives the flat file, transforms and sends it to Azure Service Bus Queue. Use Message Receiver...
  • Wiki Page: SharePoint 2013 Troubleshooting: DistributedCacheService.exe - The process was terminated due to an unhandled exception

    Table of Contents Problem Event ID 7034 Event ID 111 Event ID 1000 Event ID 1026 ULS Logs Troubleshooting Steps 1. Check Windows Server 2012 logs 2. Check Central Administration Services on Server Distributed Cache 3. Check Windows Services AppFabric Caching Service 4. Check ULS logs 5. Check AppFabric...
  • Wiki Page: SharePoint Online Tutorial: How to obtain counts of all sites by site template

    Table of Contents Introduction Total number of sites Delve blogs OneDrive usage Site types Procedure References Notes Introduction Some useful metrics for SharePoint Online administrators and IT managers are the: Total number of sites associated with their O365 subscription, How they are...
  • Wiki Page: ASP.NET Core: AutoMapper - Handling Profile Dependencies using Custom Value Resolvers

    If you are using or if you have used AutoMapper, Profiles lets you organize your mapping configurations in an easy manner. In this wiki, let’s see how we can handle AutoMapper Profile dependencies using Custom Value Resolvers. As it’s always good to go with an example, let’s go with an example...
  • Wiki Page: VB.Net - Multi Screen Capture

    Table of Contents Overview Catching the hotkey clsScreenCapture Conclusion Download Overview This is a multi-function screen capture application, that gives options about which screen, window, or region you want to capture. The capture runs on the PrtScr button, capturing whatever...
  • Wiki Page: Azure SQL: Three ways to copy databases between Azure SQL Servers

    Table of Contents The why The how Via the Azure portal Via a SQL query Via Powershell Synopsis There are many use cases for having to copy an Azure SQL Database from one Azure SQL Server to another but how to achieve this? The why One of those use cases is when you’re running both a production...
  • Wiki Page: WDS: Un exemple de fichier autounattend_PE.xml pour l'installation de Windows sous le mode automatique (sans assistance).

    Lors de l’utilisation de WDS, la question se pose souvent d’automatiser l’installation de Windows 10. Pour créer votre propre fichier de réponses, vous devez installer l'application Windows ADK. Cet article décrit un fichier ( autounattend_PE.xml ) déjà créé pour Windows 10 Enterprise...
  • Wiki Page: Azure LogicApp Debatching: Splitting Messages and process them separately

    Table of Contents Introduction Scenario Using Singleton Technique JSON Message Using Debatching Technique splitOn Output Conclusion Code (Logic App II) Introduction In this article I would like to explain Debatching technique in Logic app with two examples. Debatching is a technique of splitting...
  • Wiki Page: C# object comparisons basics

    Table of Contents Introduction Comparing strings Comparing objects IEquatable<T> Interface IEqualityComparer Interface Equality by primary key Overriding == != operators See also Summary Source code Introduction When working with various types in code comparisons are performed often ranging...
  • Wiki Page: Step by Step Guide to perform Exchange Dial Tone Recovery

    A disaster is always bound to happen and when it happens you need to be prepared for it. The last thing you need while you are trying to recover from a corrupted Mailbox database is frustrated users or the big boss on your shoulder waiting to see his emails the minute it goes down. Recovering with...
  • Wiki Page: Small Basic Sample: Moving Eyes

    This is a Small Basic sample program that moves eyes formed by Shapes object. This sample also shows how to use Timer object. Table of Contents Screen Shot Code See Also Screen Shot Following picture is the screen shot of the moving eyes sample. Code The source code of the program...
  • Wiki Page: SQL Server Troubleshooting: Distribution database size is increasing

    Award in March 2019 Table of Contents 1. First check free space in Distribution database 2. Check Log or MDF is increase and check any open transaction 3. Check replication type 4. Check if SQL Agent job [Distribution clean up: distribution] is running properly. A. distribution job failing...
  • Wiki Page: SharePoint 2016: Managed Metadata Service application rapid deployment steps

    Table of Contents Introduction Procedure Summary References Notes Introduction This posting walks through the steps for rapidly deploying a Managed Metadata service application to a SharePoint Server 2016 Enterprise farm via two PowerShell commandlets and a few administrative account provisioning...
  • Wiki Page: .NET: Custom Registry Class

    Table of Contents Important warning Registry classes Learning What is the purpose of those classes? Custom class for registry (Visual C#.NET): Important warning ​ This article is not for people who never worked with registry editor. If you are trying to do something and you don't have...
  • Wiki Page: Azure Service Bus Messaging with Queues using Sessions

    Table of Contents Introduction Building the Project Background Description Queue Description BrokeredMessage QueueClient IMessageSessionHandler DeadLetter Summary Introduction This TechNet article provides additional explanation to the MSDN project: Next Steps : Azure Service Bus Messaging with...
  • Wiki Page: Saving a Screenshot Using C#

    Table of Contents Assemblies Required System.Drawing System.IO Using the Code Points of Interest Screen capture library Assemblies Required This project, like all others requires some assemblies. To include them in your project, you make a reference to the namespaces, you can use the Add Reference...
  • Wiki Page: Consuming Azure Storage Python SDK using PTVS

    Table of Contents Installing PTVS (Python Tools for Visual Studio) Updating pip Installing Azure SDK via pip Refreshing Python Database Import Azure Storage Connection Different Operations Create a Blob List Down Blobs Download Blob Write Blob in Text Delete Blob Delete Container Create Blob From Bytes...
  • Wiki Page: UWP project with MVVM: Using Rx

    Table of Contents Intro Using Rx Let's try to make this code more elegant! Conclusion References: Credits Intro My team and I are currently working on a UWP project which is a complete rewrite of a WinRT app that we have been building.Recently we started development on the 'Search'...
  • Wiki Page: C#: Getting Started with Test Driven Development

    Table of Contents Introduction Taking Flight See also External resources Code Sample Introduction Test Driven Development (TDD) is a highly recommended approach to software development. In TDD, we first write unit tests, generate skeleton code so that the solution builds. Obviously, all tests will...
  • Wiki Page: OneDrive for Business: Disable access requests on company level using C# and CSOM

    Table of Contents Access Request Settings ODBAccessRequests property C# See Also Access Request Settings In SharePoint and OneDrive for Business site administrators can allow users to ask for permission on sites they don't have access to. When the user enters a url of a site they...
  • Wiki Page: Small Basic: How to Remove Goto Statements

    If your program has a lot of Goto statements, that can be called a spaghetti program. Structured program doesn't use Goto. So, how can you remove Goto from your program? Table of Contents Endless Loop Before After Conditional Jump Before After More Complicated Case Before After See Also Other...
  • Wiki Page: Small Basic: How to Debug

    This article includes the following tips in the table of contents about how to debug the program written in Small Basic language. And also this article shows you real samples for debugging with published programs. This document is for the following versions of programs. Small Basic v1.0 Visual...
  • Wiki Page: Small Basic: Dynamic Graphics

    This article is an introduction to graphical game programming using Small Basic. It includes the basics of program design, movement, user interaction with keys and mouse, collision detection and introduces some more advanced ideas at the end. Along the way, we create a very simple game with the main...
Page 16 of 209 (5,220 items) «1415161718»
Can't find it? Write it!