Visual Studio 2012 is the latest version in Microsoft's Visual Studio product line
0
votes
0answers
9 views
MVSC deletes lib and dll when building exe
I have a create a new solution in MVS with two project: an exe application and its dynamic library. For the Release configuration I made the linker create the exe, dll and lib inside the same folder.
...
0
votes
0answers
6 views
msbuild: property to control the build of non-neutral resources
I would like to be able to set a property, lets say
<SkipResourcesBuildAndCopy>$(BuildingInsideVisualStudio)<SkipResourcesBuildAndCopy>
That would then be picked up in the CoreResGen ...
0
votes
0answers
16 views
Why Visual Studio doesn't like this XML schema? (Prefix '' cannot be mapped to namespace name reserved for “xml” or “xmlns”)
FictionBook (also known as FB2) is an XML-based format of electronic books. Its schema can be found here:
http://gribuser.ru/xml/fictionbook/2.0/xsd/
However, when I downloaded this schema and ...
0
votes
1answer
35 views
Error in SQL query in Visual Studio 2012
I am trying my hand at writing something that can be used at work and am learning on my own. I've run into an issue that I cannot find a solution to, although it's very possible that I am just ...
0
votes
0answers
9 views
Creating Item Template in Visual Studio 2012 with multiple, non-nested files
I'm looking to create a new Visual Studio 2012 Item Template that generates five files, three of which are nested, one which isn't. It should look like this:
MyView1.View
MyView1.view.cs
...
0
votes
0answers
9 views
How scaffold Durandal SPA app with VS 2012
I'm starting to develop an application based on Hot Towel project template. The question is how I can scaffold Durandal?
Thanks for any suggestion!
0
votes
3answers
11 views
Team Foundation Server: Why is changeset history shared among separate projects?
I've been using TFS for a few months now and have a few separate (unrelated) projects on the web interface, and linking the associated projects in Visual Studio 2012. The anomaly I'm experiencing (at ...
2
votes
1answer
42 views
Always force Referenced DLL to update?
I'm working on a solution that produces some DLLs. Let's say Project A produces A.dll. Project B uses A.dll to perform some functions.
When Project B is ran, it checks if A.dll exists in the output ...
0
votes
1answer
6 views
HTML/Unicode characters in .resx files are not rendered correctly in HTML?
When I add these codes checkmark codes (http://www.fileformat.info/info/unicode/char/2713/index.htm)
✓
or
✓
or as someone already suggested:
✔
In my Visual ...
0
votes
0answers
18 views
Passing Multiple Values to a single Crystal Reports parameter from VB.net
I am using Visual Basic in Visual Studio 2012 with Crystal Reports for Visual Studio.
I have a parameter in a Crystal Report that can accept multiple values (for instance: Regions). How do I pass ...
0
votes
1answer
22 views
CUDA fmod - calling a __host__ function from a __global__ function is not allowed
I'm compiling a CUDA 5 project with VS2012 and I'm receiving this error:
error : calling a __host__ function("fmod<float, int> ") from a __global__ function is not allowed
The compiler is ...
0
votes
0answers
22 views
Visual Studio 2012 does not load files in a project included using wildcards
I included some files in my .csproj file using a wildcard (editing the .csproj file manually), like this:
<ItemGroup>
<Compile Include="Class1.cs" />
<Compile ...
0
votes
0answers
38 views
Visual C++: stop symbols from being exported
I'm working on a dll project and am using the following to clean up some of my exported symbol names:
#pragma comment(linker, "/EXPORT:Some_function=_Some_function@4")
where Some_function is ...
-5
votes
1answer
36 views
Error c4430 ? visual studio 2012
I am new to creating and i try to use visual studio 2012
#include
#include
main()
{
printf("MY NAME");
getch();
}
Error 1 error C4430: missing type specifier - int assumed. ...
-3
votes
0answers
82 views
What is the difference between c# 4.0 and 4.5 [closed]
I want to learn C#. I have a little experience in c/c++ . I am planning to buy a book about c# 4.5 . But, in my language, there is not any book for c# 4.5(or c# 4.5 with visual studio 2012). There is ...
0
votes
1answer
9 views
Deploying non-MVC website to IIS7 (Windows 2008) server from Visual Studio 2012
Is there a documentation or how-to on deploying non-MVC website from Visual Studio 2012?
I have seen some saying to use references (bin directory) which is all I need for Visual Studio 2012 but I ...
2
votes
0answers
18 views
DirectX SDK project - porting to VS2012
I'm porting to visual studio 2012 a solution with a project which uses some headers from the directX SDK in this path:
C:/../Microsoft DirectX SDK (June 2010)/Samples/C++/DXUT11/Core
the problem ...
0
votes
1answer
30 views
Add dll reference, permission?
I'm new to asp.net and I am trying to use the framework SolidConverter. I did the installation and reference, however when running the application gives the following error
Failed to load C: \ Users ...
0
votes
0answers
6 views
MFC in Visual Studio 2012 - afx.h file not found
I created an new static library project in VS 2012, with option MFC selected.
It created few files in the project, stdafx.h, targetver.h, stdafx.cpp. However in stdafx.h there are includes for afx.h, ...
0
votes
1answer
9 views
Creating a Visual Studio project template that references external libraries
We're attempting to create a new project template that has references to external libraries like StructureMap and Entity Framework. However, when we create a project from the template the libraries ...
1
vote
0answers
12 views
Selenium Frameworks and Remote Testing, recommended framework?
I installed and played around with Selenium WebDriver on Visual Studio 2012 (C#) last week and was very impressed by how easy it was to automate browser testing. I now want to find out if I can expand ...
1
vote
1answer
33 views
How to use lazy with instance variable
given the code below
public class classA
{
int someid ;
public classA( int x ) { someid = x; }
Lazy<myType> lazymt1 = new Lazy<myType>(
return ...
0
votes
0answers
3 views
Visual Studio 2012 Command Line Building - Detecting Build Failures
I'm setting up a build server for a Visual Studio 2012 project and I'm trying to add detection for failed builds so the server can properly recover after a build failure and notify users of the ...
0
votes
0answers
15 views
Why is there a huge delay when my T4 template creates designer files?
I am using a T4 template with T4 Toolbox within Visual Studio 2012 to generate about 100 files and add them to the project. I have two templates, one of which outputs a .cs file, the other outputs a ...
0
votes
1answer
16 views
is it a kind of bug telerik rad control?
Hi; i have been developed a wp8 application using telerik. I have a radModalWindow generator. Every things works good. But Telerik is confused Transparent color setting.(i guess) My Code below; ...
0
votes
0answers
3 views
How to include templates into VSIX package
I am developing a package for VS2012 and what I have there is:
A custom project template and a set of custom item templates:
Templates\Items\MyFirstItem (and more items there), ...
0
votes
1answer
14 views
C# project created install package on Win7 64 bit machine will not install on Win XP
I am hoping you could resolve this issue. I have made a small application in C# and I publish it with the prereqs of .Net 4.5 and SQL Server Compact 4.0. One of the users of the app is running under ...
0
votes
1answer
13 views
Office 2010 PIA not being installed
I am writing an application in VB.NET that will send emails using outlook. My problem is that I need the Office 2010 PIA to do this. The following are the steps I have already tried (I am using Visual ...
2
votes
1answer
50 views
ASP.NET Web Tools 2012.2
I'm attempting to create a project in Visual Studio 2012 Express Web. Even after installing this update I still get a failure message when trying to create a new project/website. Including the ones ...
0
votes
0answers
9 views
Two TFS Projects - Making one project reference another within source control
I have two projects.
Project1 - A project within TFS that I wish to keep up to date that I want to make available for other applications to use.
Project2 - My first application that will need to ...
0
votes
0answers
13 views
Installshield not copying new primary output?
Question:
I'm using Visual Studio 2012 to create a Windows Service.
So far, I've written a windows service before with VisualStudio 2010 and managed to solve all the problems.
The service works ...
1
vote
0answers
8 views
How do I get the Visual Studio 2012 AddIns folder (or Current User's “Documents” folder) in VS2012 post-build step?
I have Visual Studio 2012 Extension project with a Post-build step, in which I want to copy the .dll and .AddIn files to the current user's Visual Studio 2012 AddIns folder.
I'm using Windows 8, so ...
3
votes
0answers
18 views
Designer crash for Visual Studio 2012 Windows Phone
I recently switched from VS2010 to VS2012. The designer crashes every time even after re installing the SDK.
Following exception is thrown :
System.NullReferenceException
Object reference not set ...
1
vote
2answers
21 views
Windows Kit 8.0 and Visual Studio 2012 - are they shipped together? [closed]
I'm a novice with Visual Studio 2012 development and I have been given a machine where there are some header files I need in the following directory
C:\Program Files (x86)\Windows Kits\8.0
I'm ...
3
votes
1answer
55 views
CMake check Windows version
How do I check with CMake whether I'm configuring a Visual Studio solution for Windows 7 or Windows 8?
Is there a way to do this?
0
votes
1answer
27 views
How to debug a c# activex
I have a c# project that generate my activex component.
The debug project is a simple web application that call the registered dll.
Javascript debug points and exceptions works fine.
How can i catch ...
0
votes
1answer
17 views
Code Review in Visual Studio 2012, with TFS 2010
Is it possible to enable Code Review in VS2012 with a TFS2010 server?
Our should we upgrade our TFS server to TFS2012 before its possible?
Thank you! :-)
0
votes
2answers
35 views
No cs file if MasterPage used
I am currently using Visual Studio 2012 to design aspx pages and have a page which uses a MasterPage which I will call it "a.aspx" for simplicity's sake, and unlike my other pages, "a.aspx" does not ...
3
votes
0answers
19 views
Consuming ax2012 services in windows console application
I have a remote machine with AX2012 installed and in it I have built a custom service in AX2012 and I am able to use it properly in a windows console application (VS2010). But when I try to connect to ...
0
votes
1answer
30 views
WPF curpos in textbox databinding to label
This Morning i came across a slight problem, now as I'm relatively new to WPF i wanted to find out how to do this.
On my form i have a a textbox, and i have a label that i want to bind the current ...
0
votes
1answer
20 views
display constants for custom object, similar to MessageBoxButtons
Ok, so I have an odd question- I'm not sure I'm phrasing this correctly, which may be why I've not found any info on this in my searching.
I have a class defining a Host object representing a ...
-1
votes
0answers
10 views
error C2039: 'add_panel' : is not a member of 'GLUI_Panel'
I am building a project with vc++2012 on Win7 but it is generating this error:
error C2039: 'add_panel' : is not a member of 'GLUI_Panel'
error C2065: 'redBar' : undeclared identifier
error C2065: ...
0
votes
0answers
16 views
Loading different sub reports via code
Here is what I am trying to achieve.
Every report (different datasource and table formats) will have a title page. As I don't want to have a title page on every report (because if the format changes, ...
2
votes
1answer
35 views
Unable to use Dotfuscator with application referencing Microsoft.Bcl.Async
To support XP one of my projects is now targeting the .NET 4.0 and using Microsoft.Bcl.Async for the async features of .NET 4.5.
The trouble is, I am not longer able to obfuscate the resulting ...
2
votes
0answers
17 views
asp.net Attempting to create publish settings in vs 2012 gives strange error
I recently updated my asp.net 3.5 web project from Visual Studio 2010 to Visual Studio 2012. Every time I try to create publish settings it says the following:
{There are errors in web.config. ...
0
votes
0answers
5 views
Error Installing Visual Studio 2012 Professional on Windows 7 64 bit (Signature or catalog not verified)
I'm trying to install visual studio professional 2012 on windows 7 64 bit machine.
Everytime I try to install it gives with the below error (on different cab files) while installing the ...
1
vote
1answer
26 views
Expression to include by file name but exclude by same folder name
I'm trying to figure out how to configure VS Code Coverage Run Settings to include only target libraries but not test libraries and not 3rd party libraries:
Syntax is the following:
<Include>
...
0
votes
1answer
14 views
WF Security Pack Activities are not showing up in the toolbox
I installed the WF Security Pack CTP 1 and referenced the assemblies in my project, but I can't figure out why the activities aren't showing up in the toolbox. I'm using Visual Studio 2012 and .NET ...
2
votes
2answers
29 views
Is there a way in Visual Studio 2012 to see an error log of the Update Service Reference operation
I've had a lot of issues with updating my service reference to my WCF service. I've had issues with third-party dll's not serializing correctly, and also issues with too many methods in the service. ...
0
votes
0answers
32 views
Visual Studio 2012 WCF service Reference.cs only has one class after adding a method to the service
I have a WCF service running in the 4.0 framework in VS2012. I added a method to my service and suddenly the service reference wouldn't update properly in another project. The Reference.cs file ...






