I want to disable ReSharper 5 when debugging - it slows things down more than I'm willing to take.
Is there an automatic way to do this?
The next best thing would be a toolbar button to manually enable/disable it.
On the Tools -> Options -> ReSharper page there's a comment that the VS command Resharper_ToggleSuspended would do just...
How can i write text field via ",". i try to write rext script with ListDictionary:
ld parameters: a,b,c,d
i need : Text=a,b,c,d
void InsertDataToSql(ListDictionary ld, string TableName)
{
string Text = "insert into ENG_" + TableName + " VALUES(";
string AddText = String.Join(ld, ', ');
...
I'm creating a snippet and I need the current class name to be replaced automatically instead of typing it.
Right now it's:
using Danel.Nursing.Scheduling.Actions.DataServices.Interfaces;
public class $NAME$DataService : AbstractDataService<$NAME$>, I$NAME$DataService
{
public $NAME$DataService(IRepository<$NAME$> ...
How can I backup my code bookmarks? (Visual Studio 2008/2010) I would like to share them with my team...
...
I'm trying to use a WSDL Top Down approach to create a Web Service in Visual Studio 2010.
I used Eclipse's WSDL GUI Editor to generate a WSDL file (CalculatorWSDL.wsdl) which uses the SOAP method for communication.
I also used wsdl.exe to generate a C# file (Calculator.cs).
Now, I'm not sure what to do next. How do I actually use the ...
I wrote a small tool which sits in my solution (as a project), which runs in the background and helps me debug my main project.
I'd like to run the tool with a macro but I haven't found how to get the build path and execute it in the background.
Any VB macro experts ?
...
(Hope to be non OT)
Hi, i'm a little exasperated about running vs.net 2008 on an acer aspire with an intel t2350.
I know, this hardware is not the "last" and the best we can find on the market. So i'm thinking to buy a new notebook.
For your experience, which type of processor i can buy ?
I found, here in italy, acer notebook between ...
Hi All.. I use this method to compile C++ file in VS. But even i provide the correct file it returns false. Can any one help me...
This is class called CL
class CL
{
private const string clexe = @"cl.exe";
private const string exe = "Test.exe", file = "test.cpp";
private string args;
public CL(String[] args)
{
...
Is there any way to convert Visual Studio project from 2008 to 2010 from shell? I need to make it during continious integration process.
...
Hello!
I am right now reorganizing my project and what recently was a simple application now became a pair of C++ projects - static library and real application.
I would like to share one precompiled header between two projects, but face some troubles with setting up the .pdb file paths.
Assume my first project is called Library and b...
i try to start multi Thread but i can not it returns to me error: Cross-thread operation not valid: 'listBox1' thread was created to control outside access from another thread was.
MyCodes:
public DataTable dTable;
public DataTable dtRowsCount;
Thread t1;
ThreadStart ts1;
void ExcelToSql()
{
...
Hi all i want to store data in excel sheet that present in outlook email body.
As i send email to get contact person name, phone no and email id of more than on client to each sales person in table column.
They revert in information in same manner ( in each column). this time i copied all data one by one mail.
I want to store these d...
I am very new to the ADO Entity Framework, and I'm looking for the best practice.
Here is the scenario: I have a database with a Person table and an Address table. Person has a foreign key referencing the primary key of Address, an auto-incrementing int. First, I've created an ADO Entity model with VS 2010, and sure enough the relat...
How do you get a list of all new files added to a visual studio project and checked in to TFS? I've tried using TFS sidekicks and view history, but they only show changesets which you have to open up to see the details. I'm simply after a list of new files in a particular branch. Thanks
...
In one of the existing code of AVR , I have seen the use of MISCCTLSLib.String . Can anyone please provide me some information about this. Thanks
...
I know there are other questions regarding this subject, and I've looked at this question, but I'd like to see a little bit more discussion and information on both sides of this - is it a better practice to add a project to a solution and reference the project, or to add a reference to the .dll?
...
We want to only break in a certain thread. Any idea how to do that? I can't seem to find a way to break on that condition.
I should have been more specific in the text. As the title suggests, I would like to break on the context switch into the thread.
...
I am looking for options to get our vast collection of DB objects across many DBs into source control (TFS 2010). Once we succeed here, we will work toward generating our alter scripts for a particular DB change via TFS build.
The problem is, our data architecture group is responsible for maintaining the DB objects (excluding SPs), and ...
I've inherited some C# code that contains about a thousand lines of source that I need to modify, transforming it from this:
newDataRow["to_dir"] = comboBox108.Text;
To this:
assetAttributes.Add("to_dir", comboBox108.Text);
The lines occur in various places throughout the application in groups of 40 or 50. Modifying each line by ha...
Does VS 2010 support association class ? I can't see it.
Seems nobody knows what an association class or what ?
...