Which VisualStudio 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 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, visualstudio 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 wonder if some of you would like the idea to collect in this place features/improvements we would like to see most in visualstudio, vote for them and then send them (these with the most votes) to VS Team. Maybe some of them would make their way into another release of VS.
Looking forward to see what you're thinking about it.
In visualstudio, 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
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?
Is there a way to set visualstudio 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?
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?
I'm currently using VisualStudio 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?
When using Zend Studio to write views for a MVC framework, is there any way of having those variables autocomplete, perhaps using PHPdoc?
For example, I set a variable in a view called $cart which is an instance of my ShoppingCart class. When I type "$cart-", I'd like the IDE to pop up with all of the objects properties.
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 visualstudio.
Thanks for help
in visualstudio 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
Ive used visualstudio 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.
Sorry for the vague title, but I'm not sure what this is called.
Say I add IDisposable to my class, VisualStudio 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).
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?
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.
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 visualstudio ide or what?
Is there a way in VisualStudio 2008 to go from a closing brace to it's opening brace? I've found a fair amount of stuff about highlighting the brace, but nothing about moving the cursor to it.
Hi,
I just created a new project configuration.
I named it 'Blah' So no 'debug' in it.
Now how does VisualStudio know when to compile a debug file or a release file.
is this merely defined by the DEBUG constant?
Or am I wrong? :)
Thanks
It doesn't seem like SQL Management Studio Express 2005 considers Internet Options proxy settings defined for the LAN when trying to connect to SQL Server 2005.
Is there a way to make it use the proxy settings?
This is somewhat related to a similar post, but that post was VisualStudio 6 in general and a lot of the suggestions didn't apply to VB6.
Suggest or vote for tools/tips. Please one tool/tip per post so that everyone can vote on them individually. Include a brief description of what the tools do.
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;
}