visual-studio-2015

Crystal Reports in Visual Studio 2015 Community

大城市里の小女人 提交于 2020-01-13 03:22:12
问题 Hi I have a simple question, but I can't find any info about it. I know that Crystal Reports didn't run with VS Express edition but what is with VS 2015 Community version ? it's working or not ? Someone test it ? 回答1: Yes, you are right, VS Express is not support Crystal report, but VS2015 community addition support CR. Check this links. http://www.tektutorialshub.com/download-crystal-reports-for-visual-studio-2015/ http://scn.sap.com/docs/DOC-7824 Visual Studio Community 2015 with Crystal

Data menu and add Data Source in Visual Studio 2015

删除回忆录丶 提交于 2020-01-13 02:11:26
问题 In visual studio 2012 there is a Data menu option and add data source option that can be use to add a connection string to the app.config or the web.config. Where is that menu in Visual Studio 2015 ? 回答1: To open data source window choose View -> Other Windows -> Data Sources as well you can try the short keys Shift+Alt+D . 回答2: Data sources window is not available for web applications, only available for windows forms and WPF applications in visual studio 2015. you can use Server explorer

Data menu and add Data Source in Visual Studio 2015

女生的网名这么多〃 提交于 2020-01-13 02:11:25
问题 In visual studio 2012 there is a Data menu option and add data source option that can be use to add a connection string to the app.config or the web.config. Where is that menu in Visual Studio 2015 ? 回答1: To open data source window choose View -> Other Windows -> Data Sources as well you can try the short keys Shift+Alt+D . 回答2: Data sources window is not available for web applications, only available for windows forms and WPF applications in visual studio 2015. you can use Server explorer

Would installing Visual Studio 2015 change the compiler used by VS 2013?

血红的双手。 提交于 2020-01-12 19:10:23
问题 What C# compiler does Visual Studio 2013 use? If I were to install Visual Studio 2015 with its new Roslyn compiler, would that affect my Visual Studio 2013 installation? I ask because we have some tests that are known to fail when our code is built with Visual Studio 2015. Some numbers differ at the eight significant figure. The solution when Visual Studio 2015 is released will probably be to increase the tolerances on the tests, but I'd like to understand how Visual Studio decides which

Would installing Visual Studio 2015 change the compiler used by VS 2013?

江枫思渺然 提交于 2020-01-12 19:07:50
问题 What C# compiler does Visual Studio 2013 use? If I were to install Visual Studio 2015 with its new Roslyn compiler, would that affect my Visual Studio 2013 installation? I ask because we have some tests that are known to fail when our code is built with Visual Studio 2015. Some numbers differ at the eight significant figure. The solution when Visual Studio 2015 is released will probably be to increase the tolerances on the tests, but I'd like to understand how Visual Studio decides which

Generating entity relationship diagram in Visual Studio 2015

心已入冬 提交于 2020-01-12 19:03:45
问题 Can you tell me how I can generate an ER diagram for my database1 (see below) created with VS 2015 Thanks in advance 回答1: DB Objects in the editor will be related as in Diagram so Just relate objects in the Db and drag to editor. 回答2: Ensure you installed either Microsoft SQL Server Data Tools or Microsoft Web Developer Tools in order to get the Entity Data Model Designer. These are the steps to generate entity relationship diagram. It was tested in VS2012 Open Visual Studio Create a project

OpenCL HelloWorld

孤人 提交于 2020-01-12 18:54:43
问题 I've just started working in opencl and I'm currently working on what should be a relatively basic hello_world program in opencl. Unfortunately the program is not outputting the proper phrase or anything at all it instead hangs with no output. Any idea on why that is the case? Below is: openglsource.cpp and hello.cl #define CL_USE_DEPRECATED_OPENCL_2_0_APIS #include<CL/cl.hpp> #include<iostream> #include <fstream> int main() { std::vector<cl::Platform> platforms; cl::Platform::get(&platforms)

Using string interpolation and nameof in .VS 2015 NET 4.5

南楼画角 提交于 2020-01-12 18:46:29
问题 I'm using things like $"hello {person}" and nameof(arg1) in my code, but on checking the project properties I'm targeting .NET 4.5. Is this okay? I thought these things were introduced in 4.6. The project builds and runs okay on my machine - but I'm worried something will go wrong when I deploy it. 回答1: It's a compiler feature, not a framework feature. We successfully use both features with our .NET 3.5 projects in Visual Studio 2015. In a nutshell, the compiler translates $"hello {person}"

Using string interpolation and nameof in .VS 2015 NET 4.5

南楼画角 提交于 2020-01-12 18:46:20
问题 I'm using things like $"hello {person}" and nameof(arg1) in my code, but on checking the project properties I'm targeting .NET 4.5. Is this okay? I thought these things were introduced in 4.6. The project builds and runs okay on my machine - but I'm worried something will go wrong when I deploy it. 回答1: It's a compiler feature, not a framework feature. We successfully use both features with our .NET 3.5 projects in Visual Studio 2015. In a nutshell, the compiler translates $"hello {person}"

Using string interpolation and nameof in .VS 2015 NET 4.5

会有一股神秘感。 提交于 2020-01-12 18:46:19
问题 I'm using things like $"hello {person}" and nameof(arg1) in my code, but on checking the project properties I'm targeting .NET 4.5. Is this okay? I thought these things were introduced in 4.6. The project builds and runs okay on my machine - but I'm worried something will go wrong when I deploy it. 回答1: It's a compiler feature, not a framework feature. We successfully use both features with our .NET 3.5 projects in Visual Studio 2015. In a nutshell, the compiler translates $"hello {person}"