I have a VS.NET 2008 project. Is it possible to check for classes that are not used anywere in the project? With FXcop I can find unused variables and unused code, but not unused classes.
Hi
I've started with a VS2010 Dynamic Data project, but now I want to add other MVC type pages etc.
How can I get "new MVC item" options to appear in AddItem menu?
i.e. this seems to appear in an MVC created project, but if I started with a DD project how can I make the option appear
Whenever I am adding New TableLayoutPanel programmatically in a Panel by setting DockStyle.Top, the last added TableLayoutPanel goes at the top most position of the Panel and the TableLayoutPanel added first comes down.
Example:
If I add like
1
2
3
4
5
It adds as
5
4
3
2
1
Please help me to fix the problem. The TableLayoutPanels should…
Hi.
I am not able to get Resharper profile a unit test, although I have dotTrace installed on my machine. Actually, the dotTrace button in VisualStudio is also greyed out.
the VisualStudio AddIns menu list dotTrace as started.
VS2008 sp1
Windows 7 64bit
R# 4.5
dotTrace 3.1
I tried Restarts, Reinstall, Re-whatever.
Has anyone experienced…
I've got a full layout designed using 960.gs and am wanting to use it in a ASP.net website but i'm getting warnings such as:
"Warning File 'css/Reset.css' was not
found."
"Warning File 'css/Text.css' was not
found."
"Warning File 'css/960.css' was not
found."
"Warning File 'css/Base.css' was not
found."
I've…
I have a class like this:
class OBJ{...};
class A
{
public:
vector<OBJ> v;
A(int SZ){v.clear(); v.reserve(SZ);}
};
A *a = new A(123);
OBJ something;
a->v.push_back(something);
This is a simplified version of my code.
The problem is in debug mode it works perfect.
But in release mode it crashes at "push_back" line.…
i try to learn SOLID prencibles. i writed two type of code style. which one is :
1)Single Responsibility Principle_2.cs : if you look main program all instance generated from interface
1)Single Responsibility Principle_3.cs : if you look main program all instance genareted from normal class
My question: which one is correct usage?…
Hi,
I engadged a problem with inherited Controls in WinForms, and need some advice on it.
I do use a base class for items in a List (selfmade GUI list made of a panel) and some inherited controls that are for each type of data that could be added to the list.
There was no problem with it, but I know found out, that it would be…
(This question is narrower in scope than this question I asked earlier.)
Say I have a DataGridViewComboBoxColumn, and want to switch the style of the ComboBox control between DropDownList and DropDown (mainly for the text field editing capability). I'd like to do this on a row-by-row basis (at the DataGridViewComboBoxCell…
Greetings.
I'm working on a windows forms application that interacts with a previously created SQL database. Specifically, I'm working on implementing an "UPDATE" query.
for (int i = 0; i < dataGridView1.RowCount; i++)
{
string firstName = (string)dataGridView1.Rows[i].Cells[0].Value;
…
I have created the following vsct file xml.
<?xml version="1.0" encoding="utf-8"?>
<CommandTable xmlns="http://schemas.microsoft.com/VisualStudio/2005-10-18/CommandTable" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<Extern href="stdidcmd.h"/>
<Extern href="vsshlids.h"/>
<Extern…
I have a DLL that was written in C++ and called from a C# application. The DLL is unmanaged code. If I copy the DLL and its .pdb files with a post build event to the C# app's debug execution dir I still can't hit any break points I put into the DLL code. The break point has a message attached to it saying that "no…
Hi everyone,
We need to install ASP.NET MVC on several developers machines with VS2010. Unfortunately the only files I can find in the Microsoft Download Center are labelled as ASP.NET MVC installer for VS2008.
Can someone please point me in the direction of installer for VS2010, or can the VS2008 one also work…
Hi
I have a working Windows Forms app (split into an EXE and a few DLLs). Now I've been asked to look at creating another app (MyAppLite) that has only a very small subset of the functionality. Think of it as similar to MS Word Viewer vs. MS Word.
Everything that I need to build MyAppLite is contained in the…
I have a tab control on a form, and a couple different tabs have save buttons on them. Once the user saves data (via SQL statements in VBA), I set the .enabled = false so that they cannot use this button again until moving to a brand new record (which is a button click on the overall form).
so when my form…
A common file may be used in one more projects and such files will be shown as a linked file in VSS database. Actually such files are kept at a unique location within the database. Is there a way to get the original storage location of a linked file ?
I've got an application that has a bug right now, but we're unable to update the end-user to get the fix out. What a possible workaround would be is to change the working directory to the application's install directory, but from what I can tell, there's no way to do that outside of the program itself. Is…
I'm creating a line chart control, and I need to write (or better say draw) the axis names and axis values.
I found DrawText and TextOut functions, but the text they show is flickering and don't know how to set the font and text orientation (I will need vertical text orientation as well as horizontal).
…
Which message that I should send in order to make my custom made IE7 toolbar button to become 'disable state/gray color/unclickable'.
So far, I have tried, TB_HIDEBUTTON.. Im still searching for the exact toolbar messages.
Help me.
Error:
Unable to read data from the transport connection: A blocking operation was interrupted by a call to WSACancelBlockingCall
Situation
There is a TCP Server
My web application connects to this TCP Server
Using the below code:
TcpClientInfo = new TcpClient();
_result =…
I just grabbed vs2010 release from msdn and I wanted to find out if anyone had any issues installing this on a machine that had mvc2 installed already for use with vs2008.
I am trying to add an Embedded Resource I am doing it like it is written in
following tutorial http://msdn.microsoft.com/en-us/library/e2c9s1d7%28VS.80%29.aspx
But I cant the Persistence property from Linked at compile time To Embedded in .resx
It always gray at Linked at…
Hi, I hope someone can help me. It's a pretty newbie question, I'm afraid. I have an image inside a repeater, and I would like to change its IMAGEURL based on parameter that's being passed to it.
<asp:Repeater ID="Repeater" runat="server">
<HeaderTemplate>
…
I have a crystal report consisting of several pages. Each page consists of a several fields that are populated from database.
Suppose the following example :
Name : aaaaaa
Education Background:bbbbbbb
Age:cc
In my case the Education Background's details (bbbbbbb here) may…
As far as I know, VS2008/MSBuild do not suport multithreaded compilation of C# projets. I don't know if VS2010 supports it. Do you know a 3rd party product or an open source projet that does that?