Visual Studio Class Designer announcements
-
Link
This forum has been locked; it will still be available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio Visualization & Modeling Tools forum.
-
Link
Jason Zander wants you to tell MS directly:
"It's been just over 6 months since we launched Visual Studio 2010 in April. I hope you've been busy digging in and taking VS out for a spin. Your feedback was invaluable to us as we were building VS - thank you! It's a great time for us to hear what you think so far. We are especially interested in hearing about your experience with regards to performance, reliability, and quality. The more details you share with us in this survey, the better we can understand your experience and apply what we learn into future versions."
-
Link
This forum is for .NET-based class diagrams. In Visual Studio 2010 Ultimate with the Visualization and Modeling Feature Pack installed, you can create UML class diagrams from code. For more information, see How to: Create UML Class Diagrams from Code.
Please post questions about UML class diagrams in the Visual Studio 2010 Visualization & Modeling Tools forum. Thanks!
Visual Studio Code Analysis and Code Metrics announcements
-
Link
This forum has been locked; it will still be available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio Debugger forum.
-
Link
Version 10.0 of FxCop is the version that ships with Visual Studio 2010 Premium. FxCop 10.0 is part of Version 7.1 of the Microsoft Windows SDK for Windows 7 and .NET Framework 4.
Instructions
- Download the Microsoft Windows SDK for Windows 7 and .NET Framework 4 Version 7.1
- Using elevated privileges execute FxCopSetup.exe from the %ProgramFiles%\Microsoft SDKs\Windows\v7.1\Bin\FXCop folder.
-
Link
Please see our blog for a description of the new Code Analysis functionality available in Visual Studio 2010: http://blogs.msdn.com/codeanalysis/archive/2010/03/22/what-s-new-in-code-analysis-for-visual-studio-2010.aspx
-
Link
Following is a collection of Frequently Asked Questions (FAQ) regarding PreFAST, FxCop, Managed Code Analysis and Code Metrics.
Visual Studio 2010 Rule Sets
Question: How do I ensure that the same code analysis rule set is used for all the projects developed by my team(s)?
Answer: See JB Browns blog post on this topic.
Rule Behavior
Question: Why does FxCop generate violations against itself?
Answer: Answered on the FxCop blog.
Question: Why do some sources recommend extending ApplicationException while FxCop does not?
Answer: Answered on the FxCop blog.
Question: Why does FxCop ignore my in-code (SuppressMessageAttribute) suppressions?
Answer: Answered on the FxCop blog.
Question: Why does DoNotExposeGenericLists recommend that I expose Collection<T> instead of List<T>?
Answer: Answered on the FxCop blog.
Question: How do I indicate to DoNotDeclareReadOnlyMutableReferenceTypes that a type is immutable?
Answer: Answered on the FxCop blog.
Custom Rule Development
Question: How do I integrate my custom FxCop rules into Visual Studio 2010?
Answer: Answered on the FxCop blog.
Question: Where is the official FxCop custom rules SDK?
Answer: There is currently no official custom rules SDK developed by Microsoft. The primary reason is that we are currently rewriting key components of the FxCop metadata reader and data flow analysis engine. This work guarantees that rules written today will need to be modified or entirely re-written in the future. Rules developers who have been working in FxCop for the past few years can attest to the fact that every release has involved some churn in the custom rules API. Each release readme contains detailed information about porting existing rules to the latest architecture.
As soon as the FxCop metadata and other relevant API stabilize sufficiently, we will develop an official FxCop custom rules SDK with samples demonstrating common patterns written in several languages. Until then, there are several resources available to custom rules developers:
· This forum. Post your rules development questions here.
· Rules samples uploaded to the MSDN Code Gallery. Search for 'FxCop'.
· Rules samples developed externally. Search the web for 'fxcop' and 'rules'
· Visit the custom rules category on the FxCop blog
Question: How do I integrate custom rules with Visual Studio?
Answer: Answered on the FxCop blog.
Question: How do I access the locals for a method?
Answer: Answered on the FxCop blog.
Visual Studio Database Development Tools (Formerly "Database Edition Forum") announcements
-
Link
Microsoft SQL Server Data Tools ...
...provides an integrated environment for database developers to carry out all their database design work for any SQL Server platform (both on and off premise) within Visual Studio. Database developers can use the SQL Server Object Explorer in VS to easily create or edit database objects and data, or execute queries.
Get it
Beginner's Guide
Learn more
ForumDevelopers will also appreciate the familiar VS tools we bring to database development, specifically; code navigation, IntelliSense, language support that parallels what is available for C# and VB, platform-specific validation, debugging and declarative editing in the TSQL Editor, as well as a visual Table Designer for both database projects and online database instances.
Visual Studio Editor in the Visual Studio 2010 and .NET Framework 4.0 CTP announcements
-
Link
Hi,
my name is Selma Ikiz and I am a PM for the New Code Editor in Visual Studio.
We have devised a set of walkthroughs for you in this Visual Studio 10 release. Please use the walkthroughs as a hand-held guide to use this release. Given that this is the first release of Code Editor in Visual Studio, we are excited to hear your feedback.
You can use the Connect website to report bugs.
This forum will cover the Code Editor Walkthroughs:
How to Use a Shell Command to Add a Comment Adornment in the Visual Studio 2010 Editor
You can implement features in the Visual Studio 2010 editor from a typical VSPackage. This walkthrough shows how to add a comment adornment to a text view in the Visual Studio 2010 editor by invoking a Visual Studio shell command.
How to Add Syntax Coloring in the Visual Studio 2010 Editor
You can add many different visual effects to the Visual Studio 2010 editor by creating Managed Extensions Framework (MEF) components. This walkthrough shows how to add syntax coloring.
How to Highlight Text in the Visual Studio 2010 Editor
You can add many different visual effects to the Visual Studio 2010 editor by creating Managed Extensibility Framework (MEF) components. This walkthrough shows how to highlight every occurrence of a string in a text file at the same time. For example, if a word occurs more than one time in a text file, and you position the cursor in one occurrence, every occurrence is highlighted.
How to Provide IntelliSense in the Visual Studio 2010 Editor
You can implement IntelliSense in the Visual Studio 2010 editor by creating a Managed Extensibility Framework (MEF) component.
This walkthrough shows how to implement two IntelliSense controllers, one for method signature descriptions and one for statement completion. IntelliSense controllers are responsible for listening to the events that trigger completion, displaying the appropriate list, and removing the display when it is committed (that is, when a selection has been made) or dismissed. This walkthrough also shows how to implement IntelliSense controller providers, which create the IntelliSense controllers for individual text views.
When you run the sample code, pressing CTRL+J or "." shows the list of methods; you can dismiss the list by pressing ESC. Pressing CTRL+SHIFT+SPACEBAR or "(" shows the list of parameters; you can dismiss the list by pressing ESC. The displayed lists of methods and parameters are static lists that are defined in the Helpers class.
How to Adapt to the Visual Studio 2010 Editor
The Visual Studio 2010 editor offers many features that you can use from your existing code components. These instructions show how to consume editor services directly from a Managed Extensibility Framework (MEF) component or a non-MEF component, for example a VSPackage. It also shows how to use adapters, or shims, to get the services of the Visual Studio 2010 editor in both managed and unmanaged code.
If you have not downloaded or would like more information about the CTP, please visit http://go.microsoft.com/fwlink/?LinkId=129231.
You can find the walkthroughs on the VPC disk: C:\users\Public\documents\CTPWalkthroughs\Visual Studio.Thanks!
Selma Ikiz
Code Editor PM
Visual Studio Gallery Feedback announcements
-
Link
This forum has been locked; it will still be available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio Extensibility forum.
Visual Studio Guidance Automation Toolkit announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio General Questions forum.
-
Link
This update to the Guidance Automation Extensions - February 2008 Release addresses the following issues:
- registering and using guidance packages with the Visual Studio 2008 SP1 Experimental hive;
- performance issues when using long names of operations or messages.
Visual Studio Lab Management announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Testing with Visual Studio Test Manager (MTM) forum.
Visual Studio LightSwitch - General (Beta) announcements
-
Link
Visual Studio LightSwitch has released! Download the release version and check out our team blog post for more resources and install notes:
Visual Studio LightSwitch 2011 RTM is Here!
This BETA forum is now closed. Please ask all your LightSwitch questions in the RTM forum here:
http://social.msdn.microsoft.com/Forums/en-US/lightswitch/threads
Thanks to all of you that downloaded the beta and provided feedback and help here in this forum. We appreciate all your hard work! Now please continue to support the growing LightSwitch community in our new forum.
Enjoy!
-
Link
Hello LightSwitch developers!
We've got a lot of new content and a fresh look for the LightSwitch Developer Center on MSDN (just click the "Home" tab above). Check it out! Whether you are just beginning or have been using LightSwitch for a while, we've got something for you.
We've also done a major overhaul to the LightSwitch Developer Learning Center in order to organize learning topics, blog articles, tips & tricks, and documentation better and allows us to easily roll out more training content each week. You can access training, samples, How Do I Videos, articles and more here.
We'll also be updating the Training Kit (that you can also access from the Learning Center) on Thursday for the public release.
Also check out our team blogs and bloggers for more information on LightSwitch. We're in the process of updating all our Beta 1 blog posts to Beta 2 so keep checking back.
Also check out the Dev Center Commuity page for more from the LightSwitch community.
Have fun!
-
Link
We are extremely happy to announce the release of Microsoft® Visual Studio® LightSwitch™ Beta 2! MSDN subscribers can access LightSwitch Beta 2 today and public availability will be Thursday, March 17th. Please see Jason Zander’s post that walks through some of the new features.
- MSDN Subscribers download LightSwitch Beta 2 now!
- The general public can download Beta 2 on Thursday at 10AM PST here
Read What’s New in Beta 2 for information on new capabilities in this release. We’d also like to announce that Beta 2 comes with a “Go Live” license which means you can now start using Visual Studio LightSwitch for production projects!
We’ve also done some major updates to the LightSwitch Developer Center with How Do I videos based on Beta 2 as well as a new and improved Learning Center and Beta 2 samples to get you up to speed fast, whether you’re a beginner or advanced developer. We’ll be rolling out more in-depth content and training in the coming weeks so keep checking back.
INSTALLATION NOTES: Visual Studio 2010 Express, Professional, Premium, Test Professional or Ultimate users must install Visual Studio 2010 SP1 before installing Visual Studio LightSwitch Beta 2. Visual Studio LightSwitch Beta 1 users should uninstall Beta 1 before installing Beta 2. Also see the Beta 2 readme for late breaking issues. These are known incompatible releases with Visual Studio LightSwitch Beta 2 (see links for details on compatibility and workarounds):
- Visual Studio Async CTP - known compatibility details(see *Async CTP Issues with VS2010 SP1* announcement)
- Windows SDK 7.1 - known compatibility details
- Help Viewer Power Tool – known compatibility details
PROJECT UPGRADE NOTES: Due to the many improvements in Beta 2, projects created in Beta 1 cannot be opened or upgraded. You will need to recreate your projects and copy over any user code that you have added. You can get to the user code files by switching to File View in the Solution Explorer. Please note that some APIs have changed so you may need to update some of your code appropriately. At this point we do not plan to introduce breaking changes post-Beta 2 that will cause you to need to recreate your Beta 2 projects.
We want to hear from you! Please visit the LightSwitch Forums to ask questions and interact with the team and community. Have you found a bug? Please report them on Microsoft Connect.
Have fun building business applications with Visual Studio LightSwitch!
Visual Studio Performance Tools (Profiler) announcements
-
Link
This forum has been locked; it will still be available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio Debugger forum.
Visual Studio Source Control and SourceSafe announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Team Foundation Server - Version Control forum.
Visual Studio Team System - Testing announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Test Tools in Visual Studio 2010 and 2012 forum.
Visual Studio UI Automation Testing (includes Coded UI tests) announcements
-
Link
This forum has been locked; it will still be available for review in the Archived Forums folder. Any future posts on this topic should be put in the Test Tools in Visual Studio 2010 and 2012 forum.
-
Link
Coded UI Tests help automate browser based applications built on Internet Explorer. We are now enabling cross-browser testing of such applications. Users will be able to perform functional testing of web applications across IE/Firefox/Chrome. One can use IE to record tests and validate control properties using Coded UI Test Builder. Users also have an option to hand code cross browser tests. If user needs to playback on IE, she can click on Run All in Test Explorer which plays back the recording using Coded UI inbuilt IE Plugin. On the other hand, if the user needs to playback on non-IE browser, she can set BrowserWindow.CurrentBrowser as “firefox” or “chrome” in the test depending on which browser she wants to test before running from the test explorer. In this case, Coded UI Engine communicates with Selenium Web Driver to execute the playback.
Hope you like this feature. Feel free to drop your feedback here
System Requirements:
- Operating System: Windows 8 X86 Client/Windows 8 X64/Win7 X64/Win7 X86/Win2k8 R2 SP1
- IE version - IE9/ classic IE10
- Firefox version - 15+
- Chrome version - 21+
- Visual Studio Ultimate - VS 2012 RTM + VS 2012 Update 1 CTP
- Selenium NET Bindings and the Selenium ChromeDriver made available to you through an installer on Visual Studio Gallery. Refer to the file attachment "CUIT Cross Browser Testing Acquisition" for more details
Features:
The following features are available across the various web browsers:
- Recording support for actions and validation on supported IE browsers
- Hand-coding scenarios support for such things as control properties, search, and playback waiters.
- Support for popups and dialog
- Ability to execute basic JavaScript with no return type
- Search resilience (via smart match) and performance improvements
Scenario Videos:
Record on IE and Playback everywhere
Author cross browser tests with Coded UI Test Builder
Author cross browser tests using plain hand coding without UI Map
Run cross browser tests sequentially on multiple browsers
Troubleshoot cross browser test failures
Known Limitations
- No support for Safari browser
- Browser launch needs to be part of the UITest. In case you have a browser already open and you want to run steps on the opened browser, playback will fail for non-IE browser windows. Hence, it is advisable to have launch too as part of the test case.
- Automating browser based actions such as Maximize/minimize/restore is not supported
Troubleshooting tips
Enable HTML Logger - follow http://msdn.microsoft.com/en-us/library/jj159363.aspx
Feedback Survey:
Please fill in the survey to register your feedback on this feature: https://s.zoomerang.com/s/CrossBrowserTesting. Your feedback will help us plan for further enhancement to the cross browser feature.
-
Link
Using the Microsoft Visual Studio UI Test plugin for Silverlight, you can create Coded UI Tests or action recordings for Silverlight applications. Action recordings let you fast forward through steps in a manual test using Microsoft Test Manager. Coded UI Tests let you record actions, generate code and play back user interface tests using Microsoft Visual Studio.
This plugin supports Silverlight 4 & 5 applications hosted in Internet Explorer versions 8, 9 & 10. It requires Microsoft Visual Studio 2012 RC.
A few members of the product team got together and built this plugin as an off-hours project. It is not an official Microsoft release. We will monitor the Qand A section on the Visual Studio Galley site for feedback and queries.
For more details and to download the plugin visit VisualStudio Gallery.
Deepak Singhal, Mathew Aniyan, Siddhartha Pandey, Tapas Sahoo, Vishnupriyan Radhamanalan.
-
Link
The purpose of Code First API Library, Scaffolding & Guidance for Coded UI Tests is to help you write more maintainable Coded UI tests for your web apps. When building Web UI Tests the way that's proposed here - you aren't going to be recording test scripts nor building UI Maps. Instead, you'll be writing Page Objects that are interacting with the elements on the page.
-
Link
You can see a list of articles related to Coded UI Test (organized into various sections) in the link below.
http://blogs.msdn.com/mathew_aniyan/pages/content-index-for-coded-ui-test.aspx
It is a great place to start your exploration of Coded UI Test feature.
Visual Studio Web Performance and Load Testing announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Test Tools in Visual Studio 2010 and 2012 forum.
Visual Studio WPF/SL Designer announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio General Questions forum.
-
Link
DEV313 | Making the Most of the Microsoft Silverlight and WPF Designer in Microsoft Visual Studio 2010Session Type: Breakout SessionTrack: Developer Tools, Languages & FrameworksSpeaker(s): Mark Wilson-Thomas, Mark BoulterLevel: 300 - AdvancedBuilding Silverlight and Windows Presentation Foundation (WPF) applications has become much more straightforward in Visual Studio 2010. Whether you’re already a seasoned WPF/Silverlight developer or the technologies are new to you, come along to this session and see a data-driven Silverlight application built up from scratch using the new designer features – we show you tips and tricks for how to leverage the new tooling to get great results with the least sweat!
- Link
-
Link
The Visual Studio WPF and Silverlight Designer Team is delighted to inform you that Visual Studio 2010 RTM is now available! Take a look at http://www.microsoft.com/visualstudio/en-us/download
What's New for WPF and Silverlight Developers in Visual Studio 2010 ?
1. The Silverlight Designer is a fully functional drag-drop designer for Silverlight 3 RTM release out of the box, and for Silverlight 4 via an add-on (for info see http://blogs.msdn.com/wpfsldesigner/archive/2010/04/15/silverlight-4-releases-silverlight-4-tools-for-visual-studio-2010-rtm-available-now.aspx)
2. The Data Sources Window works for Silverlight 3 and 4
3. The Property Browser has been reworked to be more usable – showing a better Category view and a "Set Properties" view
4. The designer now lets you load controls that have references to static resources at app scope
5. The designer shows helpful errors when things such as controls fail to load, without the need to attach a debugger to Visual Studio.
Check out these Channel 9 videos for more info:
Designing Data Driven Forms
Styling Your Forms
Looking Forward
Feedback
We hope you enjoy the new release, and are really looking forward to hearing your feedback.
You can send both positive and negative feedback and questions to us using this Forum, and we also encourage you to raise any bugs and issues you find via Connect (see this article on how to raise bugs in Cider)
Thanks!
Mark Wilson-Thomas
Program Manager, WPF & Silverlight Designer in Visual Studio
Visual Studio Online "Monaco" announcements
-
Link
The threads in this forum have been moved to the Visual Studio Online forum
-
0 Votes
compatability issue in windows 8 when installing sql server 2008 r2 rtm
when i am installing sql server 2008 r2 RTM in my local system which is having windows 8 operating system then it is showing comparability issue . Please ...Unanswered | 1 Replies | 1242 Views | Created by saran kumar reddy - Saturday, September 7, 2013 4:22 AM | Last reply by Jack-Zhai - Monday, September 9, 2013 11:37 AM -
0 Votes
need help with "Class Doesn't support Automation" error.
i am using Windows 7 OS. I tried to create a new project. Every time I am getting the error saying " class doesn't support automation". I tried with Run-regsvr32 msscript, but I got ...Unanswered | 1 Replies | 1150 Views | Created by sheetalvthite - Thursday, September 5, 2013 8:44 PM | Last reply by Jack-Zhai - Monday, September 9, 2013 8:34 AM -
0 Votes
Failed to map the path '/'.
Hi All, I received below error and I have no clue why it is breaking on Service A for Path. Other services are running fine, These services are not hosted in IIS ...Unanswered | 1 Replies | 1888 Views | Created by Vikram Barche - Thursday, September 5, 2013 6:35 AM | Last reply by Crystal Zhu - Thursday, September 5, 2013 7:54 AM -
0 Votes
cuite.dll: Unable to load the test container - i am getting this error message when i am opening .sln . How i know that i am missing build , and how to download that?
cuite.dll: Unable to load the test container - i am getting this error message when i am opening .sln . How i know that i am missing build , and how to download that? Can some ...Unanswered | 1 Replies | 1068 Views | Created by HSEPSILON1234 - Tuesday, September 3, 2013 6:02 PM | Last reply by Jack-Zhai - Thursday, September 5, 2013 7:47 AM -
74 Votes
HOW TO: FIX ERROR - "the 'microsoft.ace.oledb.12.0' provider is not registered on the local machine"
NOTE: i have found hundreds of threads on this error, yet they all seem to suggest using the 'Microsoft access database engine'. however for whatever reason (even though its made for 64-bit ...Discussion | 125 Replies | 632240 Views | Created by MaxJordan91 - Saturday, December 10, 2011 12:51 PM | Last reply by NQT VietNam - Wednesday, September 4, 2013 8:40 AM -
0 Votes
SQL Server Data Tools and missing ".net framework data provider"
I just installed SQL 2012 RTM and SSDT RTW on Win 7 x64. I already had VS 2010 SP1. I made a new database project and tried to "import database" - "new connection". On the ...Answered | 6 Replies | 11911 Views | Created by wtjones - Friday, March 16, 2012 2:30 PM | Last reply by CarlosESenna - Wednesday, September 4, 2013 12:07 AM -
3 Votes
How to ignore users in VS 11 Sql Server Database project publish
I'm not sure if this is the right forum or not... Problem I can't figure out how to ignore users in my vs 11 beta sql server db project ...Answered | 15 Replies | 6208 Views | Created by Mike Paterson - Friday, May 18, 2012 7:25 PM | Last reply by Rake0 - Thursday, August 29, 2013 12:15 AM -
3 Votes
Why is the dbo.__RefactorLog table created in the deployment script in my server project?
I'm curious to what changes to a server project could require a refactor log in the master database. I have only my logins defined in the project, and that's all that is deployed. Is it ...Unanswered | 13 Replies | 13681 Views | Created by Sub-Star - Thursday, October 28, 2010 9:23 AM | Last reply by Evgeni Emanov - Wednesday, August 28, 2013 9:21 PM -
0 Votes
VisualStudio 2010 - Schema Compare - Ignore Object Types is not working properly
Object Types tab 4. Select all objects by clicking the "Ignored object types" root node until all the object list is selected. 5. Uncheck the ...Answered | 5 Replies | 1466 Views | Created by Sharikk - Sunday, August 4, 2013 1:24 PM | Last reply by Sharikk - Wednesday, August 28, 2013 5:41 AM -
0 Votes
how to connect a css3 file to an html5 web page file.
what do I write and where do I write it to get a css3 file linked to an html5 site.master file so the css styles appear on the web page when I display it with localhost? Yes, I know about ...Unanswered | 1 Replies | 1257 Views | Created by mhh12 - Monday, August 26, 2013 5:57 PM | Last reply by Jack-Zhai - Tuesday, August 27, 2013 11:33 AM -
0 Votes
Assertion failed
When I am running a C -sharp project ( which gets successfully built) , I get the following ...Answered | 2 Replies | 1450 Views | Created by BannerjeeSujit - Thursday, August 22, 2013 9:38 AM | Last reply by BannerjeeSujit - Friday, August 23, 2013 12:38 PM -
1 Votes
Unable to make intellisense work due to failed MS SQL Compact 3.5 (problem has been in forums for 4 years, not yet resolved)
--------------------------- Microsoft Visual Studio --------------------------- An error occurred while creating or opening the C++ browsing ...Unanswered | 10 Replies | 1296 Views | Created by MCT-CTO - Wednesday, August 14, 2013 2:41 PM | Last reply by MCT-CTO - Friday, August 23, 2013 10:42 AM -
0 Votes
Playback Error - Replaying steps recorded in IE9 fails in other browsers
I am using MTM and IE9 to record my manual test. When I replay the test in IE9 again, it works perfectly. However, when I open Firefox or Chrome and try to replay that recording, it always fails. ...Answered | 3 Replies | 1173 Views | Created by roman.peshkov - Wednesday, August 21, 2013 7:20 PM | Last reply by Jack-Zhai - Friday, August 23, 2013 2:41 AM -
0 Votes
Can't we save "Data Compare" / "Schema Compare"
I just started using Database Professional and it is a cool and great addition to VStudio. Thanks for all the efforts! Coming to the actual question: Is ...Answered | 5 Replies | 6252 Views | Created by Lakshmana Kumar K - Thursday, September 21, 2006 4:06 AM | Last reply by bulldog___ - Friday, August 23, 2013 12:23 AM -
1 Votes
How do I turn off datadude background processing?
Hi, I continually see the following message in VS2010: "Verifying your model is synchronized with your source files. Your database projects will be ready ...Answered | 3 Replies | 6469 Views | Created by Jamie Thomson - Tuesday, July 20, 2010 8:43 AM | Last reply by louisila - Wednesday, August 21, 2013 6:52 PM -
0 Votes
TreeView in codedui does records all its windows
B->C->C1 here i need to click on C1 but the CodedUI records the window declarations only for A and C1 but not for B and C and due to this it failed to click on C1 which resides inside ...Unanswered | 7 Replies | 1468 Views | Created by Selvaraj Chandrasekaran - Thursday, August 1, 2013 12:40 PM | Last reply by Jack-Zhai - Wednesday, August 21, 2013 7:40 AM -
0 Votes
2 different versions form1 in Visual Studio 2008 project
I install Visual Studio 2008, update, sp1. When I run the project, the older version form1 runs. when I return to the editing mode, the newer version form1 appears. Can you help me to put the newer ...Answered | 1 Replies | 1096 Views | Created by sphchan1 - Friday, August 16, 2013 2:53 AM | Last reply by Jack-Zhai - Monday, August 19, 2013 7:36 AM -
0 Votes
Visual Studio 11 Database Diagrams
I'm evaluating the new Visual Studio 11 and created a db with a couple of tables. I've tried everything I can think of but can't get a database diagram node to show up in Server ...Answered | 10 Replies | 10389 Views | Created by DDHSolutions - Sunday, April 1, 2012 8:26 PM | Last reply by PANoone - Monday, August 19, 2013 12:02 AM -
2 Votes
NUnit to MS Unit testing Static Methods
After converting all the attributes over to MS under their reference in the project file, how do I get rid of the annoying test errors about [TestMethods] having the wrong signature and having to be ...Answered | 3 Replies | 1534 Views | Created by Joe.Mo - Tuesday, August 13, 2013 2:52 PM | Last reply by Jack-Zhai - Thursday, August 15, 2013 6:41 AM -
0 Votes
VS2012: Schema compare, update button disabled
When using the schema compare function of Visual Studio 2012, I can successfully compare and update from database (SQL Server 2012) to my database project. However, I cannot do it the other way ...Answered | 10 Replies | 3380 Views | Created by Henrik Fyhn - Tuesday, August 6, 2013 8:26 AM | Last reply by skost0426 - Wednesday, August 14, 2013 5:31 PM - Items 1 to 20 of 38671 Next ›
Visual Studio Class Designer announcements
-
Link
This forum has been locked; it will still be available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio Visualization & Modeling Tools forum.
-
Link
Jason Zander wants you to tell MS directly:
"It's been just over 6 months since we launched Visual Studio 2010 in April. I hope you've been busy digging in and taking VS out for a spin. Your feedback was invaluable to us as we were building VS - thank you! It's a great time for us to hear what you think so far. We are especially interested in hearing about your experience with regards to performance, reliability, and quality. The more details you share with us in this survey, the better we can understand your experience and apply what we learn into future versions."
-
Link
This forum is for .NET-based class diagrams. In Visual Studio 2010 Ultimate with the Visualization and Modeling Feature Pack installed, you can create UML class diagrams from code. For more information, see How to: Create UML Class Diagrams from Code.
Please post questions about UML class diagrams in the Visual Studio 2010 Visualization & Modeling Tools forum. Thanks!
Visual Studio Code Analysis and Code Metrics announcements
-
Link
This forum has been locked; it will still be available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio Debugger forum.
-
Link
Version 10.0 of FxCop is the version that ships with Visual Studio 2010 Premium. FxCop 10.0 is part of Version 7.1 of the Microsoft Windows SDK for Windows 7 and .NET Framework 4.
Instructions
- Download the Microsoft Windows SDK for Windows 7 and .NET Framework 4 Version 7.1
- Using elevated privileges execute FxCopSetup.exe from the %ProgramFiles%\Microsoft SDKs\Windows\v7.1\Bin\FXCop folder.
-
Link
Please see our blog for a description of the new Code Analysis functionality available in Visual Studio 2010: http://blogs.msdn.com/codeanalysis/archive/2010/03/22/what-s-new-in-code-analysis-for-visual-studio-2010.aspx
-
Link
Following is a collection of Frequently Asked Questions (FAQ) regarding PreFAST, FxCop, Managed Code Analysis and Code Metrics.
Visual Studio 2010 Rule Sets
Question: How do I ensure that the same code analysis rule set is used for all the projects developed by my team(s)?
Answer: See JB Browns blog post on this topic.
Rule Behavior
Question: Why does FxCop generate violations against itself?
Answer: Answered on the FxCop blog.
Question: Why do some sources recommend extending ApplicationException while FxCop does not?
Answer: Answered on the FxCop blog.
Question: Why does FxCop ignore my in-code (SuppressMessageAttribute) suppressions?
Answer: Answered on the FxCop blog.
Question: Why does DoNotExposeGenericLists recommend that I expose Collection<T> instead of List<T>?
Answer: Answered on the FxCop blog.
Question: How do I indicate to DoNotDeclareReadOnlyMutableReferenceTypes that a type is immutable?
Answer: Answered on the FxCop blog.
Custom Rule Development
Question: How do I integrate my custom FxCop rules into Visual Studio 2010?
Answer: Answered on the FxCop blog.
Question: Where is the official FxCop custom rules SDK?
Answer: There is currently no official custom rules SDK developed by Microsoft. The primary reason is that we are currently rewriting key components of the FxCop metadata reader and data flow analysis engine. This work guarantees that rules written today will need to be modified or entirely re-written in the future. Rules developers who have been working in FxCop for the past few years can attest to the fact that every release has involved some churn in the custom rules API. Each release readme contains detailed information about porting existing rules to the latest architecture.
As soon as the FxCop metadata and other relevant API stabilize sufficiently, we will develop an official FxCop custom rules SDK with samples demonstrating common patterns written in several languages. Until then, there are several resources available to custom rules developers:
· This forum. Post your rules development questions here.
· Rules samples uploaded to the MSDN Code Gallery. Search for 'FxCop'.
· Rules samples developed externally. Search the web for 'fxcop' and 'rules'
· Visit the custom rules category on the FxCop blog
Question: How do I integrate custom rules with Visual Studio?
Answer: Answered on the FxCop blog.
Question: How do I access the locals for a method?
Answer: Answered on the FxCop blog.
Visual Studio Database Development Tools (Formerly "Database Edition Forum") announcements
-
Link
Microsoft SQL Server Data Tools ...
...provides an integrated environment for database developers to carry out all their database design work for any SQL Server platform (both on and off premise) within Visual Studio. Database developers can use the SQL Server Object Explorer in VS to easily create or edit database objects and data, or execute queries.
Get it
Beginner's Guide
Learn more
ForumDevelopers will also appreciate the familiar VS tools we bring to database development, specifically; code navigation, IntelliSense, language support that parallels what is available for C# and VB, platform-specific validation, debugging and declarative editing in the TSQL Editor, as well as a visual Table Designer for both database projects and online database instances.
Visual Studio Editor in the Visual Studio 2010 and .NET Framework 4.0 CTP announcements
-
Link
Hi,
my name is Selma Ikiz and I am a PM for the New Code Editor in Visual Studio.
We have devised a set of walkthroughs for you in this Visual Studio 10 release. Please use the walkthroughs as a hand-held guide to use this release. Given that this is the first release of Code Editor in Visual Studio, we are excited to hear your feedback.
You can use the Connect website to report bugs.
This forum will cover the Code Editor Walkthroughs:
How to Use a Shell Command to Add a Comment Adornment in the Visual Studio 2010 Editor
You can implement features in the Visual Studio 2010 editor from a typical VSPackage. This walkthrough shows how to add a comment adornment to a text view in the Visual Studio 2010 editor by invoking a Visual Studio shell command.
How to Add Syntax Coloring in the Visual Studio 2010 Editor
You can add many different visual effects to the Visual Studio 2010 editor by creating Managed Extensions Framework (MEF) components. This walkthrough shows how to add syntax coloring.
How to Highlight Text in the Visual Studio 2010 Editor
You can add many different visual effects to the Visual Studio 2010 editor by creating Managed Extensibility Framework (MEF) components. This walkthrough shows how to highlight every occurrence of a string in a text file at the same time. For example, if a word occurs more than one time in a text file, and you position the cursor in one occurrence, every occurrence is highlighted.
How to Provide IntelliSense in the Visual Studio 2010 Editor
You can implement IntelliSense in the Visual Studio 2010 editor by creating a Managed Extensibility Framework (MEF) component.
This walkthrough shows how to implement two IntelliSense controllers, one for method signature descriptions and one for statement completion. IntelliSense controllers are responsible for listening to the events that trigger completion, displaying the appropriate list, and removing the display when it is committed (that is, when a selection has been made) or dismissed. This walkthrough also shows how to implement IntelliSense controller providers, which create the IntelliSense controllers for individual text views.
When you run the sample code, pressing CTRL+J or "." shows the list of methods; you can dismiss the list by pressing ESC. Pressing CTRL+SHIFT+SPACEBAR or "(" shows the list of parameters; you can dismiss the list by pressing ESC. The displayed lists of methods and parameters are static lists that are defined in the Helpers class.
How to Adapt to the Visual Studio 2010 Editor
The Visual Studio 2010 editor offers many features that you can use from your existing code components. These instructions show how to consume editor services directly from a Managed Extensibility Framework (MEF) component or a non-MEF component, for example a VSPackage. It also shows how to use adapters, or shims, to get the services of the Visual Studio 2010 editor in both managed and unmanaged code.
If you have not downloaded or would like more information about the CTP, please visit http://go.microsoft.com/fwlink/?LinkId=129231.
You can find the walkthroughs on the VPC disk: C:\users\Public\documents\CTPWalkthroughs\Visual Studio.Thanks!
Selma Ikiz
Code Editor PM
Visual Studio Gallery Feedback announcements
-
Link
This forum has been locked; it will still be available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio Extensibility forum.
Visual Studio Guidance Automation Toolkit announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio General Questions forum.
-
Link
This update to the Guidance Automation Extensions - February 2008 Release addresses the following issues:
- registering and using guidance packages with the Visual Studio 2008 SP1 Experimental hive;
- performance issues when using long names of operations or messages.
Visual Studio Lab Management announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Testing with Visual Studio Test Manager (MTM) forum.
Visual Studio LightSwitch - General (Beta) announcements
-
Link
Visual Studio LightSwitch has released! Download the release version and check out our team blog post for more resources and install notes:
Visual Studio LightSwitch 2011 RTM is Here!
This BETA forum is now closed. Please ask all your LightSwitch questions in the RTM forum here:
http://social.msdn.microsoft.com/Forums/en-US/lightswitch/threads
Thanks to all of you that downloaded the beta and provided feedback and help here in this forum. We appreciate all your hard work! Now please continue to support the growing LightSwitch community in our new forum.
Enjoy!
-
Link
Hello LightSwitch developers!
We've got a lot of new content and a fresh look for the LightSwitch Developer Center on MSDN (just click the "Home" tab above). Check it out! Whether you are just beginning or have been using LightSwitch for a while, we've got something for you.
We've also done a major overhaul to the LightSwitch Developer Learning Center in order to organize learning topics, blog articles, tips & tricks, and documentation better and allows us to easily roll out more training content each week. You can access training, samples, How Do I Videos, articles and more here.
We'll also be updating the Training Kit (that you can also access from the Learning Center) on Thursday for the public release.
Also check out our team blogs and bloggers for more information on LightSwitch. We're in the process of updating all our Beta 1 blog posts to Beta 2 so keep checking back.
Also check out the Dev Center Commuity page for more from the LightSwitch community.
Have fun!
-
Link
We are extremely happy to announce the release of Microsoft® Visual Studio® LightSwitch™ Beta 2! MSDN subscribers can access LightSwitch Beta 2 today and public availability will be Thursday, March 17th. Please see Jason Zander’s post that walks through some of the new features.
- MSDN Subscribers download LightSwitch Beta 2 now!
- The general public can download Beta 2 on Thursday at 10AM PST here
Read What’s New in Beta 2 for information on new capabilities in this release. We’d also like to announce that Beta 2 comes with a “Go Live” license which means you can now start using Visual Studio LightSwitch for production projects!
We’ve also done some major updates to the LightSwitch Developer Center with How Do I videos based on Beta 2 as well as a new and improved Learning Center and Beta 2 samples to get you up to speed fast, whether you’re a beginner or advanced developer. We’ll be rolling out more in-depth content and training in the coming weeks so keep checking back.
INSTALLATION NOTES: Visual Studio 2010 Express, Professional, Premium, Test Professional or Ultimate users must install Visual Studio 2010 SP1 before installing Visual Studio LightSwitch Beta 2. Visual Studio LightSwitch Beta 1 users should uninstall Beta 1 before installing Beta 2. Also see the Beta 2 readme for late breaking issues. These are known incompatible releases with Visual Studio LightSwitch Beta 2 (see links for details on compatibility and workarounds):
- Visual Studio Async CTP - known compatibility details(see *Async CTP Issues with VS2010 SP1* announcement)
- Windows SDK 7.1 - known compatibility details
- Help Viewer Power Tool – known compatibility details
PROJECT UPGRADE NOTES: Due to the many improvements in Beta 2, projects created in Beta 1 cannot be opened or upgraded. You will need to recreate your projects and copy over any user code that you have added. You can get to the user code files by switching to File View in the Solution Explorer. Please note that some APIs have changed so you may need to update some of your code appropriately. At this point we do not plan to introduce breaking changes post-Beta 2 that will cause you to need to recreate your Beta 2 projects.
We want to hear from you! Please visit the LightSwitch Forums to ask questions and interact with the team and community. Have you found a bug? Please report them on Microsoft Connect.
Have fun building business applications with Visual Studio LightSwitch!
Visual Studio Performance Tools (Profiler) announcements
-
Link
This forum has been locked; it will still be available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio Debugger forum.
Visual Studio Source Control and SourceSafe announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Team Foundation Server - Version Control forum.
Visual Studio Team System - Testing announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Test Tools in Visual Studio 2010 and 2012 forum.
Visual Studio UI Automation Testing (includes Coded UI tests) announcements
-
Link
This forum has been locked; it will still be available for review in the Archived Forums folder. Any future posts on this topic should be put in the Test Tools in Visual Studio 2010 and 2012 forum.
-
Link
Coded UI Tests help automate browser based applications built on Internet Explorer. We are now enabling cross-browser testing of such applications. Users will be able to perform functional testing of web applications across IE/Firefox/Chrome. One can use IE to record tests and validate control properties using Coded UI Test Builder. Users also have an option to hand code cross browser tests. If user needs to playback on IE, she can click on Run All in Test Explorer which plays back the recording using Coded UI inbuilt IE Plugin. On the other hand, if the user needs to playback on non-IE browser, she can set BrowserWindow.CurrentBrowser as “firefox” or “chrome” in the test depending on which browser she wants to test before running from the test explorer. In this case, Coded UI Engine communicates with Selenium Web Driver to execute the playback.
Hope you like this feature. Feel free to drop your feedback here
System Requirements:
- Operating System: Windows 8 X86 Client/Windows 8 X64/Win7 X64/Win7 X86/Win2k8 R2 SP1
- IE version - IE9/ classic IE10
- Firefox version - 15+
- Chrome version - 21+
- Visual Studio Ultimate - VS 2012 RTM + VS 2012 Update 1 CTP
- Selenium NET Bindings and the Selenium ChromeDriver made available to you through an installer on Visual Studio Gallery. Refer to the file attachment "CUIT Cross Browser Testing Acquisition" for more details
Features:
The following features are available across the various web browsers:
- Recording support for actions and validation on supported IE browsers
- Hand-coding scenarios support for such things as control properties, search, and playback waiters.
- Support for popups and dialog
- Ability to execute basic JavaScript with no return type
- Search resilience (via smart match) and performance improvements
Scenario Videos:
Record on IE and Playback everywhere
Author cross browser tests with Coded UI Test Builder
Author cross browser tests using plain hand coding without UI Map
Run cross browser tests sequentially on multiple browsers
Troubleshoot cross browser test failures
Known Limitations
- No support for Safari browser
- Browser launch needs to be part of the UITest. In case you have a browser already open and you want to run steps on the opened browser, playback will fail for non-IE browser windows. Hence, it is advisable to have launch too as part of the test case.
- Automating browser based actions such as Maximize/minimize/restore is not supported
Troubleshooting tips
Enable HTML Logger - follow http://msdn.microsoft.com/en-us/library/jj159363.aspx
Feedback Survey:
Please fill in the survey to register your feedback on this feature: https://s.zoomerang.com/s/CrossBrowserTesting. Your feedback will help us plan for further enhancement to the cross browser feature.
-
Link
Using the Microsoft Visual Studio UI Test plugin for Silverlight, you can create Coded UI Tests or action recordings for Silverlight applications. Action recordings let you fast forward through steps in a manual test using Microsoft Test Manager. Coded UI Tests let you record actions, generate code and play back user interface tests using Microsoft Visual Studio.
This plugin supports Silverlight 4 & 5 applications hosted in Internet Explorer versions 8, 9 & 10. It requires Microsoft Visual Studio 2012 RC.
A few members of the product team got together and built this plugin as an off-hours project. It is not an official Microsoft release. We will monitor the Qand A section on the Visual Studio Galley site for feedback and queries.
For more details and to download the plugin visit VisualStudio Gallery.
Deepak Singhal, Mathew Aniyan, Siddhartha Pandey, Tapas Sahoo, Vishnupriyan Radhamanalan.
-
Link
The purpose of Code First API Library, Scaffolding & Guidance for Coded UI Tests is to help you write more maintainable Coded UI tests for your web apps. When building Web UI Tests the way that's proposed here - you aren't going to be recording test scripts nor building UI Maps. Instead, you'll be writing Page Objects that are interacting with the elements on the page.
-
Link
You can see a list of articles related to Coded UI Test (organized into various sections) in the link below.
http://blogs.msdn.com/mathew_aniyan/pages/content-index-for-coded-ui-test.aspx
It is a great place to start your exploration of Coded UI Test feature.
Visual Studio Web Performance and Load Testing announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Test Tools in Visual Studio 2010 and 2012 forum.
Visual Studio WPF/SL Designer announcements
-
Link
This forum has been locked; it is still available for review in the Archived Forums folder. Any future posts on this topic should be put in the Visual Studio General Questions forum.
-
Link
DEV313 | Making the Most of the Microsoft Silverlight and WPF Designer in Microsoft Visual Studio 2010Session Type: Breakout SessionTrack: Developer Tools, Languages & FrameworksSpeaker(s): Mark Wilson-Thomas, Mark BoulterLevel: 300 - AdvancedBuilding Silverlight and Windows Presentation Foundation (WPF) applications has become much more straightforward in Visual Studio 2010. Whether you’re already a seasoned WPF/Silverlight developer or the technologies are new to you, come along to this session and see a data-driven Silverlight application built up from scratch using the new designer features – we show you tips and tricks for how to leverage the new tooling to get great results with the least sweat!
- Link
-
Link
The Visual Studio WPF and Silverlight Designer Team is delighted to inform you that Visual Studio 2010 RTM is now available! Take a look at http://www.microsoft.com/visualstudio/en-us/download
What's New for WPF and Silverlight Developers in Visual Studio 2010 ?
1. The Silverlight Designer is a fully functional drag-drop designer for Silverlight 3 RTM release out of the box, and for Silverlight 4 via an add-on (for info see http://blogs.msdn.com/wpfsldesigner/archive/2010/04/15/silverlight-4-releases-silverlight-4-tools-for-visual-studio-2010-rtm-available-now.aspx)
2. The Data Sources Window works for Silverlight 3 and 4
3. The Property Browser has been reworked to be more usable – showing a better Category view and a "Set Properties" view
4. The designer now lets you load controls that have references to static resources at app scope
5. The designer shows helpful errors when things such as controls fail to load, without the need to attach a debugger to Visual Studio.
Check out these Channel 9 videos for more info:
Designing Data Driven Forms
Styling Your Forms
Looking Forward
Feedback
We hope you enjoy the new release, and are really looking forward to hearing your feedback.
You can send both positive and negative feedback and questions to us using this Forum, and we also encourage you to raise any bugs and issues you find via Connect (see this article on how to raise bugs in Cider)
Thanks!
Mark Wilson-Thomas
Program Manager, WPF & Silverlight Designer in Visual Studio
Visual Studio Online "Monaco" announcements
-
Link
The threads in this forum have been moved to the Visual Studio Online forum