0
votes
0answers
29 views

Running a Visual Studio macro from within a Unit Test

Is it possible to trigger a macro from within a unit test and get back it's returned value? The macro checks the integrity of certain solution files accessible from the DTE. Using the DTE from within ...
-3
votes
1answer
22 views

All the errors are coming when I am trying to call this customized macro [closed]

define ERROR_CHECK_SERVER(x)\ ({\ if (globalError) {\ MM_MSG_PRIO(MM_GENERAL, MM_PRIO_ERROR, x);\ stop = true;\ break;\ }\ }) code @ line no. 131 status = ...
1
vote
0answers
32 views

Using a #define in build output name in Visual Studio

I'm using Visual Studio 2010 for a C/C++ project. As far as version numbers go I like to have a revision and build date; for example "Project 1.0 R2 Apr 21 2013". I display this at startup, so I can ...
1
vote
0answers
16 views

Am I able to make an addin that includes a set of macros that it will use?

Before I talk about what I am trying to get done, here are all my details on what I have done: I have made a Macro Project named "XSMacros" Here is what I'd like to do: I want to make a VS Add-In have ...
1
vote
4answers
152 views

Asserts and unused variables in Visual Studio 2010 SP1

I use the code below for assert in "release", have for some time with no issues ever. Then along came Visual Studio 2010 Pro SP1, and things went south, as also happened to mr. Krunthar. Problem is, ...
0
votes
1answer
42 views

Insert and run nuget Package Manager Console command through macros

I would like to create a macro in Visual Studio 2010 which: -opens the Package Manager Console -runs a command in it The macro recording tool only generates the code for the first issue: ...
0
votes
3answers
94 views

In visual studio, how can I write a macro that will insert the date into a comment?

My question is as exact as it is. I am wondering if it would be possible to insert the date or the date and time into a comment without having to manually write it out. But what I would really like to ...
0
votes
0answers
216 views

Visual Studio 2010 remote debugger macro not attaching to IIS process as expected

I have a macro written in VS2010, which is supposed to attach to the IIS processes on a different machine via the VS2010 Remote Debugging Monitor, but all is not going as expected. I think at a ...
0
votes
0answers
69 views

Cannot debug in Visual Studio Macros IDE - missing pdb location

I have a VS 2010 Macro that I need to debug, but when I start to debug with the separate Macros IDE open, with a breakpoint in the code contained within, either I get the infamous 'Breakpoint will not ...
2
votes
0answers
98 views

Why might the Q_FOREACH macro break VS2010 intellisense?

I have a c++ project in VS2010 with Qt 4.7.4 and I frequently have problems with IntelliSense (as we all do...). A specific problem is that sometimes the function body (in the .cpp file) can't be ...
1
vote
0answers
26 views

visual studio 2010 c++ collapse a specific macro

I have a lot of code that contain a macro used for logging LOG_MACRO and I want to collapse this in all my solution to better understanding the code. Do know any visual studio options or tools that I ...
0
votes
1answer
28 views

VS addin for quickly viewing preprocessed or assembly output

I'm searching for a one-click way to inspect preprocessed or assembly output. It's just tedious to open file properties, change the respective setting, compile, go to the obj directory and open the ...
1
vote
1answer
102 views

how to declare common #define for several projects under the same solution?

I have several projects under the same solution . I want to add this to all my .rc files: #define STR(x) #x #define STRING(x) STR(x) #define TESTER STRING(MACRO1.MACRO2) MACRO1 = 9 MACRO2 = 10 ...
2
votes
2answers
148 views

Define macro “disallow copy and assign” in CMake for Visual Studio 2010

An existing C++ multi project uses CMake 2.8 in QT so far. We want to continue maintaining it in Visual Studio 2010. I generated Visual Studio projects in CMake with option -G "Visual Studio 10" but ...
0
votes
0answers
23 views

How to get the number of documents displayed in a VS2010 text pane

When programming C++ in Visual Studio 2012, I like to use a two-column text pane layout, where I keep headers in the left and implementation files in the right pane. Using tools such as Visual ...
1
vote
1answer
85 views

Visual Studio UserMacros (and general property sheet) Syntax?

I've scoured around and haven't been able to find any kind of a decent reference guide on Visual Studio property sheets. Most of what you can do with them cannot be done through the UI, so I've got to ...
0
votes
1answer
34 views

Create Template to add text to document

I have one template which have macros. Macros will add some text to document when document will open. when I attched this template to any document, macros of the template also work for that document. ...
0
votes
1answer
85 views

Turn off pretty listing in visual studio

I have a macro/addin where I need to disable the Vb.Net pretty listing temporary. Tried to record a macro but it only shows that I opened the options dialog. Also tried Dim props As ...
0
votes
1answer
79 views

How to convert an old form class with embedded designer code to separate partial classes?

I saw this thread but the manual way takes forever and the macro is good but every time I run it all my event handlers get erased by Visual Studio when it parses the designer file. Also the macro is a ...
0
votes
0answers
202 views

Macro shortcut (Ctrl+Q, Ctrl+C) doesn't work when 'Pending Changes' view has focus and a source file is selected (Visual Studio 2010)

I have a macro which compares a file from Pending Changes view with the latest version on Source Control. Procedure: first I select the file, then I run the macro, and this works fine. I tried ...
2
votes
1answer
85 views

Macro VA_ARGS to VS2010 VC

In GNU-GCC with Linux this is working #define sprintfc(string, ...) sprintf(string+strlen(string), ##__VA_ARGS__) Is there definition with same effect for Visual Studio 2010?
3
votes
2answers
155 views

Overloading a macro

I'm trying to overload a macro by the number of parameter. Of course I can't actually overload the macro. I've tried using variadic macros to choose the right macro (using the fact that if ...
0
votes
1answer
226 views

Attaching to Specific Instances of the IDE

when I do: // Get an instance of the currently running Visual Studio IDE. EnvDTE80.DTE2 dte2; dte2 = (EnvDTE80.DTE2)System.Runtime.InteropServices.Marshal. GetActiveObject("VisualStudio.DTE.10.0"); ...
0
votes
1answer
244 views

CWA(dll,api) - C++ macro?

I recently found some interesting macro while browsing random sources around the internet: #define CWA(dll, api) ::api Someone can explain me what is that macro and what else it ...
4
votes
3answers
874 views

How to put double quotes in VS2010 post build step

I'm trying to create a post build file copy step in VS2010 which handles path macros when they have embedded spaces. I've tried surrounding the copy commands in double quotes but I get error from ...
0
votes
2answers
93 views

How to find a project in the tree?

Am very noob with VBasic but here we go. I want to locate a project reference inside my solution in a VStudio 2010 environment using the macros. This proj will be used to add new items, use its path ...
0
votes
1answer
117 views

Problems with Swenson's Timsort implementation while sorting structs

I found Swenson's C implementation of Timsort: https://github.com/swenson/sort mentioned in one of the older SO questions. I encountered two problems: 1)To use it I need to define SORT_CMP macro ...
1
vote
0answers
224 views

How to set vs2011's default macro like $(vcinstalldir)

when i load the vs2010 projects I notify that Vcinstalldir is different for different vs2010 projects . I want to know where and how can I set or change those macros value like Vcinstalldir .
1
vote
1answer
250 views

Create Copyright Macro for Visual Studio 2010

I have recently written a macro for visual studio 2010 in the macro IDE, I have saved the macro and it is in my current active macro project in my solution. when going to add the macro to my tool bar ...
2
votes
3answers
750 views

Creating macro using __LINE__ for different variable names [duplicate]

Possible Duplicate: Creating C macro with ## and LINE (token concatenation with positioning macro) I am trying to use the __LINE__ macro to generate different variable names. I have a ...
1
vote
2answers
323 views

How Do I Run a Visual Studio Macro for All Files of a Certain Type Within a Specific Folder Within a Project

Visual Studio 2010 macro question: I have a macro that I can execute within another macro to make changes to .aspx files like so: DTE.ExecuteCommand("Macros.Abba.Module1.AbbaZabba") I would like ...
1
vote
1answer
69 views

Add Code to the EnvironmentEvents module

I want to be able to add code/macro to the Environment Events module. How do I do such a thing? This was a post where I heard of such a thing but I wouldn't know where to start on how to do it. ...
0
votes
3answers
98 views

Trying to make a C++ (MFC) code snippet easy to reuse . What are the options?

I have found myself repeatedly writing the following function : // This function will try to find the 'item' in 'array'. // If successful, it will return 'true' and set the 'index' appropriately. // ...
3
votes
1answer
180 views

How to use “ReSharper.ReSharper_SilentCleanupCode” in a vs2010 macro?

I am trying to build a macro that formats all modified files before saving them. Public Module ReformatAndSave Sub SingleFile() DTE.ExecuteCommand("ReSharper.ReSharper_SilentCleanupCode") ...
1
vote
0answers
130 views

use macro token in pragma result in incorrect substitution

I'm trying to use macro with "pragma include_alias" in VS2010, but I got a odd compiling warning which means the substitution is incorrect. Here is the code: 18 #define ...
0
votes
1answer
21 views

Is there a simple way to create a custom VS action for personalised comments?

Feel free to massively re-word this question. Basically, I'm currently stripping out a huge portion of a very large framework - this involves A LOT of commenting. So I can find all of this later I am ...
0
votes
1answer
71 views

VS 2010 macro: CopyLocal to “null”

Using macro, one can change value of CopyLocal in references properties, to true or false. If not already presents, it adds a <Private> node to the .csproj file. But how to remove this ...
1
vote
2answers
693 views

Writing to current document with a visual studio macro is extremely slow, suggestions to speedup?

Generally I've no complaints about the speed of Visual Studio, but if I write a macro that writes out about 100 lines of code, it takes 1-2 minutes to complete. That doesn't sound right. Is there ...
0
votes
1answer
384 views

Replace text with control markup using Visual Studio macro

I'm trying to replace some text in an ASPX page with a literal control using a Visual Studio (2010) Macro, but it seems that the control markup is being modified on replacement. I've got an ASPX page ...
1
vote
0answers
110 views

How to Write a Visual Studio Macro to “Collapse to Definition” without Collapsing Comments?

One of the thing that drives me nuts is not being able to see comments when I collapse to definitions (or use other code-folding options in Visual Studio). Before people start suggesting the ...
0
votes
1answer
244 views

switch statement with macros in C with visual studio 2010

I'm trying to do something like this #define GETCART1 0; #define GETCART2 1; void helper(int *Array,int length,int counter, int option){ if (length > counter){ switch(option){ ...
0
votes
1answer
284 views

C++ - Automatically moving a function from header to cpp file

I am using C++ in Visual Studio 2010. Has anyone found a macro or utility to move a member function defined in a header file into the implementation file? For example, virtual void SetName(const ...
1
vote
0answers
75 views

VS2010 macro to open a file in a second tab group

When working in c++ I like to have the .h file open in one tab and the cpp open in a second. While its not hard to do this manually I would like to write a macro to do this for me ( Yes I'm supper ...
9
votes
4answers
221 views

Anyone know how to Paste as Comment in VS2010?

This is a micro optimization that I'd have in my ideal IDE - the ability to paste from the clipboard directly into the editor as a comment. The idea is sometimes I feel like I lose entire seconds to ...
1
vote
1answer
209 views

How to change the Caption of the Command on the toolbar from a Macro in VS2010?

From a macro I am accessing a command that is on the toolbar: Dim name As String = "Macros.MyMacros.MyMacros.ToggleExceptions" Dim cmd As EnvDTE.Command = DTE.Commands.Item(name) How do I now ...
0
votes
2answers
164 views

How to write a Macro to add a ; to every Line in Visual Studio

I want to build a macro which adds a ; to every line end, which hasn't already got one and is not empty or a { or }. I use C# in Visual Studio 2010 Professional so I probably need a VB Macro. I need ...
2
votes
1answer
631 views

Start new instance on Visual studio 2010

In my VS2010, I have a "Solution" which contains 2 projects. Test (my default project) and "Db" (a dll called/used by Test) I've mapped CTRL-F5 on "Start new instance" for debug purpose. If my ...
0
votes
1answer
215 views

Visual Studio 2010 macro recording not picking up startofline-firstcolumn presses

In Visual Studio 2008 I would regularly record a macro to (for example) take a list of class member declarations and turn it into a list of property definitions. Using Visual Studio 2010, the macro ...
1
vote
2answers
197 views

How do I record a Visual Studio macro to set Options settings?

I've just tried to record a macro to help me switch word-wrap in editors on and off quickly, but all the macro records is DTE.ExecuteCommand("Tools.Options"), which leaves me with a big, dumb open ...
0
votes
2answers
116 views

removing m_ prefix from variable names

Initially we planned to have old convention of having m_ prefix for class variables. But now requirement has come to replace all the m_VaribaleName to this.variableName, i.e. remove the m_ and make ...

1 2