Visual Studio is an integrated development environment (IDE) from Microsoft. It supports many different programming languages.
0
votes
1answer
17 views
How to add license files as part of custom NuGet package using PowerShell
I am facing an issue with PowerShell and NuGet. I have created a custom package, which also contains a license file in the lib directory. If I use the following code in an attempt to add a relative ...
0
votes
1answer
46 views
Best way, how to assign voice command to event / method in C#
in Visual Studio I´m creating application which use speech recognition for application control.
I´d like to ask you for help about what is the best way how to assign voice command to method.
I´m ...
1
vote
1answer
20 views
Paint Event Visual Studio
Currently I am working on a program on Visual Studio with the Windows Form Application, but every time I try to draw a shape or line with the paint event I get this error:
C2228: left of ...
0
votes
3answers
88 views
Array for Blackjack cards, strings or integers?
Having a look at related BlackJack questions, there is a confusion on what is better to use for the cards, either making an array of strings/items or integers.
With my BlackJack game Aces are 11 ...
0
votes
0answers
45 views
DateTimePicker subfield selection
So I've been tasked with making a custom data-bindable nullable DateTimePicker. I have it working great. Only issue is, the users don't want to use the arrow keys to navigate the control. They want to ...
1
vote
2answers
59 views
Sharing Visual Studio 2010 Code
Firstly, sorry if it has been asked before or seems a stupid question.
But I have played around with visual studio 2010, making a few forms click and handle together to do a function I desire, and now ...
0
votes
3answers
29 views
Where is the 'tests output pane'?
Unexpected error detected. Check the Tests Output Pane for details.
Where is the 'Tests Output Pane'? I can't find it anywhere in Visual Studio. I found 'test explorer' but it doesn't give any ...
0
votes
2answers
20 views
Is there a way to have a Windows Service delay a PC shutdown until an action has completed?
I've developed a PHP/MySQL e-commerce website for a small business that is hosted externally.
An exact replica of the same database is also hosted onsite at the businesses physical store to be ...
0
votes
0answers
10 views
TeamCity + vstest.console.exe + dotCover integration
TeamCity supports testing using MSTest and computing code coverage with dotCover; this is even integrated into the default TeamCity install. However, Visual Studio 2012 uses vstest ...
1
vote
1answer
17 views
Get the StartUp Project of the current sln file on building
Some of my projects have behavior based on the settings of the startup project. I.e. copy the resource to some other directory etc.
How can I get the reference to the startup project (the path to the ...
0
votes
0answers
22 views
Addin Fortran to Visual Studio?
I can't figure out how to add fortran to visual studio and program in it. Can anyone help me, at least guide me to a tutorial or something.?
0
votes
0answers
20 views
Error Queuing Visual Studio Load Test on Remote Test Controller
I am using Visual Studio 2012 on my local workstation, connecting to my test controller hosted in Amazon's EC2 cloud (Windows 2008 Server R2). I have added the EC2 elastic IP to my hosts file, and I ...
0
votes
2answers
39 views
Visual Studio Unit Tests Not Found
I am using Visual Studio for a C# application.
In my PC i had installed Gallio, which is a set of test tools (including a test runner). My Unit tests are normal unit tests using the NUnit framework. ...
0
votes
1answer
40 views
BizTalk with VIsual Studio - Steps to query SQL Server?
Does anyone know of a source (article, blog, tutorial, video, ...anything) clearly describing the simplest / best practice steps required to build a BizTalk application (part) with VS being able to ...
-5
votes
1answer
46 views
Not able to open the sample in VS2010
I have created the wpf sample in VS2012 with framework version as 4.0. Then I tried to open that sample in VS2010 in another machine that does not contains VS2012 and framework 4.5 but the sample not ...
0
votes
1answer
68 views
Table Rows Disappear on Dropdown ItemSelected
Friends, This is homework.
Every time I change a dropdown on a webpage, the page "resets". A row I've inserted programmatically disappears and a new one is written. I want to let the user add ...
6
votes
1answer
120 views
C compiler ??) replacement
We faced a strange issue with the Visual Studio 2005 compiler.
At compile time, it replaces this string constant
"... ,0x??)"
with this one:
"... ,0x]"
We hardly learned by trying that the ...
0
votes
1answer
36 views
datagrid checkbox writes Null instead of 0 (false) into database
I have a Table in my sql-database that has the following fields: Name(string), Quartal1(bit), Quartal2(bit), Quartal3(bit), Quartal4(bit).
I bound that Table to a datagrid (winform in visual studio). ...
1
vote
0answers
39 views
Visual studio custom class template with parameters
In my WPF MVVM applications I use a lot of the same master detail classes which can have an Add, Edit, Delete, Save and Undo command.
So these class structures are quite the same everytime.
I know I ...
2
votes
0answers
24 views
Brace settings for methods and properties with Resharper
How can I configure Resharper so that it places the opening brace for methods on the next line but places the opening brace for properties on the same line? Resharper doesn't seem to be able to ...
1
vote
1answer
31 views
Database Project - Post Deployment - Static Data - XML
I am trying to deploy static data (contained in xml files) with my database project.
I have seen a few examples of doing so using SQLCMD :r but cannot get it to work in my VS2012 project - it appears ...
0
votes
0answers
17 views
Add script with getScript
I am trying to use an xml file to write some test cases for a javascript file that exists on a random URL
<script type="text/javascript">
$(document).ready(function () {
var script ...
0
votes
1answer
19 views
Adding Items in a listbox visual basic
I'm making a cash register for homework and all the transactions are listed in a listbox (the amount)
Now I know how to add this up using a for loop, but the course has not even gone into loops yet ...
-1
votes
0answers
16 views
Control like SQL Server's installation? [closed]
I want to use a control like SQL Server's installation. I use Visual Studio 2010 Pro.
I can't find it in my toolbox. How do I get that control?
2
votes
3answers
57 views
How do I manipulate the last string of a Richtextbox in Visual Basic
I am trying to take a string in a rich text box and replace them with a different string.
Now how this should work is that if two same characters are entered into the text box
e.g tt the "tt" will ...
0
votes
0answers
26 views
Qt change ms visual 2012 compiler mode to MTd or others
I would like to change the settings of my Qt compiler kits. Basically I have installed Microsoft Visual Studio 2012. Its compiler is used in my Qt Creator with Qt 5.
I have some problems and I would ...
0
votes
1answer
23 views
Exclude css files by default when checking in
I am using Less in Visual Studio to generate css files. When I check in I only want to check in the less files and exclude the generated css files. Is it possible to exclude css files by default when ...
0
votes
1answer
52 views
Improving accuracy of Windows Sleep()
I understand that the Sleep() function in windows can only ensure that your thread sleeps for at least the specified time. While Sleep() cannot ensure that the thread only sleeps more than the ...
0
votes
0answers
41 views
getopt_long port to windows: __progname redefinition error
I'm using a port of getopt_long for windows which has the following lines:
[...]
static char * __progname __P((char *));
int getopt_internal __P((int, char * const *, const char *));
static char * ...
2
votes
2answers
49 views
Switch between Release and Debug in code
I published my application and I want to add extra "Admin" functionality to it.
I see a lot of debug information, when I run my application in Debug mode, all of this is removed in the Release mode, ...
0
votes
1answer
27 views
dll is being used by another process
I am creating an extension in Visual Studio 2012 and keep having this error which is getting rather frustrating.
The way I have dealing with it recently is that I have to go into the add-in manager ...
0
votes
1answer
29 views
Syntax error on javascript due to conversion VS2008 to VS2012
Recently I installed visual studio 2012. I converted my project in the log it seems to be fine, No errors. When I look in the code in the javascript at the end of the sentence he marks the ; red and ...
0
votes
3answers
57 views
Multiple main CPP files in VisualStudio?
I have a sample directory of some software, which contains multiple files with multiple main functions. May I assemble all of these files into single project, compile them and then run specific ones ...
0
votes
0answers
29 views
Visual Studio Continuous Integration Server Build error - Workspace Exception
I've setup continuous integration on the build settings in Visual Studio for an ASP.NET MVC 4 project written in C#. We use TFS2012 on VisualStudio.com for our source control and have set all ...
0
votes
1answer
74 views
Nuget Error: Unable to read beyond the end of the stream
I'm facing this issue from time to time where I can't install new packages to my project, Nuget keeps showing this error, from the command shell and GUI.
I installed/reinstalled NuGet to know avail.
...
-1
votes
1answer
47 views
visual c# WPF: create settings window
I'm using Visual Studio 2012 and I'm developing a project with C# and WPF.
In my application I need to have a simple settings window, as you can see in every Windows application. So, I create a new ...
-1
votes
2answers
70 views
How to retrieve files from 2 different projects in the same solution without hard code the path? [closed]
I have 2 projects under 1 solution, 1 project called adminsite, and another 1 called publicsite. What i want to achieve is, i want to retrieve some files in publicsite sub folders and use those files ...
0
votes
1answer
24 views
Can I remove VB options from the VisualStudio new project dialog?
After two evenings of designing a new WinForms application GUI I have suddenly realized that I am doing it in a VB project I had created instead of a C# project unintentionally.
And this is not the ...
0
votes
0answers
33 views
I am getting: “LNK2019: unresolved external symbol” while using global variables [closed]
In the book i'm learning from, I've started learning how to use global variables. In the book, I get this error:
Main.obj : error LNK2019: unresolved external symbol "void __cdecl ...
2
votes
1answer
46 views
How to avoid string corruption on formatting razor views
In Visual Studio Express For Web 2012 if razor view is formatted, formatter adds extra spaces to end
of javascript string. This causes invalid data to be passed.
Before formatting:
@if ...
0
votes
2answers
23 views
Identify jenkins error messages for failed tests and debugging
Is it possible to find out why the tests on the jenkins server failed? Meaning like an error message? I am new to testing and although I did some front end testing with Chutzpah, this is a totally new ...
0
votes
2answers
81 views
Prevent Visual Studio C++ from merging identical functions
In order to get the length of functions, I'm using empty functions to mark where each function ends, like so:
void f()
{
printf("ooga\n");
}
__declspec(noinline, naked) void f_end() { __asm { nop ...
0
votes
0answers
66 views
Resolving SQL / Network path not found
I have built a very small (3 page) asp.net site using MS Access 2010 as the database. page 1 is splash, 2 and 3 show aspects of the data. This all works in test mode. This is for an off-line intranet ...
0
votes
2answers
52 views
How can i fix language for the grammar does not match the language of the speech recognizer error in vb
Hello in visual basic I am attempting to create a speech recognition system that can help me out with my life on the computer. I called my assistant Jarvis. For this project I imported ...
0
votes
1answer
18 views
D9024 make unrecognized source file type
If I run this cmd on cmd line using MS cl:
cl -c /W3 /Od ioapi.c
the object file, ioapi.obj is created as expected.
If however I create a makefile with this entry:
ioapi.obj: ioapi.c
cl -c ...
0
votes
1answer
26 views
Debug Assertion Failed - MSVCP110D.dll
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
int main()
{
string token = "000000:::AAAA:::000011:::Hello 8:::::::D Jay!";
string * stringArray = ...
0
votes
1answer
33 views
VisualStudio can't recognize my snippets when the code uses html tags
When I use "< a > < ! [ CDATA[]]> < / a >.Value" anywhere in my code and then I try to export and later import as Snippet then VisualStudio can't recognize the snippet because the tags are in ...
0
votes
1answer
33 views
Visual Studio 2012 Comment Shortcut in cshtml file
I have a strange problem in that the Comment/Uncomment icons and shortcuts don't seem to active when I am editing a cshtml file but are active for other file types. This is in VS2012 using the MVC ...
-3
votes
0answers
27 views
Design Pattern Used in Visual studio intellisense [closed]
Can somebody tell me what design pattern may have been used in implementing intellisense in Visual Studio?
-1
votes
3answers
47 views
What are the ways to store array data on a local drive? [closed]
I want to store information about up to 1000 streets (the name, the ID and a short info, up to 500 characters). The right thing to do, seems to be to create class Street with three needed fields and ...





