I've finally started playing around with Resharper and am loving it! The only problem is that I use a modified Zenburn color-scheme in Visual Studio 2008 and am finding some of the resharper suggestions and tooltips difficult to read. Do you use a dark backgrounded color-scheme in Visual Studio with Resharper?
...
I am trying to use Visual Leak Detector in Visual Studio 2008, here is an example of the output I get:
Detected memory leaks!
Dumping objects ->
{204} normal block at 0x036C1568, 1920 bytes long.
Data: < > 80 08 AB 03 00 01 AB 03 80 F9 AA 03 00 F2 AA 03
{203} normal block at 0x0372CC68, 40 bytes long.
Data: <( ...
Did anybody have the idea to create a Visual Studio extension for Java ?
Somebody wrote an article here:
http://www.improve.dk/blog/2007/09/29/compiling-java-in-visual-studio
But nobody seems to have the idea of using the free visual studio isolated shell to create an IDE for Java?
...
I'm using Visual Studio 2008 on my main build system. I've been playing with Visual Studio 2010 on another one. It appears that the tool still only wants to use one core when compiling unless you specify the /MP switch in the compiler switches (see http://stackoverflow.com/questions/1422601/how-do-i-turn-on-multi-cpu-core-c-compiles-in...
Just started using Visual Studio 2010, moved over from Netbeans.
I kinda liked the Netbeans upload on save functionality, which was useful in development environments when one is constantly making small changes and testing them. As soon as you saved a file, it would be synced to the FTP server.
Is it possible to do this in VS? I'm pret...
In our developer environment, no users have administration rights. As such, it's not possible to install MSBuild.CommunityTasks without getting admin to do so.
What I'm wondering is similar to NAnt, i.e. is it possible to include the files in your solution directory, and just reference it from there? This way, will not matter if the pe...
I'm regularly facing the problem that my merge module's references get out of sync with the file system.
Between two builds, the content of some directories changes. Some files get removed and some new ones appear.
Is there a way to automatically refresh these references so the merge module is in sync with the file system?
...
Hello
I'm doing batch-testing on our win32 c++ programs. Some of them crash. What's the best way to catch those crash from the command line and report it?
thanks
edit: answer:
1) you can't catch another process's exception from batch / command line
2) example to do it right in c#:
http://stackoverflow.com/questions/673036/how-to-ha...
Hello!
I've moved my vc7.1 project from WInXP to Win7. After rebuilding i got stackoverflow error in function _malloc_dbg when i start the program.
"Unhandled exception at 0x0051bf0f in XXX.exe: 0xC00000FD: Stack overflow."
----------------------
Call stack:
> msvcr71d.dll!_malloc_dbg(unsigned int nSize=140, int nBlockUse=2, const cha...
The small software team I work on recently got approved to upgrade to Visual Studio 2010 (we're currently using VS 2005). We have several ASP.NET 2.0 and WinForms (in .NET 2.0) projects in production.
I've been tasked with downloading VS 2010 and seeing how well it plays with our current projects. What issues should I be aware of when...
I'm sure you know the problem, as soon as a BindingSource is connected to a DataGridView the DataGridView generates columns for each Property found in the Type of the BindingSource's DataSource and adds that crap to the Form.Designer.cs file.
We only use run time generated columns, the clutter in the designer file is just waste of code,...
Hi everyone. I'm looking for some Vs 2005-2008 Editor Tools like those one in NetBeans or Eclipse that auto insert a close bracket '}' or auto insert a line after an opening bracket '{'.
In general a tool that enhance the Editor. I know that resharper does some of the tricks but it is expensive for me.
...
One of our vendors provides a web service API to allow their customers to validate data in a database. As part of their SDK, they provide a WSDL (Web Service Definition Language) file that, according to their documentation, can "be read by software applications and application development tools. An application tool such as Microsoft's ...
Hi all. I have an application written with Qt (I use VS + Integrator). Need to set an icon for it. I read "Setting the Application Icon" tutorial, but i can't use this method because I have no *.pro file. Googled for an hour and found no solution :( Any suggestions?
...
I need to find all strings without a given string before it.
For Instance:
Find: "someValue"
**All results with "function(" before them should be ignored
The Visual Studio regular expression would find this:
value = someValue
And Ignore something looking like this:
function(someValue)
What is the best way to go about this?
Th...
Is there a way I can use Visual Studio 2003 to post reports to Reporting Services 2008 Report Server?
It doesn't seem to work, but it works in VS 2008. I really don't want to upgrade the reports to a new version of studio (and rdl) just to move them to a new server (2008). It's a lot of additional work.
...
I have turned on "Treat warnings as errors" for my VS project which mean that I get errors for missing documentation (nice reminder for this particular project).
However, part of the code is generated by a custom tool which does not insert xml documentation so I'm looking for away to ignore the missing xml documentation for the generate...
how to use visual studio 2010 performance analyzer with silverlight?
Is it possible to do that?
Thanks!
...
In Visual Studio's Attach to Process dialog, one of the columns in the Available Processes list is "Title", which lists the title of the topmost window owned by each process.
We spawn multiple instances of several server processes in order to compartmentalize the work. For these console processes, the Title field is blank, so currently...
Hi,
I need to convert char to hex values. Refer to the Ascii table but I have a few examples listed below:
char 1 = 31
2 = 32
3 = 33
4 = 34
5 = 35
A = 41
a = 61 etc
Therefore string str = "12345";
Need to get the converted str = "3132333435"
...