When working in VS2008 in a large aspx file the program grinds to halt updating JScript intellisense.
Is their a way to turn this off?
It's not listed in Tools>Options>Text Editor. Already have the AllLanguages.AutoListMembers and AllLanguages.ParameterInformation turned off.
EDIT:
VS2008 did not have sp1 installed. As to why it doe...
Open a file in the Visual Studio binary editor that contains a null byte (0x00), then use the Quick Find feature (Ctrl +F) to find null bytes.
I would have thought I could use a regular expression such as \x00 to match null bytes but it doesn't work. Searching for any other hex value using this method works fine.
Is this a VS bug, 'fea...
I have an online repository with some .h and .cpp files that make up part of a project. I'm trying to check these out and use them in a new project, but am getting errors (C4627 and C1010). All the files have been added to the project (with Add>Existing Item...), and the subdirectories that contain these files have been added to the "Add...
I'm working on Visual Studio 2008, Smart Client + infragistics controls are installed and we have more than 50 User Controls. When opening the Visual Studio "Tool Box", Visual Studio is completely freezing. I couldn't work after that. I have to kill the process and open again. At this point CPU usage is around 50, CPU usage is 1 or 2 whe...
Can I certainly do this ? If this is possible how do we do this ? What language features of C# 4.0 are tightly bound to the CLR of .net 4.0 framework if any? In case if no features are bound to CLR4.0 can we really use C#4.0 in a .Net3.5 application ?
...
I want to be notified when a build has been completed\failed in visual studio and I DO NOT want to use pre\post build steps, I want an external process or VS plugin that will count the number of builds.
So is there anyway to achieve this using something like WMI or other such technology?
I'm not interested in third party libaries, I wa...
I have an issue that means I cannot check in changes even if I resolve the issues.
I have removed a form from the solution then created a new form with the same name. Now when I go to check in the form I get the following error:
Even if I mark all the conflicts as resolved the check in fails with the following error: All conflicts re...
Hi All,
I have the TFS MSSCCI installed, now what? How do I use it to put say like a stored procedure under source control?
Thanks,
rodchar
...
Honestly, I can't word my question any better without describing it.
I have a base project (with all its glory, dlls, resources etc) which is a CMS.
I need to use this project as a base for othe custom bake projects.
This base project is to be maintained and updated among all custom bake projects.
I use subversion (Collabnet and Tortis...
I am learning c++, and I am having issues doing some newbie things. I am trying to create a very small application that takes the users input and stores it into a char array. I then parse through that array and remove all parenthesis and dases and display it. like the following
(325)858-7455
to
3258587455
But I am getting errors
err...
Added AJAX controls to my toolkit as per directions online.
They appear in the AJAX Toolkit tab in the toolbox just fine.
Try to add them to design view and does not work.
Tried selecting the textbox and clicking the smart tag to add the extender but there is not smart tag.
Googled and found suggestion to reset toolbox and re-add AJAX c...
I've looked for this in SO and Google but to date have not found the answer.
Scenario:
In vs2008, open a solution such as the ASP.NET MVC 2 RTM source code:
http://aspnet.codeplex.com/releases/view/41742
It contains 10 projects. For any project, to see
the hidden files, the programmer must in Visual Studio
Solution Explorer click ea...
I've been trying to find official requirements for Silverlight 4.0, but can't seem to find anything.
What I want to know is if VS2008 supports Silverlight 4.0, or if I need to upgrade to VS2010.
The only mention I could find was on this Silverlight forum:
http://forums.silverlight.net/forums/p/156538/350841.aspx
Does anyone know of an...
For one of the solutions, I don't see the Clean Solution option neither in the context menu when I right click on the solution name in the Solution Explorer nor in the Build menu. When I make any changes to the project and debug, VS never hits the break point and I get the "The breakpoint will not currently be hit. The source code is dif...
Hi,
Im trying to implement something given to me however I've come across an error
when using:
[WebMethod]
public DataSet getAll()
{
DataSet isnt recognised. Im guessing I'm missing one of the "using System..." statement from the start but I dont know what it is. I was wondering if anyone could help me out?
Im using Visual ...
In Visual Studio 2008 I know its possible to have one solution with two (or more) projects.
Is it possible OR How is it possible for the projects to share common class files?
For example -> Project 1 has a log file handling class. Can Project 2 reference it?
My hope is to increase code re-use and avoid two copies of the same thing th...
I am trying to debug some homework but I am having trouble with these lines of code
#include "stdafx.h"
#include<conio.h>
#include<iostream>
#include<string>
using namespace std;
int main()
{
char word;
cout << "Enter a word and I will tell you whether it is" << endl <<
"in the first or last half of the alphabet." << endl <<
...
I'm working on a project using Visual Studio 2008 and have moved from the the MVC 2 Preview to RTM version. We would like to use model validation such as:
public class ViewModel
{
[Required(ErrorMessage="UserName is required.")]
[StringLength(10, ErrorMessage="UserName cannot be greater than 10 chars.")]
public string UserN...
Hi,
I have ported a piece of C++ code, that works out of core, from Linux(Ubuntu) to Windows(Vista) and I realized that it works about 50times slower on VS2008! I removed all the out of core parts and now I just have a piece of code that has nothing to do with the hard disk.
I set compiler parameters to O2 in Project Properties but sti...
Here's the deal, I had my website configured as Virtual Directory of my Default Web Site in IIS 7. I could open it in VS.NET 2008 (File > Open > Website) and work with it.
Now I got rid of the Virtual Directory, and created a new website in IIS (localhost:82). Ever since I've done that, I CANNOT open that site in VS.NET. It gives me
V...