Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Translate this page
Powered by
Microsoft® Translator
Popular Tags
.net
Active Directory
AD DS
ASP.NET
azure
Benoît Jester
BizTalk
BizTalk Server
BizTalk Server 2010
C#
C# .NET
Chen V
cloud
EAA
Ed Price
Edward van Biljon
en-US
es-ES
Excel
Exchange
Exchange 2010
Exchange 2013
Exchange Server 2010
fa-IR
FIM
FIM 2010
fr-FR
has Back to Top link
has code
has command
has comment
has Conclusion
has download link
has Gallery download
has image
Has Link
has links
has Other Languages
has reference
has References
has See Also
has summary
Has Table
Has TOC
has video
How To
Hyper-V
it-IT
Link Collection
Lync
magazine article
Mehmet Parlakyiğit
Microsoft
Microsoft Azure
Multi Language Wiki Articles
MVP
needs work
Office 365
pgtag
Português Brasil
PowerShell
pt-BR
SCCM
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint 2016
Sharepoint Online
Small Basic
SQL
SQL Server
SQL Server 2012
step by step
stub
System Center
System Center 2012
TAT
TAT Members
TechNet Guru
TechNet Guru Gold Medal Winner
TechNet Guru Medal Winner
TechNet Wiki
TechNet Wiki Featured Article
Translated into French
troubleshooting
tr-TR
T-SQL
Visual Studio
VS
Wiki
Windows
Windows 10
Windows 7
Windows 8
Windows Phone
Windows Phone Migration Content
Windows Server
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
Browse by Tags
>
TechNet Articles
>
All Tags
>
TechNet Guru
Tagged Content List
Wiki Page:
How to Transfer Files between a Windows Store App and any Silverlight Windows Phone App
mcosmin
First things first: how it works If we ever want to have our apps both on the Windows Phone and the Windows 8 stores, we might want to use some kind of syncing mechanism between the two. Since neither can access the other’s isolated data directly, some sort of file transfer between the two apps...
on
2 Oct 2015
Wiki Page:
Small Basic: How to Make a Turtle Maze Game
Arleta Wanat
Table of Contents Overview 1. Creating a maze 1.1 How to create a maze? 2. Creating AI which solves the maze 2.1 How to solve the maze? 2.2 What are needed for Silverlight environment? 3. Creating UI for another turtle 3.1 Create another turtle 3.2 How to control turtle 3.3 How to save score 3.4 Turtle...
on
29 Sep 2015
Wiki Page:
SSIS 2012 new REPLACENULL() function
Ken Cenerelli
From MSDN documentation – SQL server 2012: REPLACENULL (SSIS Expression) Returns the value of second expression parameter if the value of first expression parameter is NULL; otherwise, returns the value of first expression. Example This function was added to SSIS 2012 and is a useful...
on
27 Sep 2015
Wiki Page:
System Center Operations Manager 2012 R2 - Customizing E-Mail Notifications
Ken Cenerelli
As more and more users are reviewing Operations Manager notifications on mobile devices rather than traditional desktops and laptops it has become clear the default syntax is not so much confusing as it is difficult to read. For example the first part of the Subject field in the e-mail is the Name...
on
25 Sep 2015
Wiki Page:
Asynchronous method call in C#
Ken Cenerelli
If you want to call a method that will perform some operations in background and you want to proceed with performing other operations while background operation is happening, you can call the method asynchronously to execute it in background. The code sample includes a console application Program...
on
25 Sep 2015
Wiki Page:
SharePoint: Use a Visual Webpart to load a Dynamicly Created PDF Report
Ken Cenerelli
Introduction I was facing a problem to load pdf generated document in a popup window. The problem was user saves some information from a custom front end to SharePoint List and on the list event handler there was a code written to generate a SQL report and export it into pdf document all through...
on
25 Sep 2015
Wiki Page:
SharePoint 2010: Create Site Columns and Content Types using C#.Net
Ken Cenerelli
Table of Contents Introduction Create Site Column Create Content Type Add Field to Content Type See Also Introduction Example C#.Net code that can be used for creating Site Columns, Content Types, and adding fields to Content Type's. Create Site Column public static...
on
25 Sep 2015
Wiki Page:
FIM2010: How to Display the User Attribute in the Main UI of the FIM Portal
Edward van Biljon
Background ( FIM basic UI customization) : How to display the user attribute in the main UI of the portal. Fig1. In main UI of the FIM portal Employee ID is not displaying. Steps 1.Go to Administrator 2. Search Scopes 3. All Users, Results 4.In Attribute type EmployeeID...
on
25 Sep 2015
Wiki Page:
An Example of Using Write-Progress in a Long Running SharePoint PowerShell Script
Ken Cenerelli
Table of Contents Introduction Example PowerShell Function Example: Enumerate all of the publishing pages in the Pages library of the input web, and all sub-webs Example: Enumerate all of the publishing pages in the Pages library Example: The three progress bars used (with -Recurse) Example: Two progress...
on
21 Sep 2015
Wiki Page:
Understanding IDENTITY in SQL Server
Naomi N
This article is aimed at covering all the aspects of identity, its various features and concepts along with a couple of interesting scenarios where there is a bit different behavior of Identity. Table of Contents Introduction IDENTITY Property IDENTITY_INSERT option Getting the last inserted Identity...
on
20 Sep 2015
Wiki Page:
SQL Server PIVOT
Ken Cenerelli
Table of Contents Problem Definition Common Problem Other Blogs See Also Other Languages Problem Definition This article documents a solution to the problem raised in the following thread and explains the pitfalls people often encounter with the PIVOT function: ; WITH CTE_STC_DETAIL_CODES...
on
18 Sep 2015
Wiki Page:
Convert Datetime Received in JSON to a .Net DateTime
Ken Cenerelli
Some times when you receive a date time from a JSON string it is in UNIX Epoch format. The date time will come over as a number which is the number of milliseconds since Jan 1, 1970. To convert it to a .net DateTime create a DateTime for Jan 1, 1970 and add the milliseconds to get the actual time sent...
on
13 Sep 2015
Wiki Page:
Visual C#: How to Get the Connection String
Ken Cenerelli
This article is for you if you're ready to write your ADO code, where you have everything ready and are working on your local machine. But then, when you try to use it on a remote database, you just can’t figure it out. You ask yourself: What is my connection string ? A very easy and...
on
13 Sep 2015
Wiki Page:
Customizing The Creation And Initialization Of Content In The Modern UI For WPF
Ken Cenerelli
Table of Contents Introduction NuGet ModernWindow Dependency Injection Introduction This post is about how you could customize the creation and initialization of the content of a ModernWindow in the Modern UI for WPF library by creating a custom class that implements the FirstFloor.ModernUI.Windows...
on
13 Sep 2015
Wiki Page:
ASP.NET WebAPI - Enable Cors
Ken Cenerelli
Table of Contents Introduction STEP 1 - Create ASP.NET WebAPI 2 Application STEP 2 - Install Nuget STEP 3 - Enable CORS on solution STEP 4 - Make call from client Resources Introduction This article walks you through configuration of CORS on webapi. Browser security prevents a web page from...
on
13 Sep 2015
Wiki Page:
WPF: Implementing Global Hot Keys
Ken Cenerelli
Table of Contents Introduction P/Invoke RegisterHotKey Return Value Other Applications Sample Code See Also Introduction If you want your WPF application to be able to detect and handle key presses even when it is not currently activated or focused on the screen you could implement what is known...
on
13 Sep 2015
Wiki Page:
WPF: Disabling or Hiding the Minimize, Maximize or Close Button Of a Window
Ken Cenerelli
Table of Contents Introduction ResizeMode P/Invoke Sample code See also Introduction There may be situations when you want to hide or disable the minimize, maximize, or close button of a window without having to modify the style of the window in any other way. In WPF you can indeed set the WindowStyle...
on
13 Sep 2015
Wiki Page:
How to bind a Dictionary to a Listbox in apps based in XAML
Ken Cenerelli
Table of Contents Introduction Building the Sample Description Running the sample Source Code Files Source Introduction This sample as the goal to show how to bind a Dictionary to a Lisbox in apps based in XAML, using the MVVM pattern. Building the Sample You only need Visual Studio 2012...
on
6 Sep 2015
Wiki Page:
VBA & VBS Portal
Ken Cenerelli
Table of Contents Introduction MS Office SQL Server Active Directory Others VBA-General See Also Other Languages Introduction Visual Basic for Applications (VBA) is a programming language which is used to control Microsoft Excel's functionality or any other program developed in Windows Operational...
on
5 Sep 2015
Wiki Page:
Using XML Serialization with C# and SQL Server
Ken Cenerelli
Table of Contents Introduction XML Serialization Serialization Deserialization Scenario 1: Saving serialized XML as an XML Object in SQL Server Defining the table and stored procedure Create a method to pass XML parameters to the stored procedure Create a filter Retrieving all the filters from the database...
on
5 Sep 2015
Wiki Page:
Currency Conversion in SSAS 2012 (Multidimensional & Tabular)
Peter Geelen
Types of Currency Conversion As defined by the Business Intelligence Wizard in Multidimensional, there are 3 types of currency conversion. One-to-many . In this case we store the transactions (for example in the data warehouse) in a single base currency. Even if they originally took place in...
on
1 Sep 2015
Wiki Page:
Shrink SQL Database During Restore
pituach
Table of Contents Case Study: First option: using compressed folder & symbolic link Step 1: Create a compressed folder Step 2: Backup your database Step 3: Create symbolic link to the compressed folder Step 4: Restore your database using the symbolic link. Step 5: Shrink the Database Step 6: Detach...
on
31 Aug 2015
Wiki Page:
Wiki: How to Subscribe to the Wiki Ninjas Blog through RSS in Outlook 2013
Ken Cenerelli
Table of Contents RSS Subscription See Also This article will show you how you can monitor the Wiki Ninjas blog within Outlook 2013 using a Really Simple Syndication (RSS) feed. RSS Subscription Open Outlook 2013 . Right-click the RSS Feeds link on the left hand side and select Add a New...
on
31 Aug 2015
Wiki Page:
Toolbox searching in Visual Studio 2013
Ken Cenerelli
As VS2013 has more controls than ever it can be harder to find things. Just look at the Web Forms toolbox below which has some add-on controls installed as well as the defaults. I have many categories and each one has loads of controls. Finding the control I need used to mean rummaging through each...
on
31 Aug 2015
Wiki Page:
Using the Checked and Unchecked keywords in C# to perform overflow checking
Ken Cenerelli
Table of Contents Overview Constant Values Checked Keyword Unchecked Conclusion References Overview In C#, the Integer type is used a lot to store values within methods. Often we do not think about the limits that the Integer has. By default, the maximum value it can hold is 2147483647. If we...
on
31 Aug 2015
Page 27 of 41 (1,005 items)
«
25
26
27
28
29
»
Can't find it? Write it!
Post an Article