visual-studio-2008

View whitespace in VS2008

After Jeph most recent post: http://www.codinghorror.com/blog/archives/001310.html, I thought to myself it would be fun to see if any of my code has those trailing whitespaces. So I open Visual Studio, go to settings and I can't find an option to make this visible. Is this possible in VS2008? ...

It's Possible To Run Windows Mobile 5 SDK In Visual Studio 2008?

Hello, I was seeing about Windows Mobile 5 SDK at Microsoft Download Center and I also see some requirements to run it: System Requirements Supported Operating Systems: Windows Server 2003 Service Pack 1; Windows XP Visual Studio 2005 Standard, Professional, and Team Suite Editions And I only have my Visual Studio 200...

How to override target URI for a web service reference in VS 2008

This seems like it should be really simple, but I'm unable to figure this out. I am adding a web service reference to my console application. The web service points against our production environment and I would like to test it against development. In VS2005 it was really easy to override the target URI of the service. Is it possible t...

Fixing "error C2065: undeclared identifier"

First off, I'm completely out of my depth here. So the question might be the wrong one to ask, but here goes... As per the accepted answer to this question, I'm trying to compile the bindings for the Audiere library, which are produced by Harald Fielker and available in the mailing list archives. I've opened the .vcproj file in VC++ Ex...

Jquery and Intellisence in VS 2008 with hotfix and SP1

I followed Scott Guthrie's instructions as outlined atL http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx but no avail: intellisence still doesn't work. Any tips? ...

Including non-code in VS project.

So I've got several projects in a solution. A couple of class librarys, a UI, and several testing projects. There is a set of XML files that are used to store alot of configuration information that we need to init our app. I want to have one place that is THE xml files and then copy that set of XML into the different projects when they...

Trouble with VS.PHP installing it's own Apache server

I tried installing VS.PHP some time ago. I was intent on seeing how it works with my current setup. I immediately encountered trouble: none of my sites wanted to render. On windows, I'm using WAMP to run my PHP sites. VS.PHP seems to have installed its own Apache server. What I want is to have VS.PHP use my existing environment. How ca...

streamreader not reading from textfilewithin the project

I am using the streamreader to read from a file in the project.. StreamReader stRead = new StreamReader("textfile.txt"); while (!stRead.EndOfStream) { CheckBoxList1.Items.Add(stRead.ReadLine()); } but i get an error: Could not find file 'c:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE...

Is it possible to have VS 2008 Javascript Intellisense in a usercontrol?

I have been banging my head against this for a little while now. I just can't seem to get intellisense to work in a ascx user control, but it works fine in a plain old aspx. Here is a sample aspx page: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TestScriptLoader._Default" %> <!DOCTYPE html PUBL...

VS2008 : Start an external program on Debug

I have a solution with three projects: is a console (GUI app) for a device connected through Serial Port. Serial Port emulation (console app, self-hosted WCF service). Common interfaces. To debug, I start SerialPortEmulator and then debug (F5) the main project. Two problems: It takes extra keystrokes to start the emulator. I...

How to debug application directly on windows mobile?

Hi, I am developing a windows mobile application in which I want to debug the application not on the simulator but on the phone directly So is there any way to do this? I am currently connecting the device to visual studio after syncing it and have added a custom certificate too. But when I start the debugging the debugging stops at "...

Weird memory leak

Hi I am having a memory leak problem and it is actually generating from the following structure array: TagStruct TagData [] = { { Tag_SecurityToken, string("x-abc-security-token"), string("ab-security-token") } , { Tag_XYZ, string("x-abc-xyz"), string("ab-xyz") }, { Tag_ChunkCount, string("x-abc-meta-chunk"), string("ab-me...

How to set icon to my jar using Visual studio

Hi I am using Visual Studio, I want to set icon to my jar file. But I donot know how to set icon file to my Jar file. So How can I set icon to my Jar file. Thanks Sunil Kumar Sahoo ...

To specify Startup Program in Visual C# Express Edition 2008

I usually do the following at office - Set the startup program for the project to System32\dllhost.exe, and set the command line arguments for the startup program accordingly. This used to work perfectly fine, because I was running Visual Studio 2008. However, one of my developers use C# Express Edition and they need to do a similar th...

Error in Properties of .net Project & Designer file is locked.

Designer file is locked and when go to project properties it gives this error. An error occurred trying to load the project properties window. Close the window and try again. The CurrentContext property of the LicenseManager is currently locked and cannot be changed. .net framework 3.5 VS 2008 ...

IronPython asp.net IntelliSense

I'm trying IronPython for asp.net, I got a simple CRUD screen to work. I've read IntelliSense doesnt work for IronPython, but is there any way to get rid of Visual Studio underlining all the lines' starting tokens with blue and a message of "expected declaration"? ...

Visual Studio registry capture utility has encountered a problem

I recently reinstalled my development machine and went from 32 bit Windows Vista to 64 bit Windows 7. I'm running VS2008. Some of my .NET applications still use J#, which now causes problems. The program still runs, but when I want to deploy it (I'm using a setup project to create a .msi), I get this error: "Visual Studio registry capt...

Visual Studio For Database Professionals 2008

Anyone know any a few good references for getting familiar with the SQL Server 2008 Database projects? I am getting a bit overwhelmed and would love to find a walk through for putting this project type to good use. Thanks in advance. ...

Visual Studio 2008 hangs when accessing project via FrontPage Server Extensions

We frequently use Visual Studio 2008 to connect to and edit live web sites using FrontPage Server Extensions. Very frequently Visual Studio 2008 will hang when we attempt to close it or open a new project if we have an FPSE project open. Also, sometimes it hangs when opening a file. This happens on XP, Vista, and Windows 7 (3 separate ma...

How to create a solution file using vs 2008

I have all the files for the deployment listed below : -BIN -CSS -IMAGES default.aspx PrecompiledApp.xml Web.xml The above files can be copy pasted in the webapps folder and default.aspx could be run from the browser. i want to create a solution sln file from this. How to create a solution file? ...