All-In-One Code Framework (Audio) - Channel 9

The Microsoft All-In-One Code Framework is a free, centralized code sample library driven by developers' needs. Our goal is to provide typical code samples for all Microsoft development technologies, and reduce developers' efforts in solving typical programming tasks. Our team listens to developers' pains in MSDN forums, social media and various developer communities. We write code samples based on developers' frequently asked programming tasks, and allow developers to download them with a short code sample publishing cycle. Additionally, our team offers a free code sample request service. This service is a proactive way for our developer community to obtain code samples for certain programming tasks directly from Microsoft. More info: http://1code.codeplex.com/

Troubleshoot expired certificates

This video shows different error scenarios caused by expired certificates when users open web application in web server,  and provides corresponding solutions.

12-31
02:10

Troubleshoot incorrect URI/Identifier specified on relying party

This video provides solutions to the errors that occur when users open their web applications in web server caused by incorrect URI/Identifier specified on the Relying Party.

12-31
02:46

How to create and host WCF services in Azure

Azure Cloud Services help you deploy and scale powerful web applications and APIs. This video will show you how to use this code sample  to create and use WCF services in Azure Cloud Services.Download script: https://code.msdn.microsoft.com/CSAzureWCFServices-20c7d9c5

12-01
04:55

How to control role instances programmatically in Azure using a WCF service

Windows Communication Foundation is designed to offer a manageable approach to create Web services and Web service clients. This video shows you how to start a WCF service to control role instances in Windows Azure to run any script file or .exe file.Download script:  https://code.msdn.microsoft.com/Get-internal-IP-address-549b5294

12-01
04:13

How to resize WPF panel at Runtime

In WPF apps, you might want to resize controls at runtime, for example, when you create some template for a form. This video will show you how to resize WPF controls at runtime.Download sample: https://code.msdn.microsoft.com/How-to-Resize-WPF-panel-on-62fbbf12

12-01
01:58

How to use Azure Access Control for Single Sign-On

If your web application need support multiple user validations, you must handle different token with different methods, but when you try to move your application to Windows Azure, Access Control Service (ACS) can solve this problem for you.Downloa script: https://code.msdn.microsoft.com/Windows-Azure-Access-d01d282b

12-01
06:11

How to encode several images to a video in universal Windows apps

Media Foundation provides better support for media formats, with new codecs, and a simplified programming model. This video will show you how to encode multiple images to a video with Media Foundation in universal Windows apps.Download sample: https://code.msdn.microsoft.com/How-to-encode-several-to-a-053953d1 

12-01
02:33

How to bulk import or export data to or from Azure table storage with Excel (VS2013)

In Azure Table storage, you can store large amounts of structured, non-relational data. This video shows how to use the sample solution to export or import data from or to Azure Table storage by using Excel.Download sample: https://code.msdn.microsoft.com/How-to-bulk-importexport-f1396df1

12-01
02:41

How to apply an Opacity Mask to an image in Universal apps using Direct2D

An opacity mask enables you to control the opacity of the image when applied to another image in very creative ways. This video will show you how to apply opacity mask effect to an image using Direct2D in universal Windows apps.Download sample: https://code.msdn.microsoft.com/How-to-apply-an-Opacity-09c2a28c

11-30
02:26

How to download or upload multiple files in Windows Azure blob storage (VS2013)

Azure blob storage is a service for storing large amounts of data in the cloud, such as documents, images, or media files. This video shows you how to download or upload multiple files from or to Azure blob storage.Download script: https://code.msdn.microsoft.com/How-to-or-upload-multiple-41e0bcb3

11-30
02:47

How to add a table with rows to PowerPoint using OpenXML

Sometimes, you may need to perform certain operations in Office PowerPoint using code. Open XML SDK can help you achieve this with strongly-typed classes. This video will show you how to use Open XML SDK 2.0 to add a table with rows to a PowerPoint file.Sample download: https://code.msdn.microsoft.com/How-to-add-a-table-with-e82e4b11

05-21
01:51

How to access data from SQL Server database in Windows Store app

In Windows Store apps there is no option to directly connect to a SQL Server database. If you want to access SQL Server database, you must add a service layer. In this video, we're gonna show you how to create a WCF service to access data from SQL server database in Windows Store apps. Sample Download: https://code.msdn.microsoft.com/How-to-access-data-from-5f2602ec

05-21
02:41

How to use HttpClient to post Json data to WebService in universal Windows apps

It's easy to post JavaScript Object Notation or JSON data to a web service in WinJS realm. But sometimes you may need to do this using the HttpClient class in the .NET applications. This video shows you how to achieve this in universal Windows apps.Sample code download: https://code.msdn.microsoft.com/How-to-use-HttpClient-to-b9289836 

05-21
01:44

How to convert an Excel file to XML format

XML file format is well-known for its use of the open standard, which allows you to exchange data between different apps.  This video shows you how to convert an Excel file to XML format using Open XML SDK with our sample in Visual Studio.Download the C# solution at this URL: https://code.msdn.microsoft.com/How-to-convert-excel-file-7a9bb404 

04-08
01:41

How to call Web service in Excel using Visual Studio Tools for Office

Sometimes, you may want to incorporate data from online resources into your Excel worksheets, like the weather data of a city. This video shows you how to call a weather web service to get online data in Excel using Visual Studio Tools for Office (VSTO).

04-08
01:50

How to drag items between groups in grouped GridView

GridView is a common control for displaying grouped items in Windows Store apps. Sometimes, you may want to move an item from one group to another with drag and drop. However, the dragged item will goes back to the original position whenever you drop it. In this video, we will show you how to drag an item from one group to another in a grouped GridView.

02-04
01:12

How to save a data collection to app storage in Windows Store apps

Sometimes you may want to save app data to local storage when you close or leave the app so that it can be reloaded the next time you run the app. In this video, we'll show you how to save a collection to and load it from app storage in Windows Store apps.

02-04
01:48

How to create a master-detail ListBox in universal Windows apps

Multi-level master/detail listbox allows you to display a few lists that let users quickly drill down to the items of interest with a few selection of data in a hierarchy. In this video, we'll show you how to make a master/detail listbox in a universal Windows app.

02-04
01:36

How to zoom in or out the content in WebView in Univeral apps

The size of the WebView may not fit the size of the content very well. Whereas Webview has no built-in zoom function. So you cannot resize the content as your will. This video shows how to zoom in or out the content in Webview in Universal Windows apps.Download Sample: https://code.msdn.microsoft.com/How-to-zoom-inout-the-5a42229b

01-15
02:08

How to pick and manipulate a 3D object in universal Windows game apps

Microsoft DirectX is a collection of APIs for handling tasks related to multimedia, especially in game programming. In this video, we'll show you how to use DirectX to pick a 3D object and manipulate it in universal Windows game apps.Download sample: https://code.msdn.microsoft.com/How-to-pick-and-manipulate-089639ab

12-17
01:41

Recommend Channels