Browse by Tags

Tagged Content List
  • Wiki Page: The Equivalent to AutoGenerateColumns for a ListView/GridView

    In WPF there is no built-in way to make a ListView display generic content. The DataGrid has this ability but is probably too much for just a display. To this end I have created an AttachedProperty that will allow the user to use a ListView with that ability. To use this AttachedProperty simply...
  • Wiki Page: ASP.NET MVC Internals

    Returning Json Results from Mvc Controllers without JsonResult Some of the developers may not like returning JsonResult, because it may hide the actual data type we intend to return. They may like to return an object which should be automatically converted to JSON by the controller. The default ASP...
  • Wiki Page: Windows Azure Mobile Services. Краткое руководство по разработке. Часть 1. Введение.

    В этом кратком руководстве-переводе мы рассмотрим разработку приложения Магазина Windows , использующего Windows Azure Mobile Services как облачный бэкенд в различных задачах. Это перевод официального руководства с http://windows.azure.com . Оглавление: Часть...
  • Wiki Page: Windows Azure Mobile Services. Краткое руководство по разработке. Часть 4. Push-уведомления.

    Оглавление: Часть 1. Введение. Часть 2. Хранение данных в Mobile Services Часть 3. Аутентификация. Часть 4. Push-уведомления. Для того, чтобы отправлять push-уведомления в ваше приложение с использованием Windows Azure Mobile Services, необходимо воспользоваться...
  • Wiki Page: Windows Azure Mobile Services. Краткое руководство по разработке. Часть 3. Аутентификация.

    Оглавление: Часть 1. Введение. Часть 2. Хранение данных в Mobile Services Часть 3. Аутентификация. Часть 4. Push-уведомления. В этой части рассмотрены вопросы аутентификации в мобильном сервисе из вашего приложения. Регистрация приложения для аутентификации...
  • Wiki Page: Windows Azure Mobile Services. Краткое руководство по разработке. Часть 2. Хранение данных в Mobile Services

    Оглавление: Часть 1. Введение. Часть 2. Хранение данных в Mobile Services Часть 3. Аутентификация. Часть 4. Push-уведомления. В этой части руководства вы загрузите приложение, которое хранит данные в памяти, создадите новый мобильный сервис и интегрируете его с приложением...
  • Wiki Page: FOPE SFTP File Creation C# Example

    Note: This code is for evaluation purposes only. Basic idea here is that this will connect to a DC in your domain contoso.com and dump all email addresses out of the proxyaddresses attribute for your users where they have an email address that either contains contoso1.com, contoso2.com or contoso3...
  • Wiki Page: Criando e Consumindo Web API Parte 1

    Olá pessoal, este artigo eu vou falar e mostrar como criar um Web API e a parte 2 eu vou focar em consumir através do C# esse Web API. Se você ainda não sabe o que é Web API, leia alguns artigos anteriores publicados no site www.ecode10.com e www.mauriciojunior.org . O Web API veio para entrar no...
  • Wiki Page: Criando e Consumindo Web API - Parte 1

    Olá pessoal, este artigo eu vou falar e mostrar como criar um Web API e a parte 2 eu vou focar em consumir através do C# esse Web API. Se você ainda não sabe o que é Web API, leia alguns artigos anteriores publicados no site www.ecode10.com e www.mauriciojunior.org . O Web API veio para entrar no...
  • Wiki Page: Custom Audience Targeting SharePoint 2010

    This article will showcase how to create , compile Audiences using code and as well will show how to find whether a logged in user belongs to the Audience or not 1. Creating a new audience First thing we'll do is creating a custom audience, giving it two rules, joined with an OR operator. ...
  • Wiki Page: Fixed Length text file to Datatable

    Source code can be found at Fixed Length text file to Datatable After working so hard to work in an application to read huge Fixed Length Text Files I found some information about a tricky to do it defining an INI file with specifications which will be used to read file into datatable faster than...
  • Wiki Page: Binäruhr in C# und WPF (de-DE)

    Eine Binäruhr in C# In C# (und auch anderen Sprachen) ist es recht einfach eine eigene Binäruhr zu programmieren. Als erstes braucht man hierzu einen (Dispatcher)Timer, es würde theoretisch reichen, wenn der Timer ein Interval von 1 Sekunde hat, aber dann würde die Uhr bei der Sekundenanzeige etwas...
  • Wiki Page: C# Convertire un file. Ico in file .Bmp (it-IT)

    In questo esempio, utilizzando la classe bitmap inclusa nel namespace System.Drawing, viene convertito in un file con estensione .ico in un file .Bmp per visualizzarlo in una PictureBox. Questo è necessario perché il formato .Ico non è supportato dal controllo PictureBox. using System.Drawing;...
  • Wiki Page: How to Build, Manage and Navigate the User Interface of a WPF Application

    Table of Contents Introduction Download Navigate Pages or Dashboard NavigationWindow 1. Hyperlink 2. Frame 3. NavigationService Dashboard Applications Side-note about the power of templates 4. Adding UserControls to XAML 5. Parent Cast 6. Inversion of Control / Dependancy Injection (kind of) 7. Application...
  • Wiki Page: Getting Started With MongoDB

    MongoDB is a famous representative of NoSQL databases. It is a document-oriented database, which means that data will be stored in documents. In this article we will see how to set up MongoDB for Windows and how you can get started with it. Table of Contents Setting up MongoDB for Windows Working...
  • Wiki Page: How to Extend a Control in C#

    Table of Contents Introduction The Basics Example Code Examples/Resources Introduction Recently someone expressed confusion as to the purpose of extending an existing control. Hence, I developed this example in order to show how extending an existing control is a quick process and can save you...
  • Wiki Page: Identificare un disco rigido rimovibile (it-IT)

    Attraverso il metodo GetDriver della classe DriveInfo e possibile ottenere l'elenco dei drive disponibuili sul pc e anche il tipo , in questo esempio cercheremo di riconoscere se il drive e un unità disco rimovibile. private void BtnFind_Click( object sender, EventArgs e) { foreach ( DriveInfo...
  • Wiki Page: SPList.ContentTypesEnabled & SPList.AllowContentTypes

    Normally people are confused between ContentTypesEnabled and AllowContentTypes properties of SPList class SPList.ContentTypesEnabled Gets a Boolean value specifying whether content types are enabled for the list or sets a Boolean value to enable/ disable content types for the list...
  • Wiki Page: Jquery AutoCompleteTextBox Server-Side Bind

    Jquery Allow to creating AutoComplete TextBox, but it’s binded in client side with JS Array I’will take an example of how to bound it in Server-Side Step 0 : Add the references the Jquery library in the code behind : string JQeryCss = "../../Scripts/jquery-ui.css" ; ...
  • Wiki Page: Optimize your delegate usage

    Kudos to David Fowler for spotting this! We had a chat on JabbR and David pointed out something quite odd about delegates which he had discovered while optimizing some code. Let’s assume that we have the following code that declares a delegate and a method that uses it: public delegate...
  • Wiki Page: MCSD: Windows Store Apps

    Windows Store Apps Using HTML5 Required exams Programming in HTML5 with JavaScript and CSS3 Essentials of Developing Windows Store Apps Using HTML5 and JavaScript Advanced Windows Store App Development Using HTML5 and JavaScript Windows Store Apps Using C# Required exams Programming...
  • Wiki Page: C♯ Português

    C Sharp Português C♯ em Português O C♯ (também C#, C Sharp ou C Cardinal) é uma linguagem de programação segura (de forma geral), estaticamente tipada (excluindo a palavra-chave "dynamic"), orientada a objecto e forte, que...
  • Wiki Page: You May Receive False Errors in the Error List in Visual Studio 2012 When Creating a New C# Workflow Service Project

    When you create a new C# WCF Workflow Service Application in Visual Studio 2012 that targets .NET Framework 4.5, you may notice errors similar to the following in the Error List when the project is first created or opened: Error 1 The type or namespace name 'Data' does not exist in the...
  • Wiki Page: WCF Endpoints and Bindings

    Windows Communication Foundation gives us the ability to transmit messages using different transport protocols such as HTTP, TCP, and MSMQ (Microsoft Message Queuing) etc. As you already know all communication with a WCF service occurs through the endpoints of the service. There can be...
  • Wiki Page: New Features in WCF 4.5

    In the .NET Framework 4.5 Developer Preview, the following features have been added to make it simpler to write Windows Communication Foundation (WCF) applications: 1- Simplification of generated configuration files. 2- Support for contract-first development. 3- Ability to configure ASP.NET...
Page 4 of 7 (162 items) «23456»
Can't find it? Write it!