Posts
Showing posts from April, 2012
C# | Uso de un objeto BackgroundWorker para hacer tareas en segundo plano
- Get link
- X
- Other Apps
WPF | Iniciar sesión con GenericPrincipal, Hashes y Entity Framework
- Get link
- X
- Other Apps
Muestra como iniciar sesión en una aplicación WPF usando GenericPrincipal, Hashes y Entity Framework en Windows 8 con Visual Studio 11. El proceso consiste en: 1. Crear una aplicación WPF 2. Crear una ventana de login 3. Usar GenericIdentity para iniciar sesión 4. Usar una base de datos SQL Srvr 12 para guardar las contraseñas 5. Crear un creador de Hashes para crear usuarios 6. Implementar la comparación de hashes en la aplicación WPF
.net Winforms | Creación de una biblioteca de controles para Winforms
- Get link
- X
- Other Apps
.net Winforms | Uso de instancias de formas y controles en Winforms
- Get link
- X
- Other Apps
.net Winforms | Uso básico de forma en una aplicación para Windows
- Get link
- X
- Other Apps
C# | Monitoreo de archivos en carpetas con un FileSystemWatcher
- Get link
- X
- Other Apps
C# 4.5 | Asynchronous Programming in the .NET Framework 4.5
- Get link
- X
- Other Apps

Content - Asynchronous Operations - Async - Task-based Asynchronous Pattern - Task and Task<IResult> async await Requirements to use Async - Example using async and await First example: Creating the synchronous implementation Second example: Creating the asynchronous application Asynchronous tasks are necessary when applications are frozen due to actions that do not stop and let the user continue using them, you have probably seen the message "Application not responding ...". Let's see how to solve this problem with a new feature of Framework 4.5. Asynchronous operations A computer has a fixed number of processors and each of these processors can perform only one operation at a time, let's call this operation thread. Each thread in an application is programmed to run on the processor for a period of time. I...
C# 4.5 | Programmation asynchrone avec Framework. net 4.5
- Get link
- X
- Other Apps

Contenu - Opérations asynchrones - Async - Modèle asynchrone des tâches Task et Task<IResult> async await Articles nécessaires pour utiliser Async Exemple d'utilisation avec async et await - Premier tutoriel : Création d'un logiciel synchrone - Deuxième tutoriel : Création d' un logiciel asynchrone Les tâches asynchrones sont nécessaires lorsque les applications sont gelés en raison des actions qui ne finissent pas et ils ne laissent pas l'utilisateur de continuer à les utiliser , vous avez probablement vu le message " L'application ne répond ... ". Voyons comment résoudre ce problème avec une nouvelle fonctionnalité du Framework 4.5. Opérations asynchrones Un ordinateur comporte un nombre fixe de processeurs et chacun de ces processeurs peuvent exécuter une seule opération à la fois. Appelons cette opération "thread". Chaque thread dan...