0
votes
1answer
13 views
latex command reflection
Hello *,
I have the following use case: A table have a section, subsection or subsubsection heading like:
\section*{Table name}
\begin{tabular*} ...
\end{tabular*}
Because the table …
0
votes
1answer
47 views
Force Whitespace in C Macro?
I've got the following Macro to define a new function following a special naming scheme:
#define CREATE_HOOK_STUB( func ) void ##func_STUB() { /* some code*/ }
However, the preprocessor always …
0
votes
2answers
40 views
Macro too big to run, keeps ‘not responding’.
Hi I have now managed to write my macro but the whole thing stops responding, just a guess but i presume it is because it is asking to check too much data? I have about 3000 rows (but have even tried …
2
votes
1answer
67 views
Please refactor my macro in Scheme
I am learning hygiene and I tried to make a simple for loop in Scheme. I want to support three kinds of constructs as shown in example below
(for i = 1 : (< i 4) : (++ i)
(printf …
0
votes
1answer
34 views
Record Keyboard Macros in C#
How do I set my application to record keyboard macros. Like Shift-Alt-I would open Internet Explorer. I know that this feature is avaliable in Windows, but I don't think it's very good. I have a …
0
votes
2answers
25 views
Excel Macro help on SQL select remove column limit-Logged in!
Hi, Sorry I have just created an abccount and lost the thread for the last query I just placed. Anyone know how to link it back up with my openid? Query below.
This is really another question linking …
3
votes
3answers
115 views
Can I redefine a c++ macro for a few includes and then define it back?
I am using both the JUCE Library and a number of Boost headers in my code. Juce defines "T" as a macro (groan), and Boost often uses "T" in it's template definitions. The result is that if you …
3
votes
15answers
447 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
5answers
100 views
[C++] Map functions of a class
Hi!
Before I was trying to map my classes and namespaces, by using static calls I succeded and now I need to map the functions of my classes because they will be used dinamically.
Firstly I was …
1
vote
8answers
115 views
Properly handling platform specifics (unix/windows) in C?
This question is intentionally very generic and I'm not much of a C programmer although I dabble here and there. The following code is intentionally vague and probably won't compile, but I hope you …
0
votes
2answers
19 views
Assign rights to folder VBA
Hi ,
I use the below code to assign rights to the folder this works fine when i create a folder on say "C:/Test" and run the code it works fine without any issues but once i try the same with the …
0
votes
1answer
20 views
batch concatenating of png images to single file.
Hi,
I want create texture atlas(matrix of images) from multiple images.Is their any applescript that can create image matrix.
2
votes
5answers
134 views
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 so far but it is …
1
vote
11answers
192 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?
0
votes
1answer
55 views
Copy and paste cells if Duplicate columns , Excel Macro
Hi, I am not very techi-but I have been recording and editing basic Excel Macros for a little while. I have found a few results which almost match my issue, however I am struggling to adapt it so I am …
