Recent from talks
Nothing was collected or created yet.
Microsoft Visual Studio Express
View on Wikipedia
| Microsoft Visual Studio Express | |
|---|---|
Visual Studio Express 2012 for Desktop, developing a Windows app called Wikipedia Recon Drone | |
| Developer | Microsoft |
| Final release | |
| Operating system | Microsoft Windows |
| Type | Integrated development environment |
| License | Freeware, registerware[3] |
| Website | visualstudio |
This article needs to be updated. (September 2022) |
Microsoft Visual Studio Express was a set of integrated development environments (IDEs) that Microsoft developed and released free of charge. They are function-limited version of the non-free Visual Studio and require mandatory registration.[3] Express editions started with Visual Studio 2005.
In 2013, Microsoft began supplanting Visual Studio Express with the more feature-rich Community edition of Visual Studio, which is available free of charge[4] with a different license that disallow some scenarios in enterprise settings. The last version of the Express edition is the desktop-only 2017.
2005–2010: Language-centric editions
[edit]History
[edit]Visual Studio 2005 Express, the first version of the Express edition, was released in October 2005. It runs on Windows 2000 SP4 and later. The first service pack for 2005 Express was released in December 2006. This version is freeware and requires no registration.
Visual Studio 2008 Express reached general availability in November 2007. Its first service pack was first publicly available in on 11 August 2008. This version requires Windows XP SP3, although it can develop apps compatible with Windows 2000. Microsoft introduced mandatory registration in this version.[5]
Visual Studio 2010 Express was released in April 2010, alongside Visual Studio 2010. While most of its components (see below) ran on Windows XP, its Windows Phone component needed Windows Vista.
Characteristics
[edit]The 2005, 2008, and 2010 versions of Visual Studio Express consist of several standalone IDEs, each of which is focused on a single programming language:
- Visual Basic Express (the Visual Basic .NET language)
- Visual C++ Express (the Visual C++ language)
- Visual C# Express (the C# language)
- Visual J# Express (the ill-fated J# language, 2005 only)
- Visual Web Developer Express (ASP.NET)
- Visual Studio Express for Windows Phone (2010 only)
Visual Basic Express
[edit]Visual Basic Express has the following limitations:[6][7]
- No IDE support for databases other than SQL Server Express and Microsoft Access
- No support for web applications with ASP.NET (although, it is supported by Visual Web Developer Express)
- No support for developing for mobile devices (no templates or emulators)
- Absence of Crystal Reports
- Fewer project templates (e.g. Windows services template and Excel Workbook template are unavailable)
- Limited options for debugging and breakpoints
- No support for creating Windows Services (needs a separate project template)
- No support for OpenMP
- Limited deployment options for finished programs
- No code folding
Visual Basic 2008 Express includes the following improvements over 2005:
- Includes the visual Windows Presentation Foundation designer codenamed "Cider"
- Debugs at runtime
- Better IntelliSense support
Visual Basic 2005 and Visual Basic 2008 Express feature a Visual Basic 6.0 converter that makes it possible to upgrade Visual Basic 6.0 projects to Visual Basic.NET. The converter is not included with the Visual Basic 2010 Express.
Visual Web Developer Express
[edit]Visual Web Developer Express is a freeware web development tool[8] that allows developers to evaluate the web development and editing capabilities of the other Visual Studio editions at no charge. Its main function is to create ASP.NET websites. It has a WYSIWYG interface, drag-and-drop user interface designer, enhanced HTML and code editors, a limited database explorer, support for CSS, JavaScript and XML, and integrated, design-time validation for standards including XHTML 1.0/1.1 and CSS 2.1.
Visual Web Developer 2005 Express lacks certain features, such as the Accessibility Checker, the ability to create standalone class library projects, third-party add-ins and macros.[9] Visual Web Developer 2008 Express SP1 supports both class library and web application projects.[10] It also includes a new integrated HTML designer based on Microsoft Expression Web. However, this edition cannot publish self-developed websites.[clarification needed]
Visual C++ Express
[edit]Visual C++ Express compiles .NET and Win32 applications in 32-bit only.[11][12] It includes Windows SDK's compilers and core files, which developers can use to build Win32 applications.
Limitations of Visual C++ Express:
- No support for MFC or ATL. These libraries can, however, be installed from an older version of the Windows SDK and Windows Driver Kit,[13] or a Visual Studio Trial installation.
- Lack of a resource editor, which is available in commercial editions of Visual Studio.[14]
- No profiling support.
- No support for add-ins or IDE macros.
- No option for crash dump generation.
- No "list of all breakpoints" window.
- No support for cross-language debugging, for example, a C# application calling a C++ DLL.
Limitations in earlier versions:
- No out-of-box support for developing 64-bit applications (prior to 2012).
- No support for OpenMP (prior to 2012).
- The debugger cannot be attached to a running process (prior to 2010).
While Microsoft lists memory windows as unavailable in Visual Studio 2010 Express,[15] third parties have reported that they are available when Expert Settings are enabled.[16][17]
Many open-source projects have started providing project files created with Visual C++ Express; noteworthy examples include the Ogre and Irrlicht engines. Modding kits for commercial engines, such as Valve's Source engine, also support this development system.[18]
Visual C# Express
[edit]Visual C# Express is a free, lightweight, integrated development environment (IDE) designed for novice developers, students and hobbyists to create applications and (when combined with the XNA Game Studio) video games for Windows, Xbox 360 and Zune. It can build console, Windows Forms and Windows Presentation Foundation applications, and class libraries.
Microsoft has found that a substantial community of game players are taking up C# programming.[19][20][21]
Visual C# Express does not have a breakpoint control panel; breakpoints can only be toggled. The following refactoring modes were also unavailable:[22]
- Encapsulate field
- Promote local to parameter
- Reorder parameters
- Remove parameters
- Extract interface
The limitations effectively reduce the refactoring capabilities of Visual C# Express to renaming and extracting methods. According to Microsoft, the reason the listed features are absent is "to simplify the C# Express user experience". Some users remarked that the omission of refactoring capabilities removed useful functionality without actually simplifying use.[23]
The ability to attach the debugger to an already-running process is also unavailable, hindering scenarios such as writing Windows services and re-attaching a debugger under ASP.NET when errors under the original debugging session cause breakpoints to be ignored.
2012–2017: Ecosystem-centric
[edit]For the 2012 release of Visual Express, Microsoft changed its distribution of editions so that each version is geared toward an overall solution type, and can contain more than one project type. (This is unlike previous Express editions, each of which was geared around a single programming language.) For example, a web solution might consist of a web application project and a couple of C# class-library projects. This change was made to reflect the wide diversity of applications available for the web and the new WinRT platform used on Windows 8 and Windows Phone 8.
Microsoft has released five Visual Studio Express 2012 products:
| Edition | Description | Desktop OS | Server OS |
|---|---|---|---|
| Visual Studio Express 2012 for Web[24][25] | Allows development of web applications. Includes integrated features for deploying to Microsoft's Windows Azure cloud computing platform. | ||
| Visual Studio Express 2012 for Windows 8[26][27] | Allows development of Metro-style applications for Windows Store in C#, VB.NET, C++ and JavaScript. Note: This edition runs only on Windows 8. | Windows 8 | N/a |
| Visual Studio Express 2012 for Windows Desktop[28][29] | Allows development of conventional Windows desktop applications in C#, VB.NET and C++, targeting Windows client technologies such as Windows Presentation Foundation (WPF), Windows Forms, and the Win32 API. Unlike previous Express editions, it has built-in support for compiling 64-bit applications through IDE. Update 1 adds support for Windows XP in C++ applications. | ||
| Visual Studio Team Foundation Server Express 2012[30] | Provides source control, work-item tracking, application lifecycle management and build automation for teams of up to five developers. | ||
| Visual Studio Express 2012 for Windows Phone[31] | Consists of the Windows Phone 8 SDK that enables developing applications for Windows Phone 7.5 and Windows Phone 8 and testing them on an emulator. Supports C++, .NET Framework and DirectX. As part of its .NET Framework support, it can integrate with Microsoft Expression Blend. | Windows 8 (x64 only) | N/a |
In October 2013, Microsoft released four new versions of its Visual Studio Express products. Like the 2012 Express edition, they are geared toward an overall solution type that may mix different types of projects. However, different IDEs are still offered for different destination platforms. They are:[32][33]
- Visual Studio Express 2013 for Web[34]
- Visual Studio Express 2013 for Windows:[34] Note: Works on Windows 8.1 only (x86 and x64).
- Visual Studio Express 2013 for Windows Desktop[34]
- Visual Studio Team Foundation Server Express 2013[34]
Note that Visual Studio Express for Windows Phone was not released in the set of 2013 products, but Visual Studio Express for Windows Phone is now merged with Visual Studio Express for Windows 2013.2.[35] With this new release, Windows 8.1 x86 is now supported for Windows Phone 8.1 development, but not for Windows Phone 8.0 development or the Windows Phone Emulator, the latter of which also requires a processor that supports Client Hyper-V and Second Level Address Translation (SLAT).
The Visual Studio Express 2015 editions are:
- Express for Desktop – for creating desktop Windows programs[36]
- Express for Web - for creating responsive websites, web APIs, or "real-time online experiences"[36]
- Express for Windows – core tools for creating Universal Windows Platform apps. Requires Windows 10.[36]
- Team Foundation Server 2015 Express – platform for source code control, for project management, and for team collaboration[36][37]
Microsoft terminated the Visual Studio Express lineage with the release of Visual Studio Express 2017 for Windows Desktop. This last release has no siblings specialized in Web or UWP projects. Developers interested a free solution for those projects were instead directed towards Visual Studio Community Edition or Visual Studio Code.[1]
References
[edit]- ^ a b "Visual Studio Express". VisualStudio.com. Microsoft. Retrieved December 2, 2021.
- ^ "Visual Studio build numbers and release dates". Visual Studio documentation. Microsoft. Retrieved December 2, 2021 – via Microsoft Docs.
- ^ a b "Registration FAQ". microsoft.com. Microsoft. Archived from the original on December 5, 2007.
- ^ "Visual Studio Community 2013 Announcement". VisualStudio.com. Microsoft. November 12, 2014. Archived from the original on November 13, 2014.
- ^ "Support". microsoft.com. Archived from the original on December 5, 2007.
- ^ "Visual Basic 2005 Editions". Microsoft Corporation. Retrieved July 19, 2007.
- ^ "Visual Basic 2008 Editions". Microsoft Corporation. Retrieved April 30, 2009.
- ^ "Visual Studio 2005 Express Developer Center - Frequently Asked Questions (FAQ) - questions 23 to 35, especially question 28". Archived from the original on April 6, 2008. Retrieved December 6, 2011.
- ^ "Which features are missing from Visual Web Developer Express: Mikhail Arkhipov's blog". Blogs.msdn.com. Retrieved June 28, 2009.
- ^ Scott Guthrie. "Scott Guthrie's post on VS2008/.NET Framework 3.5 SP1 Beta (bottom of page)". Aspalliance.com. Retrieved June 28, 2009.
- ^ Visual C++ Editions (Visual Studio 2010)
- ^ Visual C++ Editions (Visual Studio 2008)
- ^ "Windows Driver Kit (WDK) Version 7.1.0 Release Notes". Microsoft. February 26, 2010. Retrieved April 27, 2013.
- ^ "Visual C++ Editions". Microsoft Corporation. Retrieved September 29, 2007.
- ^ "Memory Windows". Microsoft Corporation. Retrieved September 27, 2011.
- ^ "Microsoft Visual Studio 2010 Debugger". Retrieved September 27, 2011.
- ^ "Visual Studio Hints". Williams, Kenneth A. Retrieved September 27, 2011.
- ^ "Source SDK wiki: Compiler Choices". Retrieved August 12, 2009.
- ^ "Visual C# at C# Online.NET (CSharp-Online.NET)". Csharp-online.net wiki. Retrieved February 9, 2010.
- ^ "C# C Sharp and Tutorials on C# Friends.com". www.csharpfriends.com/. Archived from the original on February 6, 2010. Retrieved February 9, 2010.
- ^ "XNA Developer Center". Microsoft. Retrieved February 9, 2010.
- ^ "Technologies site about MSDN". MSDNER. Retrieved October 21, 2007.
- ^ "Aaron Stebner's WebLog". Microsoft Corporation. Retrieved October 20, 2004.
- ^ "Visual Studio Express 2012 for Web". Visual Studio portal. Microsoft. Retrieved November 30, 2012.
- ^ "Visual Studio Express 2012 for Web". MSDN. Microsoft. Retrieved November 30, 2012.
- ^ "Visual Studio Express 2012 for Windows 8". Visual Studio portal. Microsoft. Retrieved November 30, 2012.
- ^ "Develop Windows Store apps using Visual Studio 2012 (Windows)". MSDN. Microsoft. November 2, 2012. Retrieved November 30, 2012.
- ^ "Visual Studio Express 2012 for Windows Desktop". Visual Studio portal. Microsoft. Retrieved November 30, 2012.
- ^ "Visual Studio Express 2012 for Windows Desktop is Here". The Visual Studio Blog. Microsoft. September 12, 2012. Retrieved November 30, 2012.
- ^ "Visual Studio Team Foundation Server Express 2012". Visual Studio portal. Microsoft. Retrieved November 30, 2012.
- ^ "Visual Studio Express 2012 for Windows Phone". Visual Studio portal. Microsoft. Retrieved November 30, 2012.
- ^ "Visual Studio 2013". Retrieved January 15, 2014.
- ^ "What's New in Visual Studio 2013". Retrieved January 15, 2014.
- ^ a b c d "Download Overview". Visual Studio. Retrieved January 31, 2014.
- ^ "Microsoft Developer".
- ^ a b c d "Visual Studio Express". Archived from the original on August 27, 2016. Retrieved August 29, 2016.
- ^ "Overview of Visual Studio 2015 Products". Microsoft. Archived from the original on August 1, 2016. Retrieved August 29, 2016.
External links
[edit]Microsoft Visual Studio Express
View on GrokipediaOverview
Purpose and Development
Microsoft developed Visual Studio Express editions as a set of free, lightweight integrated development environments (IDEs) targeted at students, hobbyists, enthusiasts, and entry-level developers to lower barriers to entry for .NET Framework and Windows application development. Announced in June 2004 as part of the Visual Studio 2005 product family, these editions were designed to provide approachable tools with built-in tutorials, samples, and simplified interfaces to enable nonprofessional users to build dynamic applications, websites, and databases without the complexity of full-scale enterprise software.[6] The development timeline for Visual Studio Express aligned closely with Visual Studio 2005 (codenamed Whidbey), beginning with beta releases in mid-2004 and incorporating internal Microsoft decisions to create streamlined variants by removing advanced features such as team collaboration tools, third-party add-in support, and certain debugging capabilities from the professional editions. This stripping down resulted in smaller download sizes and easier setup, emphasizing core functionalities like IntelliSense, a visual debugger, and project templates to facilitate rapid prototyping and learning. The goal was to offer a low-overhead alternative that encouraged experimentation while maintaining compatibility with the .NET ecosystem.[7] All Visual Studio 2005 Express editions—including Visual Basic, Visual C#, Visual C++, Visual J#, and Visual Web Developer—were officially released on November 7, 2005, coinciding with the general availability of Visual Studio 2005. Initially priced at $49 per edition with promotional no-cost downloads, in April 2006 Microsoft announced they would remain free permanently to maximize accessibility.[8][9] A key motivation behind the Express editions was to promote adoption of Visual Basic .NET, C#, and C++ among emerging developers, particularly in response to growing competition from free open-source IDEs. By providing no-cost entry points, Microsoft sought to expand its developer community and counter the appeal of cross-platform alternatives in the hobbyist and educational markets.[10]Key Features and Limitations
Microsoft Visual Studio Express editions provided a suite of core development tools designed for entry-level and hobbyist programmers, including an integrated debugger for stepping through code, setting breakpoints, and inspecting variables during execution.[11] These editions also featured IntelliSense for real-time code completion and suggestions, project templates to accelerate application setup for Windows-based projects, and basic build tools to compile and link code into executables.[12] Such functionalities enabled users to develop standalone Windows applications and web projects without requiring the full Visual Studio suite. Despite these capabilities, Express editions imposed deliberate restrictions to differentiate them from professional versions, notably lacking support for third-party plugins or extensions, which prevented customization through add-ins like advanced refactoring tools or third-party integrations.[11] Project types were limited to basic scenarios, excluding enterprise-scale features such as advanced integrations and specialized project types, thereby restricting scalability for large-team or complex deployments.[11] Additionally, there was no integration with Team Foundation Server for version control, work item tracking, or collaborative features, and advanced diagnostics like code profiling were absent.[11] The Express editions were optimized for lighter resource usage, with reduced installation footprints and streamlined interfaces suitable for lower-end hardware, making them accessible for students and enthusiasts on modest systems.[12] Under Microsoft's licensing terms, these editions were available free of charge on a perpetual basis, permitting both personal and commercial development, though built applications required separate licenses for redistributing certain runtimes, such as the Microsoft C++ runtime, without which deployment was restricted.[13] Language-specific variations, such as enhanced drag-and-drop UI tools in Visual Basic Express, built upon these shared foundations without altering the core constraints.[12]Early Editions (2005–2010)
Release History
Microsoft Visual Studio Express editions debuted with the Visual Studio 2005 release on November 7, 2005, integrating support for the .NET Framework 2.0 and made available as free downloads via the Microsoft Download Center. These initial editions—Visual Basic, Visual C#, Visual C++, Visual J# (discontinued after 2005), and Visual Web Developer—were designed for single-language development and targeted hobbyists, students, and entry-level professionals.[14] The subsequent iteration, Visual Studio 2008 Express, launched on November 19, 2007, alongside the full Visual Studio 2008 suite and incorporating .NET Framework 3.5 for enhanced web and desktop application capabilities. Service Pack 1 for these editions followed on August 11, 2008, delivering bug fixes, performance optimizations, and compatibility enhancements.[15][16][17] Visual Studio 2010 Express arrived on April 12, 2010, synchronized with the broader Visual Studio 2010 rollout and featuring integration with .NET Framework 4.0 to support modern multi-targeting and improved IntelliSense functionality. By early 2007, cumulative downloads of the Express editions had exceeded 10 million, underscoring their widespread adoption for accessible development tools.[18][19][20] Throughout the 2005–2010 period, minor updates focused on security vulnerabilities, such as patches for XML editor issues in 2008 SP1, and compatibility tweaks to align with evolving operating systems like Windows Vista and Windows 7 (via post-2009 updates). These service packs and hotfixes ensured sustained usability without introducing major feature overhauls.[21]Language-Centric Design
Microsoft Visual Studio Express editions from 2005 to 2010 adopted a language-centric design philosophy, organizing the tools into separate integrated development environments (IDEs) each dedicated to a single programming language or focus area. This separation allowed for streamlined, beginner-friendly experiences, such as Visual Basic Express optimized for rapid prototyping of Windows forms applications through intuitive visual tools, and Visual C# Express geared toward building object-oriented .NET applications with strong typing and modern syntax support. By isolating features to one language per edition, Microsoft reduced the cognitive load on novices, enthusiasts, students, and hobbyists, enabling them to master core concepts without navigating a broader, potentially overwhelming multi-language interface.[12] Toolset customization was a key aspect of this design, with each edition incorporating language-specific compilers, debuggers, and designers tailored to the target workflow. For instance, Visual Basic Express included a prominent drag-and-drop form builder for assembling user interfaces, complemented by IntelliSense for code completion and a simplified project explorer focused on VB.NET syntax and .NET Framework integration. Similarly, Visual C++ Express provided native C++ compilers and linkers optimized for performance-critical applications, while omitting advanced multi-language project management features found in full Visual Studio editions. This customization ensured that users received a cohesive set of tools aligned with the strengths of their chosen language, promoting efficient entry-level development.[12] Interoperability across editions was inherently limited due to their language-specific architectures, preventing direct project loading or solution sharing between, say, a Visual Basic project and a Visual C# one; instead, developers often resorted to manual file exports, such as copying source code or compiled assemblies, to integrate components across languages. While all editions shared the underlying .NET Framework for runtime compatibility where applicable, the IDEs lacked unified project formats or cross-edition solution support, reflecting the intentional focus on single-language simplicity over ecosystem-wide collaboration.[22] This language-centric approach stemmed from Microsoft's strategic intent to individually promote .NET Framework languages among beginners and in educational environments, targeting users who might otherwise gravitate toward free tools for Java or established C++ compilers. By offering accessible, no-cost editions honed for specific languages, Microsoft aimed to lower barriers to .NET adoption, fostering a new generation of developers familiar with its ecosystem amid competition from cross-platform alternatives dominant in academic and hobbyist circles.[12][23]Visual Basic Express Edition
Visual Basic Express Edition served as a dedicated integrated development environment (IDE) for Visual Basic .NET, enabling developers to build applications using the Visual Basic programming language within the .NET Framework. Released as part of the initial Visual Studio Express lineup in 2005, it provided a streamlined interface tailored for rapid prototyping and learning, with full access to the .NET Class Library adapted to Visual Basic's syntax, such as keyword-based constructs likeDim for variable declaration and Handles for event wiring.[7]
At its core, the edition featured the Windows Forms designer, which allowed drag-and-drop placement of controls like buttons and text boxes onto forms, with snap lines for precise alignment and visual inheritance for reusable UI components. It supported event-driven programming through intuitive event handlers, where developers could double-click controls to generate code stubs for events like button clicks, fostering a declarative style that abstracted underlying delegate mechanisms. Integration with the .NET Class Library extended this to VB-specific syntax for tasks like file I/O via the My.Computer namespace, simplifying common operations without requiring deep object-oriented knowledge. These tools, combined with IntelliSense for code completion and a local debugger for step-through execution, made it suitable for iterative development cycles.[7]
The edition targeted desktop applications, including console-based utilities for command-line tasks and graphical user interfaces (GUIs) built with Windows Forms for everyday tools like inventory trackers or calculators. It was also used for simple games, such as turn-based board games leveraging timers and event loops, and educational projects that demonstrated concepts like data binding to in-memory collections. Examples include creating a basic DVD collection manager using console output for listings or a GUI-based weather station simulator pulling from static data sources, emphasizing quick iteration over complex enterprise logic.[7]
Version evolutions aligned with .NET Framework updates, starting with the 2005 release focused on migrating from Visual Basic 6.0 (VB6) via the Visual Basic Upgrade Wizard, which converted legacy projects to .NET 2.0 while preserving event-driven structures and forms, though requiring manual fixes for unsupported features like Variant types. The 2008 edition introduced preview support for Language Integrated Query (LINQ), allowing SQL-like queries on objects, XML, and databases directly in Visual Basic code, alongside enhancements like the "My" namespace for streamlined file and registry access. By the 2010 edition, dynamic typing enhancements via integration with the Dynamic Language Runtime (DLR) enabled late binding to COM objects and scripts like IronPython, with features such as implicit line continuation and auto-implemented properties reducing boilerplate for prototyping.[24][25][26]
It gained popularity among beginners transitioning from classic VB6, drawn to its familiar syntax and rapid application development (RAD) emphasis through visual designers and pre-built templates like Windows Application and Console Application, with official tutorials highlighting drag-and-drop workflows for quick results. Like other Express editions, it lacked plugin support, limiting extensibility to built-in tools.[7]
