|
What new tools can be found in Visual Studio 2010?
Edit:
Visual Studio 2010 now has UML integration The UI is being Refreshed using WPF
Started by Alexandre Brisebois on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
VS 2010 also supports UML class, sequence, component, use case, and activity.
Visual Studio 2010 Ultimate includes code diagrams from code.
There seems to be some kind of preview available, too .
|
|
When creating a Sharepoint 2010 project in VB.NET and wanting to deploy an additional referenced assembly you cannot add a new project output assembly to the package.
To replicate the issue:
Open Sharepoint 2010 project in Visual Studio 2010 Open "package...
Started by MrHinsh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This has been acknowledged by MS as a bug in the current Visual Studio 2010 Beta: http.
|
|
This is really a question for the 7400 people (!) at the SharePoint Conference 2009. Of all the new features and improvements in SharePoint 2010, which one (or area or feature set) do you think will have the biggest impact on the world of SharePoint development...
Started by bill on
, 9 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I haven't had a chance to do anything with it yet, but the new BDC (Business Data Catalog), the BCS the new service application infrastructure which gets rid of SSP's
Development support on Win 7 to the new Feature Versioning and....
|
Ask your Facebook Friends
|
I'm trying to make a new ASP.NET MVC2 web site project, in Visual Studio 2010 Beta 2.
When I try, there is no ASP.NET MVC2 Web Application option. :(
Check this out...
Hmm :( I tried reinstalling B2 (option I chose -> REPAIR).
And it's still not there...
Started by Pure.Krome on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Best bet is to wait.
ASP.NET MVC2 and Visual Studio 2010 Beta 2 are not compatible .
I haven't installed Visual Studo 2010, but what happens if you select .NET 3.5? Sorry if stating the obvious.
|
|
In Delphi 2010 a new Find bar has been added beneath the source editor. Though I sounds like a good idea I find it prettry anoying when F3 should be pressed multiple times for finding next matches. It works from time to time for me.
How I can switch it...
Started by Gad D Lord on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I have.
Of the IDE as your editor, and use command-line compilation to compile your code using Delphi 2010.
|
|
Yesterday I stumbled over the information that Crystal Reports will no longer be included in Visual Studio 2010. Instead – it will be provided as a free download, but with a separate installation and a separate release date. According to the linked information...
Started by Dirk on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Can I use VS 2010 with the older 2008 version of CR?
Why not it you have the correct dlls then I'm sure your code should compile anyway.Only thing is that the new CR will have new version dlls to consider, one how far out of cycle....
|
|
I am thinking of creating a product based on the Visual Studio Shell (primarily isolated mode). Since Visual Studio 2010 will most likely be RTM before my product, does it make sense to start with VS2010 as a base rather than VS2008?
Has anyone looked...
Started by Nathan Voxland on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
However, a large amount of the extensability still depends on the old VSIP/COM which remain unchanged... .
If you extend the editor on 2008, it is likely you will have to make quite a few changes to get stuff working in 2010.
And WPF in 2010.
|
|
Possible Duplicate:
What's the compelling reason to upgrade to Visual Studio 2010 from VS2008?
Another Visual Studio is around the corner. I'm curious, what's in there that you've read about and/or found and/or tried out that you really consider worth...
Answer Snippets (Read the full thread at stackoverflow):
This allows the code execution....
Hurray for Historical Debugger !
Unlike the current debugger, that records only the currently-active stack, the historical debugger records all events like prior function calls, method parameters, events, exceptions etc .
|
|
2010 Happy New Years! Top 10 moments of 2009 and 2010 new years resolution?
Happy New Years PerC members!
I hope 2009 was a great year for you and I'm wishing you a better one for 2010.
Top 10 of 2009...
1.) Barack Obama and his historic inauguration....
Started by Happy on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at personalitycafe):
But hopefully the new year will bring the courage to tell my mom!
As cbelle wrote, I'd been unable to afford a new one....
HAPPY NEW YEAR of friends.
Happy New Years! Alice in Wonderland , Grey and SoSaysSunny thanked this post.
|
|
TRTTIProperty.SetValue( ) takes an TValue instance, but if the provided TValue instance is based on a different type then the property, things blow up.
E.g.
TMyObject = class published property StringValue: string read FStringValue write FStringValue;...
Started by Vegar on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
TValue.Cast doesn't work because it has the same semantic that implicit type... .
You can only read the datatype that "you" put into it .
Can't try it right now, but I would have written:
value := '1000'; prop.SetValue(obj, value);
TValue is not a Variant .
|