What are "directoryentry" and "directorysearch" controls in Visual Studio 2008? How do they work? What are there real-world applications? What about their properties?
I hit control + Scroll lock, control + break, and control + every other key on the keyboard.
I have a feeling I am going to see this error in Visual Studio 2050.
Does anyone know how to resolve it when it occurs?
Is there a way to configure visual studio to limit the characters on aspx page to a certain number of characters?
I tried setting the character limit on Formatting and Validation on aspx page. but that didnt work.
Very often I hear: use a profiler and unit test. How do I do that? I would be glad if someone would provide either links to websites with tutorials or recommend a good book. I'm using Visual Studio 2010 Ultimate.
I'd like to build an MSI installer that installs a managed DLL and makes it accessible to users from Visual Studio's "Add References" menu in Solution Explorer. I believe I am supposed to add a key into the Windows registry but I cannot see how to tell the VS project for the MSI to do this at install.
How is this done and where should I look for tutorials on this kind of thing?
OK, see the numbers? I can barely see them because my Visual Studio 2010 theme has the backround as almost-black, and the numbers show up in the default color, which is black. I can't figure out which setting changes the color for a number in a .sql file. Does anyone know?
Hi,
I am creating a setup project using Visual Studio. I want to reboot the system after the installation completed successfully.
I want it one time effort. I do not want to modify the setup each time using any external tool/ utility before delivering it to client.
Can I tweak the setup project itself?
How Can I do that?
Hello,
Googling nor binging "VC++ What's new C++0x" gives me nothing that tells me what is new.Is there an official page at msdn or something similiar that contains the information for VC++ 10? I've seen such for C#,there must be one for what I'd enjoy to read.
If not, please list the new features available in Visual Studio 2010 for VC++.
We have succesfully built our TFS 2010 infrastructure and the first VM using Visual Studio 2010. Now I have a very simple question. How I can move a solution from our existing TFS 2008 to the new one 2010?
Is there any tool included in TFS?
What is the easiest way of pulling an excisting method out of it's class and into a new class using Visual studio 2010 / Resharper?
Edit: I use Resharper version 5.
Under the visual C++, we have " hash_map" and "hash_set". In g++, we have " stdext::hash_map" and " stdext::hash_set". Is there any difference in terms of their respective performance or other factors?
As far as I know some company will use Devexpress to speed up the UI design
some company might use the AssistX .
another question:
is there any plugin which can help to keep a eye on our company 's code convention? If someone don't follow the convention, visual studio will warn him ?
Say that I'm writing a test and my caret is here (indicated by "|"):
[ExpectedException(typeof(InvalidOperationException|))]
In Visual Studio 2010, I'd like to press some shortcut that would take me to the next line so that I could start typing "public void Etc()".
Right now, I need to press
Right arrow
Right arrow
Right arrow
Enter
Which is too many key presses IMO. Is there a VS2010 / ReSharper shortcut to aid this operation?
When I add a control to a form, visual studio assigns various of the properties of that form a value of null in the auto-generated designer code.
I don't want the designer to make the redundant assignment (the value is already null).
Can anyone tell me how to prevent it?
example
MyControl has property
public SomeClass MyProperty
{
get { return m_MyValue; }
set { m_MyValue = value; }
}
designer then autogenerates the following:
myControl1.MyProperty = null;
I did a git merge and ended up with a file like that looks like this:
class member extends item{
/********CONSTANTS**********/
const is_flaggable = true;
const is_commentable = false;
const is_ratable = false;
const table = 'member';
<<<<<<< HEAD
const table_about = 'mem_about' ;
const table_to_about = 'mem_to_about' ;
const table_hobbies = 'mem_to_hobby';
=======
const table_friendship = 'friendship';
const table_about = 'mem_about' ;
const table_to_about = 'mem_to_about' ;
const table_hobbies = 'mem_to_hobby';
const table_friendship_id = 3;
>>>>>>> my-copy
In this file there are many blocks like this. Is there a visual tool to help me look at this file and pick and choose the changes I want? Most of the diff tools I found are for looking at two files.
We are trying to integrate visual website optimizer into a site of ours that uses Code Igniter.
The problem is when we go into the VWO control panel to look at stats and previews nothing seems to be working. In the previews panel, all of them come up as code igniter error pages that say "The URI you submitted has disallowed characters."
I have researched some solutions to this and have tried changing the regex in system/config to allow more characters, all characters etc and I am still having the problem.
Any known issues or problems trying to integrate VWO and Code Igniter? This definitely seems to be a url issue but I can't nail it down.
How can i download all directory from server recursively. I use WinINet and this problem solve very hard. I interested there is some easy way that download files and folders from ftp on visual-c++?
I need to monitor a directory which contains many files and a process reads and deletes the .txt files from the directory; once all the .txt files are consumed, the consuming process needs to be killed. How do I check if all the .txt files are consumed using C++?
I am developing my application on Visual Studio on windows platform.
I have a debug .exe file that i want to run on other machines that don't have MS Visual Studio 2008 installed on them. How can this be done? The release option doesn't work as the application does not function correctly when build in release (not sure why).
At the moment I'm getting a message saying "This application has failed to start because the application configuration is incorrect".
An ideas?
Cheers.
When I try to run a new TestMethod on an existing TestClass in Visual Studio 2010 (by right-clicking on the method name and choosing Run Tests) the test method does not execute.
After a restart of VS, the problem has gone.
Am I missing some refresh thing, or is right-clicking even the correct way of executing a single test method?
The question explains it all.
I have different classlibraries but I would like to compile them into one general DLL.
Is this possible?
I'm using .NET 3.5 with visual studio 2008.
cheers,
M
Can anyone help me how to get (or log) all URLs accessed by web browsers in a computer. Together with its response time?
Note: visual C++ will be the Programming language to be use and this will run under windows platform.
Hello,
i looks for pseudo graphics lib for C++ under Visual Studio, lib like in TurboVision in Borland Turbo C++ or NCurser.. Or can i do it with standart c++ libs ?
Thanks.
I keep getting class undefined error from Visual Studio with my C++ code.
My file looks like this:
namespace myProject;
scope myProject{
class FreeFormWindowsWidgetWindow : public WindowsWidget{
// shell
}
}
But when I put FreeFormWindowsWidgetWindow in the same file as my other classes, it sees it. It doesn't seem to see anything in this file.
How can I fix it and keep FreeFormWidgetWindow in its own file?