A macro is a series of commands and instructions that you group together as a single command to accomplish a task automatically. Macros allow you to automate repetitive actions. Visual Studio includes the Macros integrated development environment (IDE), which is used solely for creating, ...
0
votes
0answers
2 views
VS macro for RunToCursor functionality with ignoring breakpoints
I tried to create a simple macro to ignore breakpoints when doing RunToCursor.
But for some reason the RunToCursor call doesn't work at all ("Operation not supported") and breakpoint states aren't ...
0
votes
1answer
53 views
Complex Macro- Creating tree relations
I need help creating a macro that will perform the following function, or something similar (I am not sure whether it is even possible to create such a macro) :
I have 60,000 + rows of data with two ...
0
votes
0answers
10 views
Using a referenced project's TargetPath in a post-build task
Using Visual Studio 2010, I need to have a C# project run a post-build event and reference the outputs of several assemblies built by other dependent projects. In WiX projects, I can use macros from ...
3
votes
3answers
59 views
Is there a way to record and replay coding in visual studio 2012?
I'm going to do demo based presentation. So what I want is prerecord(not a video record) my demo and replay while the I'm doing the presentation. Pre-record and play as in save code segments and ...
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 ...
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
3answers
70 views
Accessing Visual Studio macros from source code?
Visual Studio has macros like $(TargetDirectory), $(OutputPath) etc.
In my source code, I want to specify a relative path for the loading of a file from a folder a few levels below the ...
0
votes
1answer
67 views
Troubles switching from VC++ Directories to User Macros for Boost
Good day,
I have previously successfully used boost in Visual Studio 2010 by using Include and Library Directory paths under VC++ Directories in project settings. However not long ago I have been ...
0
votes
1answer
150 views
Access excel VBA variable inside IE.navigate
I need to pass a variable inside a IE.navigate call in excel VBA. For example, my sample application will be something like this.
Enter the first name: "SACHIN"
Enter the last name: "TENDULKAR"
I ...
0
votes
1answer
80 views
Macro's “incomplete type not allowed” error?
I have defined a macro having two parameter as given below:
#define DO_LIST_HEADER(Titem,MAX) typedef struct {\
int count;\
Titem array[MAX];\
} TOrderedList##Titem;\
\
void ...
1
vote
1answer
105 views
DTE.Solution.SolutionBuild.Build no longer working in VS 2010
I have a VS macro that I've been using for years to build my projects automatically. I'm currently trying out VS 2010 to see if I like it (my regular version is 2005), and one segment of the macro is ...
0
votes
3answers
436 views
for each loop in excel macros vba jumping alternate rows
I have the below code in vba. The rows in sheet5 from columns a5 to a20 are:
a5=Sweden
a6=Spain
a7=Russia
a8=Italy
a9=Germany
a10=Finland
a11=Norway
a12=Switzerland
a13=France
a14=Belgium
...
0
votes
1answer
9 views
How to reference a solution from macro
I want to use this macro to format my code:
http://www.kodefuguru.com/post/Format-Solution.aspx
I guess I need to the change line:
Dim sol As Solution = DTE.Solution
My solution appears in ...
0
votes
0answers
164 views
VBA/Macro : How to read Autocorrect entries from a file other than Normal.dotm (e.g oldNormal.dotm)
As said,
Normal.dotm: Stores formatted AutoCorrect entries, AutoText entries, keyboard shortcuts, menu customizations, custom toolbars, styles, macros.
I am particularly interested in formatted ...
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 ...
0
votes
2answers
132 views
Visual Studio 2010 Macro to Create folders in a C# project
We have a big C# project in Visual Studio with multiple applications under it. Developers add their application in the project by creating folders manually. I was wondering if we can automate this ...
0
votes
0answers
25 views
Why is BuildEvents_OnBuildBegin not fireing?
I have added
Private Sub BuildEvents_OnBuildBegin(ByVal Scope As EnvDTE.vsBuildScope, ByVal Action As EnvDTE.vsBuildAction) Handles BuildEvents.OnBuildBegin
MsgBox("my test")
End Sub
to ...
0
votes
2answers
1k views
How to disable/re-enable macros in Excel?
I have been using a macro on an excel document that zooms in charts present in any sheet. The problem is, if I want to edit a chart, I must click it, triggering the zoom.
For this particular reason, ...
1
vote
0answers
38 views
Getting Bookmarks Programmatically in Visual Studio
I am using VS 2010 and I want to do something quite simple. Write a Macro / Add-in which will
Save the bookmarks to a file (e.g. "myfile.bookmarks")
Load bookmarks from a file.
I just cannot ...
0
votes
1answer
119 views
Is there any macro to get the root directory of the TFS Sourcecontrol in Visual Studio?
Is there any built-in macro to obtain the TFS Sourcecontrol Root directory in Visual Studio?
For example just like $(ProjectDir), I would use $(TFSSourceControlRoot) or something like that?
The ...
1
vote
1answer
128 views
External Excel lib for C# to run macros
Do you know any external MS Excel library for C# (it should work without MS Office installed on machine) which has possibility to run macros?
It's possible to run it with ...
3
votes
1answer
1k views
Visual Studio 2012: How to perform a conditional post-build event
How do I perform a conditional post-build event? Specifically, I would like to only execute the post-build event command line for the debug release but not for the release build.
I did not see any ...
3
votes
3answers
399 views
Automatically Add Regions to Code in Visual Studio
My team absolutely loves using regions, and with that in mind it's pretty much become a de-facto standard in our code. I recently came to realization that I'm sick of writing or ctrl+c / ctrl+v'ing ...
1
vote
1answer
434 views
Excel Macro Multi Dimension Array Value Deleted after IF function
I met with some problem with Excel Macro.
I am trying too copy values from various cells of a worksheet into an array for use of comparing with other worksheet's cell value later.
However, I am ...
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
91 views
How to implement a check-in dance feature in Visual Studio 2012 with TFS 2012
We want a feature we feel would save our team a lot of time.
We have a build server that performs gated check-ins but it is old and heavily burdened. If we can avoid putting load on our build server ...
1
vote
0answers
70 views
Determine at compile time if VC++ is express version
I develop an open source library. It has optional functionality for MFC. Now the MFC stuff is compiled out for other compilers by checking if the macro _MSC_VER is defined. But users of VC++ Express ...
0
votes
1answer
106 views
Get a list of all variables and parameters in a Visual Studio project
My goal is to create a Visual Studio extension, macro, or addin that would give the user a list of all their variables and parameters. The user would then be able to rename any given variable in that ...
0
votes
0answers
43 views
creating canonical name column from two columns [closed]
I have to access a database table with three columns:
Org
Parent Org
Canonical Name
The first row is TOP row. I want to set canonical name column as "Parent Org--> Org".
Is there any complex SQL ...
3
votes
3answers
204 views
Multiplying an integer with a currency in Excel VBA
In my excel table i have one row (5th row) as number of items and another (6th row) as the price of the items. For example i want to multiply 200 with $56.50 but I am having a problem with this ...
0
votes
0answers
52 views
Clicking the unclickable window [closed]
I have been looking into making a macro type program that copy a string from an open application that contains a editable text field, edit the string, then paste a responce of sorts. For some reason, ...
3
votes
1answer
580 views
How to reconcile the lack of Macros in Visual Studio 2012
My organization has extremely restrictive and rigid rules our code must comply with in order to obtain certification and accreditation. For the last decade or so we have developed nearly a hundred VS ...
3
votes
1answer
194 views
Getting word message box contents using c#
I have a c# application that is opening a word document, running a .bas macro, and closing word. All of that works fine. The macro generates 2 message box dialogs with the result of the macro. I want ...
1
vote
0answers
68 views
Build solution only if old in VS Macro IDE
Using the Visual Studio Macro IDE, how can I tell if a build is old or outdated?
I currently have my F5 remapped to run a custom macro that will go into debugging mode and attach to the browser ...
1
vote
3answers
91 views
How to Display °C Symbol in Excel from database?
I am using a excel File which has a cell contain °C Symbol with other string (Ex.. -40°C
)
And i am trying to get the value of that cell using
Dim strIn As String
strIn = Range("B2").Text
...
0
votes
1answer
57 views
Under what conditions does the stringizing preprocessor operator add an _T?
The following code doesn't compile in my VC++ 2010 project:
define MY_MAJOR_VERSION 20
define OLESTR_(str) L##str
define MOLE( STR ) OLESTR_(#STR)
define MAKE_STR(STR) MOLE(STR)
...
0
votes
0answers
72 views
Searchable excel using macros
I've an excel document that have around 300 row, with 6 column for each row, I'm wondering if Macros can help hiding all the row and give a search field for the user, once the user enter text, it will ...
0
votes
0answers
17 views
Visual Studio Macro to Place a Control
Is there a way to take a control from the toolbox and place it in Design View programmatically using a Macro? I'm working with Visual Studio 2010.
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
54 views
Visual Studio VB macro to listen for paste event?
I wrote a macro that checks out a file (from P4) whenever the user types in the file. It's awesome. Problem is, I'm handling the TextDocumentKeyPressEvents.BeforeKeyPress event which apparently does ...
0
votes
1answer
162 views
Is there a VS2010 macro to remove all comments in an XML file
I would like a Visual Studio macro to remove all comments from a given XML file. For example, given this:
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Comment 1
-->
<config>
...
0
votes
0answers
29 views
How to resolve C++ type from Visual Studio Macro?
Is it possible to resolve a type, such as a return type or parameter type from a Macro in Visual Studio 2010?
Example:
"LPWSTR" -> "wchar_t *"
"LPOVERLAPPED" -> "OVERLAPPED" -> VCCodeStruct
...
30
votes
7answers
8k views
Alternative to Macros in Visual Studio 2012
I use Macros extensively for ViewModel properties in Xaml development. I use them even more in WCF to generate Message & DataContract Properties.
To my disappoint the macros I've built aren't ...
0
votes
1answer
177 views
Excel Formatting Report Using Macros
I am looking at formatting a report which has been automatically generated by a 3rd party system. As we have no access to the Database directly i would like to build a Macro which would format the ...
0
votes
0answers
55 views
How to replace a variable with another using preprocessor directives in VBSCRIPT
If I have an object, X, with its property "number" and "count", like the following:
X.number
X.count
Now I only have X.number, and I want to change this to X.count without manually changing the ...
0
votes
0answers
44 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
2answers
118 views
Create visual studio macro in console application
I will like to create visual studio macros in c#. What am I doing now is to create the macros in a class library then execute them from vba. the problem is that I cannot debug the macros because I ...
9
votes
6answers
567 views
Debug custom dll that is being referenced in visual studio macro
I previously asked: Add dll reference to visual studio macros
the idea of creating the macros in my language (C#) makes it easier to create the macros. The problem is that I cannot debug the dll
To ...
0
votes
1answer
348 views
Add DLL reference to visual studio macros
I need to create a lot of macros in visual studio the probelem is I do not know visual basic that good.
What I have been doing so far is:
Create the algorithm "Code" I plan to use on C# on a ...
0
votes
0answers
160 views
Automatically change Visual Studio 2010 Source Control Provider (using Macro/Plug-in)
It is a common scenario for me nowadays to work on projects that use different source control providers. For example, SVN, Mercurial, etc.
I feel the plug-ins should automatically detect the source ...
