Here's the Problem
Warning 1 Unable to find module dependency with signature 'CRT.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E'
Warning 2 Unable to find module dependency with signature 'OpenMP.1E507087_0819_45E0_FF1F_C8B3B9A1E18E'
Warning 3 Unable to find module dependency with signature 'ATL.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E'
...
Hello,
I’m using C# with VS2008 Standard. Is it possible for ReportViewer to create mailing labels? Or is it not really meant for that?
PS.I don't want to use MS Word in any way.
Thanks
...
I've been seeing this in my Visual C# 2008 RSS Feed forever now:
I'm pretty sure this is a VS 2010 only feature, but I was wondering if there is anyway to replicate this in VS 2008?
...
There appears to be every other kind of drop-down menu--those that allow user input, those for integers only, those that don't...drop down, and even those that have ugly check boxes next to them. I just want a simple drop-down menu (like you'd see if I used in html) that lets the user choose exactly ONE item. (and one's chosen by defaul...
I have a atl com project that was compiling fine in VC6 which gives the following linker errors when compiled in VS2008.
error LNK2005: "void * __cdecl
operator new(unsigned int)"
(??2@YAPAXI@Z) already defined in
libcmt.lib(new.obj) File: uafxcw.lib
There are three more similar errors for delete, new[] and delete[].
I che...
For the last five or more years I have been working mainly on ongoing, large projects. I now wish to expand my scope of work and I realise I have fallen behind in best practices for developing, deploying, and supporting, complete and discrete applications or components. I would appreciate some pointers to books, articles, and web sites...
How can you determine the "type" of a project in visual studio..
eg if a project is a class library, a web application project, a winforms project a wcf project etc etc...the icons are obviously different for alot of them but is there anwhere where it states the project type?
...
I have written a WinForms application (C# 2.0, VS2008) that registers several file types during the setup. Each file type has its own icon, but I don't want to have the .ico files in the program directory.
So I added a native resource file (.res) to my project and embedded the icons in there. This works fine, but the values in the resou...
I am trying to debug a problem with a .net compact framework application I have running on windows mobile 6. It occurs when I call a web-service call on my development machine.
I don't need any help with the actual error, but with invoking the debugger at the correct time.
I run the web-service in debug mode and am able to trigger a br...
I recently got tossed some C# code to make some minor cosmetic changes to. When I open up some of the files in VisualStudio though, I get errors saying "To prevent possible data loss..."
The first of these errors is "Object reference not set to an instance of an object. "
I can follow the stack trace fine, but I'm not sure what I real...
In Eclipse you can right click on a class (even if it is a web project) that has a main method and run or debug it. It facilitates for quick testing. In Visual Studio when you want to run a specific class, how do you do it, without having to change the start up class etc..?
...
Is it a best practice to commit a .sln file to source control? When is it appropriate or inappropriate to do so?
Update
There were several good points made in the answers. Thanks for the responses!
...
When running a webtest or load test on a website using VS2008 Test edition how can I get the CPU etc of the webserver? I am sure I am being very slow here but I cannot work out how to set it up!
I can remote onto the webserver if that helps any.
As a rider question, can I import perfmon stats back into an already-run test?
...
What is the best way to copy my VS solution, including its projects? I'd like to do this so I can experiment, maybe even destroy, my solution in the name of learning.
It looks like I can just copy the solution folder and rename it to the desired new name. Correct? As far as the .SLN file goes, can I just do a find and replace to repalce...
What do I need to open sdf database in Visual Studio's 2008 server explorer?
I've installed Microsoft SQL Server Compact Edition 3.5 but Visual Studio seems to be unaffected by that installation.
...
Is there a keyboard shortcut that allows you to easily change Build Configuration (say, from Debug to Release) in Visual Studio (2008)?
In the Standard Toolbar there is a drop-down where one can easily change between Build Configurations, but I only know how to access it with my mouse.
Is there an easy way this can be done via the keyb...
Hello,
Is it possible to have custom properties for Project items while implementing a flavored C# project? For example add a MyProperty property to a class.cs's Properties Window.
Thanks in adavance.
Kenny
...
I'm trying to use DirectSound to capture sound from a microphone. Here's my code:
using Microsoft.DirectX.DirectSound;
public MicrophoneSensor()
{
CaptureBufferDescription micBufferDesc = new CaptureBufferDescription();
WaveFormat format = new WaveFormat();
format.SamplesPerSecond = 22000;...
I just wrote some new utility methods within a non-page class for an existing .NET webforms application and decided to try to unit test using the VS unit test framework rather than testing by hand. I've used the unit test tools before, but only on EXE and MVC projects, and am encountering an error connecting to the WebHostAdapter no mat...
I wrote a PHP extension and it could be compiled and run under linux successfully. But on windows, I met some problems.
I did the compiling on windows according to http://blog.slickedit.com/?p=128 with PHP source version 5.2.10, and after the compiling it generated the dll file. But when I tried to use the dll file, it reported me the m...