Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
8answers
2k views

Toggle “Break when an exception is thrown.” using macro or keyboard shortcut

Note: The accepted solution doesn't quite work, but it's very close. Is there a macro or keyboard shortcut that will toggle "break when an exception is thrown" without using the GUI. Opening the ...
6
votes
3answers
2k views

How can I make a Visual Studio Macro to attach the debugger to all instances of w3wp.exe?

I'm normally developing web apps, and a surprisingly large amount of my work time is spent doing "Ctrl + Alt + P", sorting by Process Name, and picking w3wp.exe to attach my debugger. To make matters ...
6
votes
5answers
1k views

Clean up unwanted code C#

I got a C# application with Visual Studio 2005. The code has some 300KLOC code, which has been raped over 3 years. When I was going through code found out that lot of unused ...
5
votes
2answers
1k views

Collapse all Visual Studio toolbox regions shortcut

Is there a keyboard shortcut or macro to collapse all regions in Visual Studio's toolbox? (Failing either of those, I'll take an addin that allows this!)
3
votes
1answer
39 views

How to launch VS 2010 so it opens a sln file and selects a specific solution configuration in the environment

I work with a team on a large project developed for multiple platforms. We used to have a separate sln file for each platform so i could chose which platform i want to work on by opening the ...
3
votes
3answers
232 views

Visual Studio 2010 Macro Hangs when launching a Dialog

I have written a Macro which launches a dialog where the user selects a value from a combo box. Unfortunately the dialog box shows and I get an hourglass for between 1 and 20 seconds. There are a ...
3
votes
1answer
123 views

How to open a file quickly in visual studio .net

In visual studio, we can open a file in a #Include statement by right clicking the filename in include statement and then clicking "Open Document". But sometimes, when I want to open a file, I don't ...
3
votes
1answer
106 views

Is there an API Style reference for Visual Studio Macros

I would like to automate some common tasks that I do using Visual Studio Macros but I can't find a decent API reference for visual studio objects accessible through macros. Does such a think exist? ...
3
votes
1answer
261 views

Making a macro to generate a custom show in Powerpoint

I want to make a macro for PowerPoint, to generate a custom show, containing all the slides from my PowerPoint but in random order. How would I do this? I want to be able to run it and create ...
2
votes
2answers
176 views

Interacting with dialogs in VS2010 with the Macro Recorder (using Visual Studio Macro Recorder to enter keystrokes automatically)

In one of my other questions, I inquired about a shortcut to enable a particular feature in the VS2010 IDE. It looks like the only way to make it happen is through the Macro Recorder, which I have ...
2
votes
1answer
437 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 ...
2
votes
2answers
336 views

Visual studio 2008 macro to get source code

I have a macro that opens a solution, connects to SourceSafe and downloads the latest version of each file inside the solution. To this point all works correctly. Now I want to execute devenv.exe ...
2
votes
0answers
215 views

Macros and outputs using build agents for visual studio 2010

I'm trying to get team build and build agents working for our app for the first time. I've run into a few issues with the way we do our project settings which don't work well for build agents that ...
2
votes
1answer
135 views

Can I have a macro in Visual Studio 2005 call a DOS command and redirect the output to a file?

I'd like to have a macro in Visual Studio 2005 that calls a DOS command and redirects the output (stdout and stderr) to a file. Just calling the command and ">" redirecting it will not capture ...
2
votes
1answer
228 views

Can I have a macro run whenever I save a file in Visual Studio 2005?

When I save a file in Visual Studio 2005, I'd like to have a macro also run that updates a copyright (through a regular expression search and replace). I'm not new to regular expressions, but I am ...
2
votes
2answers
2k views

Visual Studio macro: Find files that aren't included in the project?

I'd like to write a macro to crawl through the files in my project directory and find files that aren't included in the project. In playing around with the DTE object, I see that the Project object ...
1
vote
1answer
17 views

Recover Visual Studio 2010 macros from a previos install?

Ill keep it short and simple. I had a OCZ Vertex 100Gb SSD that I had my operating system and programming tools aka VS2010. Anyway the drive failed and Windows went kaput, however I am able to recover ...
1
vote
1answer
22 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 ...
1
vote
0answers
42 views

Which (batch) language to learn for merging sourcefiles?

I'm creating a Greasemonkey/UserScript script. Because of the Greasemonkey sandbox I have to keep everything in one file but at 5k+ lines, maintenance is beginning to become rather difficult. So I ...
1
vote
3answers
84 views

Can I Programatically Modify the IDE's Context Menu's?

I am trying to create an additional menu item for the "Project and Solutions Context Menus>Solution" menu. However, I wanted this context menu to appear ONLY when a certain solution was opened, ...
1
vote
2answers
557 views

Operation aborted (Exception from HRESULT: 0x80004004 E_ABORT) when setting text in a VS2010 macro

Some very simple macros don't work for me in VS2010. For instance if I do: DTE.ActiveDocument.Selection.Text = "123" this will work fine, but if instead I type ...
1
vote
2answers
74 views

Need suggestions for method to format c comment via a keystroke macro

for visualization, pretend the '_' is actually a blank. Consider the following /*! ____This_is_a_comment_about_a_function ____and_its_purpose ____and_arguments ____and_things_of_that_ilk */ What I ...
1
vote
2answers
83 views

Is there a Cut & Paste as New Class File (Macro)?

I'm looking for a free Visual Studio feature, extension or macro. that can help with the following situation. When I prototype I tend to keep all my classes in one file (bad practice I know, but yeah ...
1
vote
0answers
178 views

Visual Studio macro that navigates to file and function of selected text

I work a lot with WPF, and have lots of files in a project which makes navigation sometimes a bugger. I tried to write a macro that helps me at it, but I haven't managed doing so far after struggling ...
1
vote
3answers
387 views

Visual Studio Macro to list Projects instead of solution folders

Using the following code gives me Solution folders instead of real projects. projectName = DTE.Solution.SolutionBuild.StartupProjects(0) For Each project In DTE.Solution.Projects If ...
1
vote
2answers
151 views

“New Scope” Macro for Visual Studio

I'm trying to create a new macro that takes the currently selected text and puts curly braces around it (after making a newline), while, of course, indenting as needed. So, for example, if the user ...
1
vote
2answers
305 views

Why is EnvDTE.ProjectItem.FileCodeModel = Nothing?

I wrote a VSMacro (in VS2010) that parses a solution and adds try and catch statements to cpp files. It's been working fine up until now. I had to reformat my pc and reinstall VS2010 and now it ...
1
vote
2answers
374 views

Visual Studio 2010 Macro to delete SQL files from a database project

I've discovered that in Visual Studio 2010 Professional it is possible to refresh the database for a SQL Server Database Project (This feature is normally only available to the Premium and Ultimate ...
1
vote
1answer
250 views

Count non-whitespace characters for selection in Visual Studio 2010

does anyone know of a tool or extension to Visual Studio 2010 to count non-whitespace (e.g. all characters but not spaces, new lines etc.) for current selection in a document? Nice to have for code ...
1
vote
1answer
116 views

should I include VB macros in source control with my project?

For a C# project, I make use of several Visual Basic macros in Visual Studio. I was just considering that these would be of use to other developers that work on the C# project. The macros so far ...
1
vote
1answer
307 views

Visual Studio Automation: Programatically get a project output directory

I want to programatically get a project output directory in a Visual Studio macro. I managed to get a string of the path (through prj.ConfigurationManager.ActiveConfiguration.Properties and looking at ...
1
vote
2answers
483 views

Find missing references in Visual Studio

I have a huge solution file with lots of projects in it. I suspect that some of the projects that are referenced to by other projects are missing from solution. Is there an easy way to detect missing ...
1
vote
1answer
414 views

Visual Studio macros: WindowActivated handler turns clicks into double clicks

If I add a WindowEvents_WindowActivated handler to my Visual Studio 2005 Macros EnvironmentEvents module, I get a weird side-effect: when I click from one window to another in Visual Studio, that ...
0
votes
0answers
13 views

Visual Studio - Customizing/Hooking into F5 to debug a process after build is complete

Overview -- We use MSBuild to build ourselves an ASP.NET application that copies over our binary code and assets to a different folder. Say from c:\mywebiste c:\publish\website This makes ...
0
votes
1answer
28 views

Custom Macros not showing as bindable to custom buttons in VS2010

I have a few macros that are working on coworkers machines however when I add them in under my macros I am not able to select them from the list of macros to bind a button in visual studio to execute ...
0
votes
1answer
41 views

Converting tabs in leading whitespaces to double spaces in Visual Studio macro

I'm trying to modify a VS macro I found on this site; the macro performs a transformation to a document when it is saved. I need the macro to transform the leading whitespaces such that each tab ...
0
votes
1answer
78 views

DTE.ExecuteCommand(“Edit.NextBookmark”)

using VS2010 ANSWER thanks to Hans (since I'm to lowly to answer my own question for 8 hrs) Sub CreateBreakPoint() Dim doc As TextDocument = _ ...
0
votes
0answers
41 views

Word 2010 - Search string and delete pages

Is there a way to search a string in a word document, and delete the page of string and the next 2 pages ? The string to search is the same, but the contents of the pages to delete are different, ...
0
votes
0answers
5 views

want to create macro for extracting data from multiple worksheet

Worksheet1 Testcase1 aa Testcase2 bb Worksheet2 Testcase1 11 Testcase2 22 FinalWorksheet Testcase1 Testcase2 aa bb 11 22
0
votes
0answers
25 views

Which files from VS2010 unicode style macros need to be checked in?

I just noticed that that I can set the "Storage Format" of my Visual Studio macros from binary to text. Yay! This is source control friendly. However, what was a single macros.vsmacros file is now... ...
0
votes
2answers
55 views

Add a macro to the right-button menu

I would like to add a created macro to the right-button menu. Is it possible? Thanks a lot!
0
votes
2answers
185 views

Visual Studio 2010: use command line in a macro and write the output from the cmd to the output pane

I'm using a macro in Visual Studio 2010 to do some stuff with a .bat. The .bat generate some output text in the Command Line Console. Is it possible to get the output text, to display it in the output ...
0
votes
0answers
40 views

VS2010 macro to reset iis then launch debug

This is my post on stackoverflow. I've gotten a lot of resolutions to previous problems here, so I'm hoping you can help with my current one. I'm working on a website project at work and the way it ...
0
votes
1answer
92 views

Embed an macro to Excel 2007 xml

Anyone know if you can embed a macro in an xml file? I have an xml file that I create with a .net web application and it opens with Excel 2007, but would be nice to attach a macro to it as well. I ...
0
votes
1answer
36 views

Combobox from Visual Studio Macros

When you need to debug a Website that hosts on IIS Express, you usually don't restart it all over again, every time when you need to rebuilt your code. You just attach VS to the process. And the ...
0
votes
0answers
176 views

Visual Studio Macro: How to format xml files?

I derived a small macro script from Visual Studio Macro to Format all Files in a Solution but unfortunately it doesn't work with xml, xaml, config etc. All ProjectItem that are xml-based normally ...
0
votes
0answers
65 views

Is there any way to speed up macro execution in VS 2010?

I have about 20 macros set up, and bound to various combinations of keystrokes. I have noticed that when I start vs 2010, and hit a key to run one of the macros, it takes 12 - 15 seconds before the ...
0
votes
0answers
46 views

Dock a window programmatically in Visual Studio 2008 using Macros

How can you dock a window (e.g. Solution Explorer or Server Explorer) in Visual Studio 2008 using Macros? I tried docking it with the Macro Recorder on and nothing shows up. I tried ...
0
votes
3answers
320 views

Regex for find all start of method lines in .cs files in visual studio

Want to add some console.writeln's to the first line of every method in my class (c#, cs file in visual studio 2010). How to identify using Regex so i can search replace? Before search replace: ...
0
votes
2answers
242 views

How to Write a Visual Studio Macro Event to get user's typed Code?

i'm looking for a way to write a macro event to parse user's code. for example when programmer writes some specific code this event will parse the code line and if matches a regular expression will ...

1 2