13 June 2011 0 Comments

Learning HTML5 from Disney Tron:Legacy Digital Book

Try at: http://disneydigitalbooks.go.com/tron/ Thanks to the amazing teamwork of Disney and Vectorform, it took just about 1 month to build the new Disney TRON: Legacy Digital Book Site , an immersive HTML5 experience built on top of Internet Explorer 9 Hardware Accelerated HTML5. In this post I’d like to share some of the “behind the scenes” stories from the team involved in the project, Full article at: http://windowsteamblog.com/ie/b/ie/archive/2011/06/03/behind-the-scenes-of-disney-tron-legacy-digital-book-site.aspx…( read more )

16 May 2011 0 Comments

Silverlight 5 관련 정보 컬렉션

Silverlight 5를 시작하려고 하시는 분들에게 도움을 드리기 위해서 관련된 정보들을 모아보았습니다. Silverlight 5의 전체적인 특징을 이해하고 싶으신 분들은 이 전 포스팅인 " 끝나지 않는 RIA 플랫폼의 진보 Silverlight 5" 를 참조해 주십시오  우선 본격적으로 시작하기에 앞서서 필요한 툴과 자료를 먼저 다운로드 합니다.   Silverlight 5 Download 필수 다운로드 Visual Studio 2010 SP1 (required) Silverlight 5 Beta Tools for Visual Studio SP1 (required) Expression Blend Preview for Silverlight 5 (optional) Silverlight 5 Features Document (optional) 추가적으로 필요한 요소들 Silverlight 5 Beta Developer Runtime for Windows Silverlight 5 Beta Developer Runtime for Mac Silverlight 5 Beta SDK WCF RIA Services for Silverlight 5 Beta 그리고 다운로드 되는 동안 Silverlight 5를 소개하는 동영상들을 살펴 봅니다.

11 February 2011 0 Comments

모다의 윈도우폰7 뚝딱 팩토리(7)-메뉴 구현하기

    한국마이크로소프트에서 초급 스마트폰 개발자 분들을 위해 공개하는 모다의 윈도우폰7 뚝딱 팩토리 일곱번째 영상!   기존의 윈도우 어플리케이션에서는 “메뉴 바” / “툴바” 라는 UI를 통해서 각 기능이나 페이지로 넘어갈 수 있었는데요, 윈도우폰에서는 스마트폰 디바이스에 맞도록 고유한 UI를 설계하여 쉽고 편하게 넘어갈 수 있도록 제공하는 것이 바로 “ 어플리케이션 바 ”입니다. 화면 아래 작은 아이콘과 슬라이드 업 메뉴들로 구성되어 있는 이 UI는 ApplicationBar  클래스를 통해 생성하고 아이콘과 아이콘 설명, 그리고 텍스트 메뉴아이템을 추가할 수 있습니다.   참고로 기본 아이콘 패키지는 C:Program FilesMicrosoft SDKsWindows Phonev7.0Iconsdark 폴더에 기본적으로 설치되어있습니다.

30 January 2011 0 Comments

How does Configuration Manager 2007 work with .NET Framework 4.0

First of all, Configuration Manager 2007 can work with .NET Framework 4.0, for the official support statement please reference to http://blogs.technet.com/b/configmgrteam/archive/2010/06/30/configuration-manager-support-announcements-for-june-2010.aspx .

5 January 2011 0 Comments

Creando mi nube privada : Self Service portal 2.0 Instalación

Nuestro buen amigo Pablo Campos ha publicado los primeros 3 articulos de una seria de 6 sobre como implementar “Hyper-V” en la nube, aqui el detalle: Creando mi nube privada : Self Service portal 2.0 Instalación Ya esta claro que la tendencia es la nube, es por esto que Microsoft lanza un producto llamado Self Service Portal 2.0, que lo pueden descargar desde acá , el cual nos permitirá confeccionar nuestra propia nube privada, para así poder ofrecer servicios de datacenter en la nube. Serie de artículos “Creando mi nube privada” Parte 1: Instalación Parte 2: Configuración Inicial Parte 3: Creación de Plantillas de VM Cuales son los requisitos para esta nube privada Windows Server 2008 R2 Enterprise o Datacenter Edition SQL Server 2008 (r2) Enterprise o Standar Edition …. NO EXPRESS System Center Virtual Machine Manager 2008 R2 Este SSP 2.0 no remplaza para nada al SSP que ya tiene el SCVMM y pueden trabajar los dos juntos sin ningún problema La arquitectura que desarrollaremos en este demo es simple: Un Servidor llamado 2008R2Sp1.alx.local que desempeñara las labores de: Hyper-v Server Active Directory SCVMM 2008 R2 Server Un Servidor llamado SSP2.alx.local que desempeñara las labores de: Sql Server Servidor web front end de SSP2 Servidor de base de datos de SSP2 Servidor de de SSP2 Antes de comenzar crearemos una cuenta llamada ssp2 en nuestro Active Directory que será la encargada de levantar los servicios mas adelante

16 December 2010 0 Comments

Multitouch Part 3: Multitouch in managed code and WPF

After yesterday’s post on developing with gestures , there may have been wailing and gnashing of teeth that all of the code samples were C++.  Well, today we will discuss multitouch in managed code.  Now, a little trip down memory lane…remember that Windows 7 was released before .NET 4.0.  Therefore, there were multitouch resources made available for developers at the launch of Windows 7 (that would work with .NET 3.5).  Then, when .NET 4.0 was released (with WPF as a part of that), a lot of multitouch support was moved and baked in WPF 4.0.  Therefore, it may sometimes be a little confusing to work with multitouch since there are differences in the before and after .NET 4.0 worlds.    Pre-.NET 4.0 Since not everyone is on .NET 4.0 yet, I do want to cover what you can do with .NET 3.5.  There are some great resources at http://code.msdn.microsoft.com/WindowsTouch .  Specifically, check out the Windows 7 Multitouch .NET Interop Sample Library .  It provides developers with full multitouch functionality for both managed WinForms and WPF 3.5 SP1.  This library contains a few demos for reference, including detailed samples showcasing multitouch gesture support, as well as manipulation and inertia for both managed WinForms and WPF. In the sample library, there is a class called Windows7.Multitouch.Handler.  This is an abstract base class for the derived classes TouchHandler and GestureHandler.  A form can have one handler, either a touch handler or a gesture handler.  The form will need to create the handler and register to events.  You can use Factory to create one of the handlers.  This can be done slightly differently depending on the type of touch support that you need:  For Windows Forms, managed Win32 hWnd, and WPF gesture support , the handler wraps the Window (hWnd).  In the below code snippet (taken from the mtWPFGesture project in the Interop Sample Library), the constructor of the MainWindow first checks for multitouch support, calls Factory.CreateGestureHandler() to create a gesture handler, and then wires up event handlers on all of the gesture events on the gesture handler.  private readonly Windows7.Multitouch. GestureHandler _gestureHandler; public MainWindow() { InitializeComponent(); if (!Windows7.Multitouch.

4 December 2010 0 Comments

Videos codieren? Klar aber nicht auf meiner Büchse – sondern auf Windows Azure mit 8 Cores via RDP (How-To)

Ich musste mal wieder 4 Videos codieren und das hätte meinen Rechner gleich wieder einen Tag lahm gelegt. Daher dachte ich mir ok: Besser ich mach das auf einem anderen Rechner der 8 Cores hat und da ist er. Bequem via RDP erreichbar und das zum 0-Tarif (zumindest für 3 Wochen).

24 November 2010 0 Comments

{CODE PARTY}12월 세미나 안내

12월 1일 등록은 여기 12월 15일 등록은 여기   많은 참석에 감사드립니다. 지난 코드파티 동영상 보기 http://msdn.microsoft.com/ko-kr/gg263827.aspx 개발자를 위한 발빠른 링크 모음 http://youngwook.com/tag/NEWS + 실시간 듣는 코드파티 소식 Twitter http://twitter.com/winkey7 #

16 November 2010 0 Comments

TFS 2008 version control security dialog shows blank

I found this issue to be common while troubleshooting on my cases and found that w hen you go to team explorer and right click on folder in solution explorer, TFS 2008 version control security dialog shows blank UI after you install Service Pack 1 for .NET 3.5 on the server    We later realized and found that this issue can occur if t he code in ASP.NET that serializes the permission data on the server does not work properly when .NET 3.5 SP1 is installed, resulting in empty lists being returned to the client.   Hence, the solution for this is to either uninstall SP1 for .NET 3.5 or install SP1 for TFS 2008(which I would recommend more than uninstalling sp1 for .Net Framework 3.5)

16 November 2010 0 Comments

{CODE PARTY}개발자를 위한 News+ 50개 링크 업데이트 입니다.

Hot News 1. {CODE PARTY} 17일 세미나는 PDC(Pro Developer Conference) 2010 입니다. 지금 등록중입니다

15 November 2010 0 Comments

{CODE PARTY}17일 세미나 PDC10에서 본 클라우드 이야기

PDC(Pro Developer Conference)는 Microsoft가 주최하는 개발자들을 위한 최대 행사입니다. Silverlight, Windows Azure 등 Microsoft의 핵심 플랫폼에 관한 소식들을 어마어마하게 쏟아내는 것으로 유명합니다. 올해도 변합업이 PDC10 행사로 진행되었고 이번에는 주로 클라우드에 관한 이야기와 Windows Phone7에 관한 많은 세션들이 있었습니다.  세션 개수만 하더라도 상당한데 {CODE PARTY}에서는 이것을 먹기 좋게 잘 발라서 이야기 해주는 시간을 갖고저 합니다

6 November 2010 0 Comments

Windows Azure Gewinnspiel noch bis 15. Dezember 2010 teilnehmen und ein Windows Phone 7 oder eine Xbox mit Kinect gewinnen

Microsoft veranstaltet ein Gewinnspiel zum Thema Windows Azure bei dem man die neuesten Gadgets gewinnen kann. Man muss lediglich eine Anwendung in die Cloud hochladen und von dort aus seine Registrierung übermitteln.