visual-studio-2010

visual studio setup project : update doesn't work

北战南征 提交于 2020-05-13 14:02:21
问题 I am facing a problem for several days and after many research I couldn't find anything that fit with my case. Here's the thing : I'm working with Visual Studio 2010 on a solution that contains several projects and a Setup Project. I want the setup project to create a MSI file to update the product from version 1.5 to version 1.6. I followed this tutorial http://www.simple-talk.com/dotnet/visual-studio/updates-to-setup-projects/ and updated also the assembly version and file version numbers

visual studio setup project : update doesn't work

人走茶凉 提交于 2020-05-13 14:02:07
问题 I am facing a problem for several days and after many research I couldn't find anything that fit with my case. Here's the thing : I'm working with Visual Studio 2010 on a solution that contains several projects and a Setup Project. I want the setup project to create a MSI file to update the product from version 1.5 to version 1.6. I followed this tutorial http://www.simple-talk.com/dotnet/visual-studio/updates-to-setup-projects/ and updated also the assembly version and file version numbers

where to put my access database in computer

主宰稳场 提交于 2020-05-12 07:21:08
问题 I've just finished my project in Visual Basic 2010. I'm using MS Access as my database. I've saved it in my documents and connected to my project. I didn't copy it to debug. Now when I create an installer and install it to another computer, an error occurs because it couldn't find my database. Manually copying my database to the other computer solves the problem. c:\users\users\documents\database.accdb The problem how could I create an installer including my database? And where should I put

where to put my access database in computer

流过昼夜 提交于 2020-05-12 07:20:50
问题 I've just finished my project in Visual Basic 2010. I'm using MS Access as my database. I've saved it in my documents and connected to my project. I didn't copy it to debug. Now when I create an installer and install it to another computer, an error occurs because it couldn't find my database. Manually copying my database to the other computer solves the problem. c:\users\users\documents\database.accdb The problem how could I create an installer including my database? And where should I put

where to put my access database in computer

你离开我真会死。 提交于 2020-05-12 07:20:07
问题 I've just finished my project in Visual Basic 2010. I'm using MS Access as my database. I've saved it in my documents and connected to my project. I didn't copy it to debug. Now when I create an installer and install it to another computer, an error occurs because it couldn't find my database. Manually copying my database to the other computer solves the problem. c:\users\users\documents\database.accdb The problem how could I create an installer including my database? And where should I put

visual studio edit and continue does not work

折月煮酒 提交于 2020-05-11 04:03:06
问题 In my project which is a hybrid project (in previous it was a web forms project that then we modified to use mvc pattern). Now I want that in debug mode, I want to change something in my cs file, and then I want the changed code to run. I've tried enabling and disabling tools -> options -> debug -> edit and continue checkbox part. When it is enabled I can't change code in my project while debugging. When it is disabled I can change code but it does not affect on running part. for example. int

What is the difference between F10 and F11 keys in visual studio?

不打扰是莪最后的温柔 提交于 2020-05-09 18:44:06
问题 I'm new in C#. I hit a breakpoint and pressed F10 or F11 . Which key should be use for compilation? Please help me out. Can you explain me what this keys does? 回答1: F10 ("step over") does not descend any further into the call stack. It moves to the next line of the current function. F11 ("step into") drills down into the function being called. void function1() { function2(); function3(); } If you hit a breakpoint on function2() , F10 will advance to the line function3() . F11 will advance to

Disable exception handling while debugging c++ project using Google Test

不羁的心 提交于 2020-05-09 01:21:35
问题 I have my (native C++) DLL project and a corresponding test EXE project based on Google Test. While debugging my DLL via this EXE I have exceptions automatically handled by Google Test. So if my DLL throws an unhandled exception during debug, I expect to see error message from Visual Studio with debug session paused after the code caused exception. Instead, I have breakpoint triggered in gtest.cc. And if I disable --gtest_break_on_failure flag I will receive no breaks at all. I found no such

Use BrightnessContrast class in Gdiplus C++

泄露秘密 提交于 2020-04-30 07:49:58
问题 I am currently using Graphics, Image, Color, and Bitmap Gdi+ classes in my C++ Application, but whenever I try to use BrightnessContrast and BrightnessContrastParams I get errors: In Intellisense: Error: Namespace 'Gdiplus' has no member 'BrightnessContrast' When Compiling: 'BrightnessContrast' : is not a member of 'Gdiplus' What gives? I did find a forum post that said to add a line to "Additional Manifest Dependencies:" in the project properties, I did this but it still didn't work. The

Use BrightnessContrast class in Gdiplus C++

穿精又带淫゛_ 提交于 2020-04-30 07:49:44
问题 I am currently using Graphics, Image, Color, and Bitmap Gdi+ classes in my C++ Application, but whenever I try to use BrightnessContrast and BrightnessContrastParams I get errors: In Intellisense: Error: Namespace 'Gdiplus' has no member 'BrightnessContrast' When Compiling: 'BrightnessContrast' : is not a member of 'Gdiplus' What gives? I did find a forum post that said to add a line to "Additional Manifest Dependencies:" in the project properties, I did this but it still didn't work. The