Visual Studio is an integrated development environment (IDE) from Microsoft.
0
votes
1answer
23 views
Error in building boost:python code
I've the following boost:python code(gona.cpp).
#include <iostream>
using namespace std;
void say_hello(const char* name) {
cout << "Hello " << name << "!\n";
}
...
0
votes
0answers
36 views
Find and replace running in a never ending loop
I am currently using this code snippet in my script for replacing text in an ASCII file
Dim fso, inputFile, outputFile
Dim str As String
Const quote As String = """"
...
4
votes
2answers
931 views
In Visual Studio 2010, how do you search for text that is not within a single line comment?
In Visual Studio 2010, how do you search for text that is not within a single line comment? E. G. how to find "bas" in:
foo bar bas
but not in
foo bar // bas
Note that it should find the line:
...
1
vote
0answers
8 views
Issues with Visual Studio 2010 project creation
I create a simple Win32 projects, edit the configuration and add new platform configurations (x64). I then batch rebuild my project and I get this output:
------ Rebuild All started: Project: ...
0
votes
0answers
54 views
VS2010: Error generating architecture diagram
I've been trying to use Visual Studio to draw various types of architecture diagrams (such as dependency diagrams--by assembly, by namespace), but every time I encounter the same error. The error ...
4
votes
2answers
3k views
VSTO 4.0 Runtime Download Missing from MS?
We have code that checks for the presence of the VSTO 4.0 runtime and downloads it, if missing. This has worked fine until today. It seems the VSTO runtime file has gone missing from MS. Does anyone ...
0
votes
2answers
29 views
Replacing several winforms controls with custom controls in VS2010
I have inherited a VB.net project, and I need to give several ListBoxes some custom functionality. So I've created a subclass of System.Windows.Forms.ListBox, and now I'd like to replace several ...
1
vote
0answers
22 views
Force Visual Studio 2010 to use gacutil.exe from older versions (Post Build event)
I'm developing a simple installer using WiX on which I'm trying to install a .dll and a publisher policy on GAC.
I successfully add the .dll on GAC using the installer. But I want to use PostBuild ...
0
votes
0answers
7 views
Repeat element on every page of an RDLC outside of header/footer
In VS2010 I have a report, with a table of data that can cause the report to span multiple pages.
Also on this report I have a rectangle that has some contact information for the company the report ...
0
votes
1answer
33 views
asp.net update panel not triggering
I have a repeater that I have included within an update panel and I have buttons and a drop down list outside the repeater . I do not want the page to load every time I click a button or or change ...
3
votes
4answers
18k views
How do you read a CSV file and display the results in a grid in Visual Basic 2010?
How do you read a CSV file and display the results in a grid in Visual Basic 2010? This sounds so simple but I still can't find the answer to it after googling for a while. I have DataGridView on a ...
0
votes
1answer
13 views
3D control for CAD that allows api manipulation for .Net Win or Web Applications
Our company has been challenged to create a 3D CAD Layout tool that could render.step files. What kind of controls are available that would allow component placement, snapping together, manipulation ...
0
votes
1answer
32 views
Is it possible to print a windows form from set X,Y coordinates
I am able to print the entire windows form but the top of the printout is not necessary. Is there a way to print from specific coordinates i.e X = 0 Y = 50.
This is the code i use to print the ...
0
votes
0answers
5 views
Setup Project with SqlLocalDB as Prerequisite
I need to include SqlLocalDB.MSI as a prerequisite of my project setup. With Visual Studio 2010. How can i do this?
0
votes
1answer
18 views
Opening EF designer with partial diagrams in VS 2010
Recently my team recently upgraded from VS 2010 to VS 2012. At the same time we created a branch of our code base, one that we needed to work on in VS 2010 for legacy support and bug fixes, and the ...
1
vote
1answer
27 views
Using LIBSVM on Visual studio 2010
I wanted to use libsvm in visual studio 2010 just for classifying my test sample and nothing more ..
I've worked with libsvm using the documentation provided by its official site ...
So I used ...
-1
votes
2answers
158 views
I can't commit anything to CodePlex with TortoiseSVN
I just created a project over at codeplex and tried committing the sourcecode (so my project can be available publicly) and TortoiseSVN just doesn't work with CodePlex anymore it seems. And codeplex ...
0
votes
3answers
95 views
Crystal Reports load reportDocument failed
I use crystal reports on vs 2010 c#, and i create pdf files using rpt documents of CR.
I put this code on windows service,my code works normally for 30 - 40 times but then memory is rising per +5 +7 ...
1
vote
1answer
28 views
Visual Studio Add-In Manager - cannot disable add-in at startup because greyed-out
I have ApexSQL tools running inside Visual Studio Shell 2010 but the auto-completion is crashing Visual Studio. I want to disable the add-in so it doesn't run on startup. But when I go to Add-In ...
0
votes
1answer
7 views
How do you define constantname for #IfDEF (VS 2010)?
I want to add conditions to show certain layout/theme based on build, for example:
I want to define a constant for 2 apps (both debug and release)
#IFDEF APP1.Debug
--- display layout 1
#IFDEF ...
1
vote
1answer
37 views
Visual Studio 2010 - Error CODE 22
Upon trying to compile a program I get an error MSB3073: The command _ exited with code 22.
What does code 22 mean? Btw, the _ is not the actual command. I am just leaving the command out.
Edit: ...
-1
votes
0answers
17 views
How to install / uninstall single msi from wix custom bootstrapper bundle containing multiple msi's like add/remove feature of Setup project
I have 2 msi in wix bundle I am using custom bootstrapper of wix 3.7. My Install,uninstall, and cancel command works perfectly. when I am trying to give functionality of add/remove msi from bundle ...
0
votes
1answer
31 views
Is Visual Studio 2012 faster than 2010 in design view?
I currently use Visual studio 2010 and it is very slow in design view when a page has a lot of controls. For example changing a property on a control in a big page can show the spin wheel (hourglass) ...
5
votes
3answers
2k views
Get the reference of the DTE2 object in Visual C# 2010
I want to get a reference to the current solution, using the DTE2 object with C# in Visual Studio 2010.
I first tried the following code:
var dte = Marshal.GetActiveObject("VisualStudio.DTE.10.0") ...
0
votes
1answer
16 views
Update Azure Staging deployment will create new url
I am using cloud service for my web application currently it is in development phase. My all updated code is on staging environment, I have create staging server on May 13, 2012. Now from last two ...
12
votes
4answers
682 views
Installation of Visual Studio 2010 (any edition) installs only 2 files in the C++ headers directory
I installed Visual Studio 2010 Premium on my Windows 7 workstation. After loading a test C++ project, I noticed that it could not locate iostream. I took a look in C:\Program Files (x86)\Microsoft ...
0
votes
1answer
22 views
Using ffmpeg static libraries in an visual studio explress C++ 2010 project
As the title says, I have been trying to get ffmpeg/libav libraries to work in MSVC++ 2010.
However, I keep running in the following error while coding on debug mode.
code:
extern "C"
{
...
0
votes
5answers
921 views
Could not load file or assembly 'Leadtools.Codecs', if anyone is familiar with leadtools
I get an exception on the last line of the following code (sorry for the format, won't let me post it any other way):
LeadHelper.Unlock();
RasterCodecs codecs = new RasterCodecs();
string ...
1
vote
1answer
40 views
How to add a record to a table using parameters from differents View in ASP MVC and SQL
I am developing an ASP .Net MVC 3 application using C# and SQL Server 2005.
I am using also Entity Framework and Code First Method.
I want to add a record to the table 'Gamme' in my base.
The ...
0
votes
1answer
4k views
IIS Express path to applicationhost.config in Visual Studio 2010
Is there a way to tell Visual Studio 2010 what value to use for the /config parameter when IIS Express is started?
Using Process Explorer I can see that the iisexpress.exe process is started by ...
1
vote
1answer
30 views
The difference between max and fmax (Cross platform compiling)
In Xcode, this compiles fine:
float falloff = fmin(1.0, fmax(0.0, distanceSqrd/cRadius));
However in Visual Studio 2010 it errors, and I have to use max instead of fmax.
distanceSqrd and cRadius ...
2
votes
2answers
2k views
LNK2022 and LNK2034 linker errors with version 10.0 of the CRT
Sorry to bother anyone with this question, but I've been researching this for hours, with no resolution yet:
I am porting a rather massive application to the 10.0 CRT (compiler) in Visual Studio ...
0
votes
1answer
32 views
Splitting an IplImage
I'm having a variable char* ImgMem which contains the image memory of the desired image (three channels / RAW 16) and I would like to split it by three and put each one of them in an IplImage of a ...
-1
votes
2answers
29 views
Unable to perform Speech Recognition in C++/CLI because of converting issues
please have a look at the following c++/cli code
#pragma once
namespace SpeechTest {
using namespace System;
using namespace System::ComponentModel;
using namespace ...
1
vote
1answer
104 views
Visual Studio custom wizard - add additional configuration
I am writing a visual studio custom wizard for creating C++ project.
I need to define additional build configuration, that inherits the debug configuration.
I googled a lot, but couldn't find ...
1
vote
6answers
626 views
Visual Studio does not support source control project
I am trying to open a project in VS 2010, but i am getting an error while opening it.
Can any one tell what this error means?
The Project is under Source Control. This Version of Visual studio
...
10
votes
10answers
17k views
VS2010 command prompt gives error : Cannot determine the location of the VS Common Tools folder
I have recently installed VS2010. The installation creates the short cut for VS2010 command prompt but when I open up the command prompt I get the error: Cannot determine the location of the VS Common ...
9
votes
4answers
10k views
What is going wrong when Visual Studio tells me “xcopy exited with code 4”
I'm not very familiar with post-build events, so I'm a little confused as to what's going wrong with my program. When compiling in visual studio 2010, I get the following:
The command "xcopy ...
0
votes
0answers
27 views
the error of building postgresql
My os is win7 64 bits, and I use visual studio 2010 to build the project of postgresql(9.2.2). I succeeded when I built it at the first time, but I got some errors and failed when I rebuilt this ...
0
votes
1answer
19 views
How to make custom DatabaseSchemaProvider compatible with Visual Studio 2012?
I have built a custom DatabaseSchemaProvider deployed using a VSIX package.
Under VS2010 and VSTSDB/10 it works great and is used for supporting our custom database language infrastructure in ...
-4
votes
0answers
68 views
VB.net textboxes only send “null” to database table. How to make it send the text?
In my vb.net program, I have several textboxes bound to a table.
A button submits that, but it seems to only send "null" or no data, or it just doesn't work right.
This is the button code that seems ...
0
votes
2answers
1k views
How do I completely remove Visual Studio 11 Beta, before installing Visual Studio 2012?
When I try to install VS2012, the installer suggests I should install it where the old VS11Beta was installed - and that tells me there's some leftovers from VS11Beta that needs to be cleaned.
How ...
0
votes
0answers
4 views
VS2010 profiling addin
I am trying to profile a plugin component to an 3rd party product (not a vs add-in) in Visual Studio 2010.
The debug options are set to start the 3rd party product which then loads my plugin (via ...
3
votes
2answers
29 views
Extra Characters while extracting font family from PDF
while extracting font name from pdf i will get some junk characters followed by plus sign and then the font name with font style. i want to remove the junk characters.only for few pdf i get that junk ...
5
votes
6answers
3k views
Build error: “The process cannot access the file because it is being used by another process”
I've got a C# webforms app, that until today had been working just swimmingly.
Now today, all of a sardine, every time I try run the app, I get a file locking error: "Unable to copy file ...
1
vote
0answers
25 views
On using aligndatapointsbyaxislabel, second series disappears
I've got four lists, which I am plotting on a mschart control. Two are string lists, two are double lists:
dbl1 = 5, 7, 9, 11
str1 = a , b, c, d
dbl2 = 13, 15
str2 = b, d
I am using ...
0
votes
2answers
55 views
How to make a generic map using template in C++
I am trying to create a generic map which will takeany datatype as its 2nd elelment.
But when I am trying create an object I am getting error as argument list for class template is missing
...
0
votes
0answers
14 views
Error LNK2001: unresolved external symbol _iob [closed]
I am a newbie to visual studio c++. When I compile my program, I got the errors as following:
Error 19 error LNK2001: unresolved external symbol __iob
Error 20 error LNK2001: unresolved ...
31
votes
5answers
25k views
Source control in Visual Studio 2010?
After doing some search on SO, Google and MSDN forums I've become frustrated that there is so little information for what might seem like an obvious question and possibly a dumb question.
I need to ...
-3
votes
1answer
20 views
All the errors are coming when I am trying to call this customized macro [closed]
define ERROR_CHECK_SERVER(x)\
({\
if (globalError)
{\
MM_MSG_PRIO(MM_GENERAL, MM_PRIO_ERROR, x);\
stop = true;\
break;\
}\
})
code @ line no.
131 status = ...





