Which Visual Studio Color Theme do you use?
Do you find that the darker themes work best for you? Do they help ease your eye strain?
What is your favorite color theme & where can I get it?
I've got a custom colour set in Visual Studio and one of the colours when debugging is making things a bit of a misery. Unfortunately I can't figure out which one it is, and when going through and changing all the light background ones, it still remains.
Can anyone point me in the right direction? In this screenshot the current line is yellow, and the caller is the white/cream sort of colour which is the one I want to change...
Thanks very much! :)
I created an Empty Project in Visual C++, but now I need the Console to display debug output.
How can I enable the Console without recreating the project or show the output in the VS output window?
Thanks in advance
Attic
I know this thread
http://stackoverflow.com/questions/216025/gcc-with-visual-studio
but to me it seems that everything mentioned there is rather outdated and it seems to be the tenor is: don't do it
Who knows a better step by step explanation
thank you in advance
Oops
I recently moved the asp.net website solution folder (along with class projects) to different location.
As the result, visual studio doesn't stop at break points, and I could not able to debug.
I see none of my assemblies at Debug Windows Modules; only microsoft assemblies are loaded. I have also deleted all bin folder and re-referenced all projects. But still no luck.
Thanks in advance!
I recently installed Visual Studio 2010 Pro. There might have been a link to install the offline help at the end of the install, but I missed it. Now I can't find a way to install the help. How can I accomplish this?
In visual studio, when making a C++ windows application form. I want a picture to change when I click on it.
So when I double click the picture and it brings up the click action script, what script do I use.....
Similiar to
int temp = System::Int32::Parse(label1->Text);
temp++; label1->Text =
temp.ToString();
Which just increments an integer in a label
I am working on a software project which uses the Microsoft Visual source safe version control system. I need to access this system from home as I often work on source code files from there. How I can VSS be setup so that it can be accessed from the internet as well.
My code dumps a hell amount of data on the command prompt. How do I activate the 'MORE' option for the output so that I see the output page by page? (MS Visual Studio)
For eg. Matlab has the command 'more on' to do the same!
Thanks.
I'm currently using Visual Studio 2010 Professional, and noticed the ability to create Word 2007 and Word 2010 documents with C# code-behinds.
What I'm looking to do is fill in a report-type document with information in my C# application, and then output the final .docx. Is this possible using this feature, and how do I go about doing it?
does anyone know of a visual programming tool that could be adapted for children (kids age 7-12) so that they can generate c programs to control device?
in visual studio is the member dropdown, where you can select all members of the current type alphabetically ordered.
is there an option which allows grouping of the members? i.e. all constructors before all methods before all properties before all events before all fields?
if there is not, bad for me, i guess—it would really enhance productivity
Is there a way to set visual studio to publish all pdf files?
I know that you can set each indivdual pdf file in a project with the
"Copy to Outpub Directory" property.
But that means doing the same thing 100's of times for my current project, is there a way to change a global setting to do the same thing?
Hello,
Im writing application in c++ and after try to run built (in debug mode) application on another machine I had error (The application has failed to start because its side-by-side configuration is incorect). I realised that there are missed DLLs from windows\WinSxS\
But I dont really know which folder contains what I really need and secondly I dont know how to check my compiler version in visual studio.
Thanks for help
How can I run multiple copies of the same app in Debug with Visual Studio? For instance, how do I run app.exe /option1 and app.exe /option2 and still debug both? I know I can run them manually and then attach, but I want an automated solution.
I have tried writing a small console app just to run 2 processes, but obviously they are not being run under debugger. Any ideas?
what is sourcesafe?
i am trying to download it to see if it will work well with c# because someone told me to download it for a job, but i don't even understand what it is?
is it built into the visual studio ide or what?
Does anybody have an example of working with database using Visual C++ and OLEDB? What should I include on top of my code?
I have searched the internet and most examples are using C# or VB. Examples written by C++ are usually not complete.
I really appreciate your help.
Best,
Shadi.
Visual Studio 2008 shows a lot of erroneous errors when building a website (not a web project) in the errors list. These errors are usually corrected (removed) when I rebuild the site a couple times but they cost me wasted time.
Is there anyway to hide the erroneous errors?
Ive used visual studio for years, but the answer this eludes me:
When intellisense pops up, for a method call that takes more than one parameter, the summary for the first parameter is shown. The only way i've found to show the summary for the following parameter(s) is to either supply each parameter or just hit comma until i get the one im looking for.
Ive tried ctrl+right arrow, shift + right arrow etc etc, without success.
Just curious is all.
I am using Visual C++. How to copy the content of this file to another file?
UINT32 writeToLog(wstring log)
{
wfstream file1 (LOG_FILE_NAME, ios_base::out);
file1 << log;
file1.close();
// want to copy file1 to file2
return 0;
}
Sorry for the vague title, but I'm not sure what this is called.
Say I add IDisposable to my class, Visual Studio can create the method stub for me. But it creates the stub like:
void IDisposable.Dispose()
I don't follow what this syntax is doing. Why do it like this instead of public void Dispose()?
And with the first syntax, I couldn't work out how to call Dispose() from within my class (in my destructor).
Hi,
I just created a new project configuration.
I named it 'Blah' So no 'debug' in it.
Now how does Visual Studio know when to compile a debug file or a release file.
is this merely defined by the DEBUG constant?
Or am I wrong? :)
Thanks