visual-studio-2010

Please help … Cannot compile “Point Cloud Library”

最后都变了- 提交于 2019-12-25 04:55:33
问题 I'm new to C++ and want to compile PCL example I installed VS 2010 and Netbeans 7 but could not compile it ! Is the re a better IDE for cMake ? The code has CMakeLists.txt file. What should I do ? These are source files : https://github.com/PointCloudLibrary/pcl/tree/master/apps/cloud_composer 回答1: If you are new to: C++, and PCL, and VS2010, and CMake Then I would advice you to start with the prebuild binaries from PCL. You can find them from: Prebuild windows PCL binaries . Probably best to

Compiled .dll files requiring msvcr100.dll to load

守給你的承諾、 提交于 2019-12-25 04:55:25
问题 I have a dll file compiled in MSVC++ 2010. It doesn't require any other extra library, yet only half of its users can load it because some are missing msvcr100.dll. Looking at the dependencies, it is requiring some basic functions like memcpy free malloc, though I thought those were standard C runtime functions. The code generation setting is set to "Multi-Threaded /MT" in the properties. What could be causing this? 回答1: My solution was deleting the dll from Windwos\System32 and reinstalling

Sharepoint 2010 Project package: Cannot add a new project output assembly to the package

≯℡__Kan透↙ 提交于 2019-12-25 04:42:56
问题 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\package.Package" Select "Advanced" In the Additional Assemblies area select "Add | Add assembly from Project Output..." This error is then presented: Cannot add a new project output assembly to the package. The path is not of a legal form.

What's the difference between running a debug app hosted in Visual Studio and running it directly?

落花浮王杯 提交于 2019-12-25 04:33:30
问题 I have an application running on the .Net framework 4 and my application runs managed AND unmanaged code. UDP sockets are used with a custom comms stack to speak with our custom hardware. When the application is run from Visual Studio, all is fine, but when it is run on its own, it often freezes. I have seen the behavior on both Windows XP SP3 and Windows 7 SP1. When the app is frozen, I can see that it is stuck in ntdll.dll in most of my threads. I was told in another question thread that

How to trim the values of x on X-axis in Chart control in Winforms?

大兔子大兔子 提交于 2019-12-25 04:27:34
问题 I have a winforms application which contains a chart control called comparisonChart I have implemented Zoom capability in the chart control by subscribing to the mousewheel event and doing the following. private void comparisonChartMouseWheel(object sender, MouseEventArgs e) { if (e.Delta < 0) { this.comparisonChart.ChartAreas[0].AxisX.ScaleView.ZoomReset(0); this.comparisonChart.ChartAreas[0].AxisY.ScaleView.ZoomReset(0); } else if (e.Delta > 0) { double xMin = this.comparisonChart

How to make Windows Always on top application [closed]

做~自己de王妃 提交于 2019-12-25 04:26:43
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . I want to make a small software which can provide the windows running applications to "always on top functionality" as available in Linux terminal, VLC media player etc. I have found some application related to this on internet. but i want to create my own always on top utility.

How to debug a referenced assembly in Xamarin.Android project

孤街醉人 提交于 2019-12-25 04:13:12
问题 I am testing out Xamarin.Android via Visual Studio 2010. My Xamarin.Android VS2010 Solution contains two projects: The Android project and a project (I'll call it MyProject for this post) that does all the business logic for the demo app that I'm making - The Android project references the MyProject project/assembly). When I run the appliation, I am receiving an exception error in MyProject and, so, I would like to step into MyProject and debug the problem. However, when I debug, VS2010 is

visual c++ cURL webpage source to String^

可紊 提交于 2019-12-25 04:03:24
问题 Im' looking for solution how to read website to system::String^ i found curl to std::string idea but after converting linker has a few errors ;/ here is my code: using namespace std; string contents; size_t handle_data(void *ptr, size_t size, size_t nmemb, void *stream) { int numbytes = size*nmemb; // The data is not null-terminated, so get the last character, and replace // it with '\0'. char lastchar = *((char *) ptr + numbytes - 1); *((char *) ptr + numbytes - 1) = '\0'; contents.append(

Format Document in Visual Studio 2010 asp tags format to lowercase

╄→гoц情女王★ 提交于 2019-12-25 04:02:15
问题 I have a similar problem of this post. When I try to use a shortcut CTRL + K, CTRL + D in a asp.net file (*.aspx) in order to format the document, all the document is reformated to lowercase. I tried the solution exposed for visual stuio 2008 but doesn't work. I've tried resetting the Visual Studio settings, turning off Resharper (v6.1). Nothing seems to bite. Some ideas to fix it ? 回答1: I had the same issue in Visual Studio 2012, I changed my Formatting settings in Tools, Options. Go to Text

Exposing a winforms application internals through WCF

主宰稳场 提交于 2019-12-25 03:59:11
问题 I am trying to take my first steps into IPC and the WCF, and so far, I'm falling flat on my face. I have a Winforms application that I would like to instrument somewhat for remote callers. The winforms application has most of its business logic confined to a singleton that takes care of all the background work. I would like to expose some of the functionality through an IPC mechanism. WCF seems like the way forward, so I started out with that. What I tried is adding a WCF Service Library