0
votes
2answers
9 views
What is the current state of the art in developing MSFT Office macros in a NON-VBA language?
Long ago writing VBA macros for MSFT Office was part of my job.
Now it looks like I may be traveling down that road again, and I have not touched MSFT Office for anything serious in years.
Is VBA …
0
votes
3answers
51 views
C Debug Print Macros
in C, what is the proper way to define a printf like macro that will print only when DEBUG symbol is defined?
#ifdef DEBUG
#define DEBUG_PRINT(???) ???
#else
#define DEBUG_PRINT(???) ???
#endif
…
0
votes
0answers
16 views
Macro not in the list after loading the add-in.
I have a created a macro show() and saved it as display.xla and open a new workbook and added the display add-in. But when i went to Tools->Macro->Macro.. its not the list, But if i type …
0
votes
1answer
8 views
Is there a crystal reports API in visual studio that I can use to manipulate rpt files using a macro?
I'd like to programmatically manipulate my rpt files using a macro or add-in within Visual Studio 2005. What I want to achieve is the ability to automate updating the custom functions in my reports, …
1
vote
2answers
278 views
using .netrc with sftp
I've some existing scripts wherein am using ftp + .netrc.
I want to switch to sftp now but it seems it doesn't support macros / .netrc.
Is there any other alternative?
Please help.
0
votes
1answer
156 views
Komodo Edit: Running macros via keybinding versus toolbar
Question: Is anyone out there familiar enough with Komodo Edit to shed some light on this macro? I need to figure out how to do buffer text selection in a macro when it is invoked via the tool panel.
…
0
votes
2answers
20 views
Concat Macro argument with namespace
I have a macro, where one of the arguments is an enum value, which is given without specifying the namespace scope. However somewhere inside the macro I need to access it (obviously I must define the …
0
votes
2answers
129 views
Using shoulda macros with RSpec
I'm trying to use the shoulda macros within RSpec and am having some problems.
I've done the following:
spec_helper.rb:
require 'shoulda/active_record/macros'
Spec::Runner.configure do |config|
…
55
votes
60answers
6k views
What is the worst real-world macros/pre-processor abuse you’ve ever come across?
What is the worst real-world macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?
Please add a short snippet or story if it is really entertaining. The goal …
1
vote
2answers
19 views
Change the Target Framework for all my projects in a Visual Studio 2008 to 3.5
I have a just converted a Visual Studio project from 2005 to 2008 to take advantage of the .NET 3.5 Framework features. My solution contains approximately 80 projects and I want to set the Target …
0
votes
0answers
11 views
creating macros in intellij
I am trying to create a macro that takes a selection of text and runs some find/replace on it using a regex. I have recorded this macro in intellij, but when I run it, all I get is the find/replace …
1
vote
5answers
1k views
Best AutoHotKey macros?
Hi, I use AutoHotKey for Windows macros. Most commonly I use it to define hotkeys that start/focus particular apps, and one to send an instant email message into my ToDo list. I also have an …
0
votes
0answers
11 views
Can Anyone help with Scripting for Autohotkey to work with Handbrake?
Hi everyone,
I'm trying to make an autohotkey script so I can drag and drop movie files into autohotkey for it to put it into handbrake's queue to be converted into iphone format.
I just started …
11
votes
25answers
2k views
Are C++ Templates just Macros in disguise?
I've been programming in C++ for a few years, and I've used STL quite a bit and have created my own template classes a few times to see how it's done.
Now I'm trying to integrate templates deeper …
1
vote
5answers
151 views
What is your favorite/most productive macro that you have used in Vim ?
I'm trying to know how vim experts use macro's in vim for day-to-day coding - I have a lot of custom shortcuts/mappings that I use frequently , but haven't come across any good ideas of macros.
It …
