2
votes
14answers
309 views
C - the most useful user-made C-macros (in GCC, also C99) ?
What C-macros is in your opinion is the most useful? I have found the following one, which I use to do vector arithmetics in C:
#define v3_op_v3(x, op, y, z) {z[0]=x[0] op y[0]; \ …
0
votes
2answers
17 views
How to create macros/shortcuts in Dreamweaver or Notepad++
I've never made "macros" or anything like that with any program.
I'm moving my php code to use "gettext", so I have to look for all my static text and change it up.
For example, …
1
vote
1answer
19 views
How to make attach to process macro to attach to Native code?
I am using the following macro codeto attach to the debugger:
process.Attach()
Works, fine,
but for some reasons it always attaches to the "Managed Code" (sort of default mod …
1
vote
1answer
32 views
In gVim, is there a way to display a macro list similar to displaying your mappings?
I know there is a way to list mappings via :map (or :imap, :cmap etc.), but I can't find a way to list macros I have stored in my vimrc file (as in let @a = 'blahblah').
Is there …
1
vote
11answers
181 views
Why would a developer use a macro?
Why would a developer use a macro?
What are the advantages and disadvantages to using them?
Where can I find some resources about and how to use they?
2
votes
1answer
19 views
MS Outlook macro to strikeout selected text
The task is to apply strikeout to current font in selected text area.
The difficulty is that Outlook doesn't support recording macros on the fly - it wants code to be written by h …
0
votes
2answers
36 views
Excel VBA pastelink run-time error 1004: Application-defined or object-defined error.
I am trying to create a link from a cell on one sheet to a cell on the other sheet, but when I run it I get this runtime error:
Application-defined or object-defined error.
Here …
1
vote
3answers
130 views
C macro processing
Hy.
I'm thinking about best way to write C define processor that would be able to handle macros.Unfortunately nothing intelligent comes to my mind.
It should behave exactly like on …
-1
votes
0answers
23 views
How to check prices increased or not in one shipment [closed]
for eg:
how to find one item rate increased or not via excel macro
if you know pls send a macro code also
Ref no. qty rate order no. purchase date
MK8113 4 96.12 FP …
1
vote
1answer
81 views
What does Brendan Eich mean when he speaks about adding sugar and macros to JavaScript?
I'm currently reading Coders at Work, and I'm at the chapter interviewing Brendan Eich. It's a little dense compared to the preceding chapters, to say the least. Around page 144, h …
3
votes
7answers
150 views
Java: Is there support for macros?
I am just curious on how people solve this. I often write the same type of code all the time. For instance:
new Thread() {
//...
//...
//...
//Change this line
//.. …
0
votes
1answer
14 views
+150
Word 2007 Macro to insert text
I'm trying to create a macro to insert some text with custom formatting, then change the font style back to what it was before the macro was run. This is what I have come up with s …
1
vote
7answers
124 views
C++ nested macros?
Is there any way, in C++, to define nested macros/constants within a class, in a similiar fashion to nested typedefs, or a method to acheive similiar functionality? The motive is g …
0
votes
3answers
95 views
Beginner at Microsoft Office Macros
Actually, I'm not a beginner. I know nothing about them, though I do have some programming background.
This is the thing: I have a couple of Word documents and an Excel spreadshee …
2
votes
1answer
58 views
Is there a profitable way to record user actions in textarea?
I need to send bunch of commands to the server on timer - like:
put(0,"hello")
del(4,1)
put(4," is around the corner")
so I need to monitor and record all of the user input and …
