zhiming

Stories kicked by zhiming

Enterprise Library 5.0 and Unity 2.0 Roadmap(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 3 months ago

Now that the release of Visual Studio 2010 is just around the corner, the next thing to consider is when will the updated release of Entlib ship? Check out this blog post by Grigori Melnik where he reveals that April 14, 2010 is the magic target date…http://blogs.msdn.com/agile/archive/2010/01/20/announcing-enterprise-library-5-0-and-unity-2-0-roadmap.aspx For those of you who may not be familiar with what Enlib is - The Microsoft Enterprise Library is a collection of reusable software components (application blocks) designed to assist software developers with common enterprise development challenges. read more...

add a comment |category: |Views: 391

tags: another

Using Open XML SDK 2.0 to Create Office Solutions on Windows 7(blogs.msdn.com)

submitted by zhimingzhiming(1135) 2 years, 3 months ago

With Open XML SDK 2.0, it becomes much easier to create Microsoft Office (2007 and 2010) based solutions with managed code than to work with VSTO (Office runtime for Visual Studio through interop) directly. The December 2009 Community Technical Preview (CTP) of the SDK, available for download here, is supported on Windows 7, Vista, XP and Windows Server 2003 and 2008. You can watch this 8-minute video to learn more about how to work with the SDK, including three handy tools for developers here. read more...

add a comment |category: |Views: 163

tags: another

Bing Maps Moves Forward with Silverlight Innovation(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 4 months ago

On January 19, the "Beta" tag was removed from the Silverlight version of Bing Maps - along with a couple of new features and Bing Maps Application Gallery mash-ins – like the ability to choose a custom map – like the “treasure Map” view shown above. Here’s a screenshot of the Map Apps you can check-out at the Bing Maps Silverlight site at http://www.bing.com/maps/explore read more...

add a comment |category: |Views: 10

tags: another

ARCast.TV - An Overview of MVC4WPF - Part 3 of 3(blogs.msdn.com)

submitted by bobfamiliarbobfamiliar(3648) 2 years, 4 months ago

Brian H. Prince talks with Stephen Giffin and John Hannah about their new open source project called MVC4WPF. It is a new framework and guidance package that helps you quickly build enterprise WPF applications. They have seen a dramatic improvement in productivity, ability to leverage entry level developers, and a massive reduction in development costs. The framework helps your developers follow the right path and do the right thing. read more...

add a comment |category: |Views: 2

tags: another

Creating Ribbon Applications on Windows 7(blogs.msdn.com)

submitted by zhimingzhiming(1135) 2 years, 4 months ago

The ribbon concept was first introduced with Office 2007 and is now natively supported on Windows 7. Developers can create ribbon applications with rich user interface with either C++ or managed code such as C# or VB.NET. To get started with creating Windows 7 ribbon applications, you can review the ribbon guidelines and the ribbon roadmap available on MSDN and the PDC08 presentation on Windows Scenic Ribbon at Channel9. For C++ developers, this color picker sample app provides a quick look at how to work with color schemes using the ribbon framework. For C# developers, this ribbon library along with 18 sample applications shows how to add the ribbon feature to your Windows Forms applications. A good resource for all developers including VB.NET developers is this Windows 7 Training Kit for Developers, where you can find samples on ribbon and all other areas. It is worth noting that if all these sample applications require a ribbon compiler, uicc.exe, which is available in Windows 7 SDK. If you try to run them on a 64-bit computer, you may run into some errors that may be caused by the incorrect pre-build event command line which you can find on the project properties. You will have to fix the command line by fixing the %ProgramFiles% environment variable, or manually run the command line to generate required ribbon binary file, header file, and resource file. In some cases, you may be able to find a quick fix by copying three files, uicc.exe, uiccDLL.dll, uicc.xsd, to the same folder where the ribbon markup xml file resides. However, this quick fix requires that you copy these three files for each ribbon project, therefore it is not a very desirable solution. read more...

3 comments |category: |Views: 175

tags: another

Silverlight 4 – How to Capture Audio and Video from a Web Cam(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 4 months ago

One of the coolest new features in Silverlight 4 is the ability to capture audio and video input from Web Cameras. With a few simple lines of code, you can request permission to your users to leverage their capture devices and then capture both the audio and video streams. So far, there have been some great examples of how to capture the video and use it as a background “brush” to paint a screen in the browser to show what the camera sees along with a few samples for enabling “snapshot” images from the webcam. But no one has actually taken it all the way to saving the captured video and audio streams locally (in isolated storage) to allow for a later file upload of the captured video segment – Until now… Check-out this post from Mike Taulty's Blog – where he shows you how to successfully save the streams to disk: http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2009/12/30/silverlight-4-webcams-oncemorewithaudio.aspx read more...

5 comments |category: |Views: 257

tags: another

Visual Studio Myth Buster(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 4 months ago

Need help justifying to the boss why you need to explore all the cool new features that are releasing soon in Visual Studio 2010? Stuck in a rut on an older version of Visual Studio and feeling the “need for speed” when it comes to increasing productivity for architects, developers, testers, and all the other IT folks involved in the ALM process? The Visual Studio 'Myth Busting Matrix' reveals the benefits of upgrading to Visual Studio 2010 and helps dispel some widely held myths. read more...

3 comments |category: |Views: 519

tags: another

SEO Improvements in ASP.NET 4(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 4 months ago

Looking to increase your web site's "discoverability" on the web to ultimately drive more traffic to your site? ASP.NET 4.0 has a few new features coming to help you improve the SEO of your web site: Page.MetaKeywords and Page.MetaDescription properties One of the nice improvements with ASP.NET 4 Web Forms is the addition of two new properties to the Page class: MetaKeywords and MetaDescription that make programmatically setting the “keywords” and “description” <meta> tags within the <head> section of your HTML much easier and cleaner. read more...

add a comment |category: |Views: 16

tags: another

IE8 Accelerator Creation Guide(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 4 months ago

Ever wanted to see how truly simple it is to configure an accelerator for Internet Explorer 8? Ever wonder how much more traffic you could drive to your web site with something as easy as an IE8 search accelerator (since almost every web site has at least some level of “Search” capabilities on their web site?) An IE8 accelerator is really just short and simple XML file – here’s an example one below for doing a search on MSDN: This one is REAL handy if you happen to be a .NET Architect / Developer): read more...

2 comments |category: |Views: 80

tags: another

ARCast.TV - An Overview of MVC4WPF, Part 1(blogs.msdn.com)

submitted by bobfamiliarbobfamiliar(3648) 2 years, 4 months ago

Brian H. Prince meets with Stephen Griffin and John Hannah about their new open source project called MVC4WPF. It is a new framework and guidance package that helps you quickly build enterprise WPF applications. They have seen a dramatic improvement in productivity, ability to leverage entry level developers, and a massive reduction in development costs. The framework helps your developers follow the right path and do the right thing. read more...

add a comment |category: |Views: 4

tags: another

Microsoft collaborates to improve interoperability(blogs.msdn.com)

submitted by bobfamiliarbobfamiliar(3648) 2 years, 4 months ago

The Interoperability Bridges and Labs Center is dedicated to technical collaborative work between Microsoft, customers, partners and open sources communities to improve interoperability between Microsoft and non-Microsoft technologies. The Center is run by the Microsoft Interoperability Strategy Group working with many other teams at Microsoft, with customers input and with the community at large to build technical bridges, labs and solutions to improve interoperability in mixed IT environments. In this site, you will find a live directory of these technical and freely downloadable interoperability Bridges with related content such as demos, technical articles, helpful best practices from the projects leads and sharing technical guidance. You will also find Labs, which contain technical guidance explaining how to best achieve interoperability in specific product scenarios. The vast majority of the projects are run as Open Source projects with third party and community members and released under a broad BSD license, or other licenses such as MS-PL or Apache, so that our customers, partners and the community can use them in many open and broad reaching scenarios. We welcome feedback and discussions on the Interoperability Strategy Group blog at Interoperability @ Microsoft. read more...

3 comments |category: |Views: 78

tags: another

Can’t Touch This…Silverlight Touch API Sample Download(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 4 months ago

Multitouch support in Windows 7 allows applications to blur the lines between computers and the real world. Touch-optimized applications entice users to touch the objects on the screen, drag them across the screen, rotate and resize them, and flick them across the screen by using their fingers. Multitouch requires an environment (platform and operating system, hosting application such as a browser) that can propagate the touch input to an individual application, such as your Silverlight-based application. read more...

3 comments |category: |Views: 134

tags: another

Windows 7 Optimizations on Solid State Drives(blogs.msdn.com)

submitted by zhimingzhiming(1135) 2 years, 4 months ago

Be default, Windows 7 disables Superfetch, ReadyBoost, as well as boot and application launch prefetching on Solid State Drives (SSD) with good random read, random write and flush performance. These technologies were all designed to improve performance on traditional hard disk drives (HDD), where random read performance could easily be a major bottleneck. Because of the design changes, Windows 7 powered PCs with SSDs run fast. To understand how these design changes improve overall system performance, read this team blog post by the Windows 7 product group. read more...

2 comments |category: |Views: 296

tags: another

Visual Studio 2010 and Team Foundation Server 2010 Beta 2 virtual imag(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 4 months ago

Here’s a great way to get up-to-speed with Visual Studio 2010 and Team Foundation Server 2010…download the complete virtual images and get started! Choose one of the three virtualization options below: Visual Studio 2010 Beta 2 (Hyper-V) Visual Studio 2010 Beta 2 (Windows [7] Virtual PC) Visual Studio 2010 Beta 2 (Virtual PC 2007 SP1) Microsoft Visual Studio 2010 Ultimate provides an integrated environment of tools and server infrastructure that simplifies the entire application development process. read more...

4 comments |category: |Views: 165

tags: another

Office 2010 Developer Training Kit Released!(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 4 months ago

Microsoft Office 2010 Beta is a broadly extensible platform for building information worker productivity solutions and developing for Office with Visual Studio 2010 Beta 2 makes this easy. The Office 2010 Developer Training Kit content is designed to help developers get started building solutions, from add-ins to full featured Office Business Applications (OBAs), using Visual Studio 2010 with Office 2010 and SharePoint 2010 as the core platform. read more...

2 comments |category: |Views: 92

tags: another

Architecture Journal – Issue 22 – Business Intelligence Architecture(blogs.msdn.com)

submitted by bobfamiliarbobfamiliar(3648) 2 years, 4 months ago

Several articles dealing with the planning, architecture and design of business intelligence solutions tha tleverage a SOA principles. read more...

5 comments |category: |Views: 244

tags: another