0
votes
0answers
14 views

How to make visual assist x hightlight macros in project setting “preprocessor definitions”?

I set a macro definition in my project's property "C/C++ -> Preprocessor -> Preprocessor definitions", and have also chosen the corresponding build configuration and platform. Yet visual assist x ...
0
votes
0answers
34 views

Get local variables with VS macro/addin

I'm trying to do an automatic refactoring to rename variables according to a defined name style. I found this macro: Resharper or CodeRush - global rename which was a pretty good point to start at. ...
0
votes
3answers
90 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 ...
2
votes
2answers
112 views

Predefined Macros for function name __func__

I am attempting to build a debug log message function that records the file, line, and function of of where the log message was called from. #define DEBUG_PANIC(p) CLogging::Debuglogf( "Debug marker ...
0
votes
1answer
27 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
122 views

Macro Variable of VStudio in TeamCity not set

I have to use a Pre-Build event in Visual Studio in order to either copy a file from template version to compilable version, or to call a tool to translate the file - depending if I am in Debug or in ...
0
votes
1answer
63 views

How do I access projects in SolutionFolders with VS macros?

I know that I could iterate over the projects of a solution with macros (more or less). But the top level of my SLN contains of five solution folders. I only obtain these five folders, but not their ...
0
votes
0answers
17 views

How could I modify VS variables with a macro?

Say, I'd like to override the setting for $(OutDir) for all projects in the current solution with a certain value. Is this possible with a macro? I'm unable to find an information about how these ...
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
44 views

Visual Studio Macro: Changing the Positions of WPF Controls

I would like to change the position (Canvas.Top/Canvas.Left) of WPF controls like textboxes and labels using a macro. How would I do this ? Is there a way to get an instance of each control and edit ...
1
vote
0answers
123 views

visualstudio addin move macros

VS.Net 2012 get rid of macros. So I need to import my VS2010 macros to AddIn or Extension for using them with VS2012 There are many samples in the net, how to create buttons in toolbar with some ...
0
votes
0answers
41 views

Accessing path macros (e.g. $(IncludePath) ) from a visual studio macro

How can I access path macros such as $(IncludePath), $(NMakeOutput) from a Visual Studio Macro ? What I want to do is execute the solution output with some parameters and redirect its output to the ...
0
votes
0answers
42 views

Call Visual Studio Macro from Eclipse?

I have a python script which uses c++ funnction that I wrote in c++. The python script is written and launched from the Eclipse debugger (because I may want to set breakpoints with eclipse as well as ...
2
votes
1answer
190 views

Visual Studio macro to navigate to T4MVC link

I use T4MVC and I'm happy with it and want to keep it - it keeps down run time defects. Unfortunately, it makes it harder to navigate to views and content (a.k.a. Views and Links in T4MVC) though. ...
0
votes
0answers
52 views

How can I load the value of the selected object into a Visual Studio macro?

Is there any way to load the value of the object represented by the currently selected text into a Visual Studio macro? For instance, in the following screenshot, during a break in debug mode, I'd ...
0
votes
1answer
249 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 ...
1
vote
2answers
316 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
68 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. ...
5
votes
1answer
532 views

Run macro until the end of the file in Visual Studio

Is there some AddIn or extension for Visual Studio 2008 that will allow me to run Macro until the end of the file? I really hate holding CTRL+SHIFT+P and waiting until end of the file is reached.
0
votes
1answer
255 views

How to use cout in macro c++

I have following macro for measuring time in header file: #define TIMER_START(x) double ___timer__##x = (double) getTickCount(); #define TIMER_END(x) ___timer__##x = (getTickCount() - ___timer__##x) ...
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
0answers
241 views

Visual Studio Find and Replace Macro

I need to move some code around in VS using a macro. The code between the [source][/source] tags needs to go inside the [destination][/destination] tags. It has to work throughout an entire solution. ...
2
votes
0answers
97 views

How can I call a macro with multiple arguments via the Visual Studio IDE?

In Visual Studio 2010, if a macro has one argument, you can call it from the Command window, the Find box, or the Immediate window, by typing >Foo bar where Foo is the macro name and bar is a ...
5
votes
1answer
410 views

Is there a way to generate multiple files through one template/macro with Resharper?

When I write my APIs for applications I always follow a set pattern (who doesnt!?) that looks like this: User (Folder/Namespace) User.cs UserDao.cs UserDaoFactory.cs UserService.cs ...
1
vote
2answers
689 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
383 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
1answer
43 views

Debugging and difference search after refactoring in Visual Stduio

I am involved in a c++ refactoring project and sometimes there are differences resulting, when there should be none. Currently, what I do is basically setting a breakpoint at some place, and then go ...
2
votes
2answers
348 views

Macro issue, with multiple statements

#define RUN_SOME_STUFF(...) { \ int x = 0; \ printf("[INFO] Do some stuff here ... %d\n", ...
0
votes
2answers
148 views

VS macro. Getting the title (not name) of the process to attach to

I'm modifying one of the attach to process macro's for VS 2010. I often have multiple instances of iisexpress running. I usually run them via batch start command and specify a title - so whenever i ...
2
votes
1answer
1k views

Visual Studio macro to find a string and delete matching lines

In my Visual Studio (2010 C#) solution, I need to delete all lines of code that contain a matching string pattern. For example, I want to delete all lines that contain ".BackColor = ...
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
0answers
161 views

Killing child processes when debugging ends

I have a C++ project in Visual Studio 2008 that, when executed, spawns another process (due to a GUI library that is being used). However when I exit the main process (either using Ctrl-C or by ...
1
vote
1answer
569 views

Visual Studio: Macro for checking configuration type (exe/dll)

Is there a macro I can use for checking the current configuration type in visual studio? Depending on the current setting I'd like to either include a main or dllmain function: #IFDEF ...
0
votes
2answers
392 views

Can I disable the generation of obj in the same directory for _every_ project I have?

I'm tidying my projects. And I found the way to remove the object folder with adding: %TEMP% In my projects. But I want somehow to make this global setting or to auto delete my obj dirs after a ...
1
vote
1answer
227 views

How can you sort tabs in Visual Studio 2008 by file type?

I have been trying (without much luck) to write a macro for Visual Studio 2008 that will sort opened .cpp and .h files into two tab groups, placing headers on the left tab group and .cpp files on the ...
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 ...
11
votes
2answers
376 views

What makes this header file slow VS2005 to a crawl? (IntelliSense exonerated?)

I was experimenting with a C++ project using the Compile Time Hashing technique I found here. The macros work as expected, and the compile time is reasonable, but the 64 recursive macros seem to ...
1
vote
2answers
196 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 ...
1
vote
2answers
321 views

Does Visual Studio have a namespace-sensitive macro-substitution option?

What I'm talking about is to find a way to avoid the macros in <windows.h> from polluting whatever project I'm writing. Excerpts from windows.h: #ifdef UNICODE #define LoadImage LoadImageW ...
2
votes
1answer
60 views

Enforce compiler settings via macros

I am developing a framework which requires very strict compiler settings. Every time a new project is started and uses the framework, it must adhere to the settings (for example, warning level 4). Is ...
0
votes
1answer
198 views

Visual Studio macro: Get path of previous/next document

How to get the path of previous active document & previous/next document on tab bar? 'Get current active document Dim file1 As String = DTE.ActiveDocument.FullName 'Get previous active document ...
1
vote
0answers
286 views

I need a Visual Studio macro to split one CS file with multiple classes into multiple files with single classes

I believe that this type of functionality is built into JetBrains ReSharper, which I've actively decided not to use (oh stop with your surprised face and gasping). Nothing against ReSharper, I just ...
2
votes
1answer
417 views

Visual C++ 2010 project properties macros - how to edit?

I need to change the value of macro TargetExt. How can I do this? I can't find a way to do that from IDE (??!) and those macros aren't stored in project file either.
2
votes
1answer
1k views

How to Program a Visual Studio 2010 Macro For accessing and editing specific Project files?

i want to write a macro to put selected text to a specific XML file in my project. for example my path is ~/Pages/Dictionary/en.xml. and i want to put selected text from an aspx.cs file to en.xml ...
0
votes
1answer
321 views

Problem with Visual Studio macro to remove a project from a solution

I have recorded a macro with me selecting a project and removing it from the solution, resulting in this code: ...
3
votes
2answers
408 views

How Do I Copy Comments When Generating an Interface From a Class In Visual Studio?

In Visual Studio I can use the Refactor -> Extract Interface... option to generate an interface from public methods on a class. However this does not copy across the XML comments and I end up spending ...
1
vote
1answer
1k views

Getting the macro value of project's TargetPath via DTE

I need to get the absolute output path of the project's assembly via DTE. I tried doing this using this method, where I would access the OutputPath property, combining it with the assembly name, ...
0
votes
1answer
161 views

How to get .Net build macros in NANT build file?

I tried to make my .Net project to run a post-build script. This script is to trigger a NANT build. So, in the Build Events, I wrote the following line: "%ProgramFiles%\Nant\bin\NAnt.exe" build ...
0
votes
2answers
597 views

Add item to Error List in Macro

I want to notify the user of the macro if something went wrong during the execution of the macro. I was wondering if it would be possible to add an item to the Visual Studio error list? It is ...
3
votes
3answers
867 views

Retrieve output target name as a string at compilation time in C++

I have a project which compiles in multiple platforms... Windows, Unix, Linux, SCO, name your flavor. I would like to stuff the output target's name into a variable in the project source code (the ...

1 2 3 4