visual-studio-2008

Operation Not Implemented Exporting Excel (Data Only) Crystal Reports 2008

I'm trying to deploy an application to a client's server, but export to Excel (Data Only) is not working, giving me the "Operation Not Implemented" error. It isn't a problem with the report, because I have over 50 reports with standard fonts, some of them very simple, and the export fails for all of them. I have the feeling the incorre...

WebService Debug Synchronization (why do my breakpoints give the message "The source code is different from the original version"?)

I'm fairly new to web service development, and I am really confused about how ASP.Net Development Server synchronizes with code during debug mode. When I make changes to my service, I cannot figure out how to propigate those changes so that my client can "see" them (I've been able to synchronize through a stumbling series of publishin...

how to test aspx page behaviour when multiple requests(~50) are made simultaneously using visual studio

I have to test my asp.net web application for performance when there are simultaneous requests for the web site in my developer machine before deploy in production. how can i achieve this using Visual Studio?.(without using third party tools preferably Visual studio 2010 professional edition ...

Setting Up a Win32 DLL in Visual Studio 2008

Please bare with me. I am learning how to make these DLLs properly. Hopefully my questions become more intelligent as I go. I would like to make a Win32 DLL (unmanaged code) using Visual Studio 2008. After selecting New Project, in Project types -> Other Languages -> Visual C++ -> Win32 I selected Win32 Project as the project type. ...

How to reference a project from a web application in two different Solution

Hi, I have a Web application project that references other projects within the same solution. I wanted the web application to reference the same project but from a static folder in a different solution. something like this: Solution A ---> ---->Web App ------>Reference to proj Solution B-----> ------->Web App ...

How to enable Design Ruler on VS.NET winform?

When Creating and Adjusting Controls on Winforms visual studio has its intellisense ruler so you can Arrange all controls symetrically. Now My Problem is i dont know how to Enable this again in VS.Where can i see the option to enable that tools again. Thanks in Regards ...

Why is [AssemblyInitialize] and [AssemblyCleanup] being called twice in same test project assembly?

I though the whole purpose of these attributes was to run them only once per assembly. I have a simple class as follows: [TestClass] public class AssemblyIntegrationTestSetup { public AssemblyIntegrationTestSetup() { } public TestContext TestContext { get; set; } [AssemblyInitialize] public static void SetupIntegrationT...

Extracting data from excel using interop - ignore certain cells where no data is contained.

Hi guys, I'm using c# and visual studio to extract data from an excel sheet, put it into an array (adding commas to the end of each string) and then output it to a .CSV file. Now I've run into a snag that occurs when a cell has either no data, or not the data expected (i.e. an image). I am assuming that this is on the reading end of th...

Two datagridviews in one windows form = not possible to save data to the second datagridview

I create a winform I´m adding a datagridview by dragging a table from data sources the result: I´ve got a winform with a datagridview and a bindingnavigator I´m adding a second datagridview to the same winform by dragging another table from data sources the result: same as bullet 3, but now with two datagridviews; a second bindingnaviga...

ADO.Net Entity Data Model does not appear in Add Item List

I am going to start working with Entity framework but the problem is my Visual Studio 2008 Does not showing ADO.Net Entity Data Model in Items list. Following is snapshot of my item list and Visual Studio ...

Why is VS telling me it can't find "Project1.exe.intermediate.manifest"?

The weirdest thing is happening. I opened a new empty console project in visual C++ express 2008. Without even opening a new C file or anything - the first thing I did after opening the project was "Build" and the following error appeared: Error 1 general error c1010070: Failed to load and parse the manifest. The system cannot find t...

Catch null values before adding to a string

Hey guys, I can only apologise for asking such a noob question, but this is the second time today I'm going to be relying on this awesome forum :) I have a string that is made up of values from an array, taken from an excel sheet, only some of these values are blank. I'm outputting these values to a CSV file, but don't want the blank va...

Debugging stored procedures in Visual Studio 2008 Pro

I'm trying to setup debugging of stored procedures in VS 2008 Pro, when I right-click on the connection in the Server Explorer I don't see the Allow SQL CLR Debugging option at all. The SQL Server is remote and running the 2005 express edition, so I'm not sure if I have to enable something on the remote server itself. Any help is appre...

Select all fields from table using Entity Framework

In the code below all of the fields are returned from the tables except for fields that are foreign keys. How do I get the foreign key fields to display? I just want an equivalent to select * from tableName. public ActionResult ShowAllTables() { var model = new CSLA_StagingModel() { depots =...

Why am I often getting error 0x8007000e when debugging a project in Visual Studio?

I have a Visual Studio 2008 project that is proving difficult to debug. I need to attach to IIS 7 to debug it. At least 50% of the time I get the following error shortly after attaching to w3wp.exe: --------------------------- Microsoft Visual Studio --------------------------- A fatal error has occurred and debugging needs to be termi...

Specifying multiple build rules/tools per input file in a VS2008 project

Hi, I have a pre-processor that I'd like to run on my .cpp/.h files before compiling them. I created a Custom Build Rule and applied it to my project. This successfully runs the pre-processor, but it does not actually compile the files afterwards. So what I'd like to do is run my custom rule first and then run the C/C++ Compiler Tool...

Visual Studio 2010 tab close button.

I'm used to having the 'x' close button that closes each tab you have open positioned on the right, the way it is in VS 2008. In 2010, each tab has it's own 'x' close. I like this but would also like to have the old close button too. Anyway of doing this? ...

Integrating wxwidgets in visual studio 2008

I want to make window-base application in c++, I have listen about wxwidgets. Can any one tell me how can I use wxwidgets library in my application, any link or tutorial which give me direction. ...

How do I stop SQL Server 2008 R2 trying to install some package when I build my setup project?

I have a WPF Linq-to-SQL project which I have been developing using MS Visual Studio 2008. I was running SQL Server 2008, and recently upgraded it to version R2. Now, whenever I build my SETUP project (not the app itself), the build process causes a window to launch: SQL Server 2008 R2 Management Studio Please wait while Windows configu...

Problem while compiling pro C files in visual studio 2008

I am using visual studio 2008.I'm facing problem while compiling pro C files. It is not detecting the header files (stdio.h.....etc) even though i had specified the correct path I have added the correct path to include directory ...