A macro is a rule or pattern that specifies how a certain input sequence (often a sequence of characters) should be mapped to an output sequence (also often a sequence of characters) according to a defined procedure. The mapping process that instantiates (transforms) a macro into a specific output ...

learn more… | top users | synonyms (2)

0
votes
4answers
24 views

iOS Writing Macro detect 3.5 inch or 4 inch display

I am trying to write a macro to determine the device is 3.5 inch or 4 inch. Some thing similar below. #define IOS_OLDER_THAN_6 ( [ [ [ UIDevice currentDevice ] systemVersion ] floatValue ] < ...
14
votes
11answers
3k views

C/C++: How to use the do-while(0); construct without compiler warnings like C4127?

I'm often use do-while(0) construct in my #defines, for the reasons described in this answer. Also I'm trying to use as high as possible warning level from compiler to catch more potential problem and ...
1
vote
1answer
16 views

Macro runs only once

I have a "master" timesheet macro which users open and complete. Upon close I force a macro (in ThisWorkbook) to run and rename the master to a filename held in range save name. This works perfectly ...
0
votes
1answer
17 views

How to take control of a running Word application from another Word

I would like to grab a running word application and insert some text. The VBA/Macro code is run from another separate Microsoft application such as Word or Excel. Is this possible?
0
votes
0answers
14 views

Remove excel document action pane before saving excel workbook

I wish to clear document action pane controls before workbook shutdown. So that next time when I open that workbook action pane will not there. Basically I wish to detach action pane before workbook ...
12
votes
3answers
316 views

C++11 nested macro invocation?

It says in C++ std 16.3.4: The resulting preprocessing token sequence [from a macro invocation replacement] is rescanned, along with all subsequent preprocessing tokens of the source file, for ...
10
votes
2answers
1k views

Opposite of C preprocessor “stringification”

When using C preprocessor one can stringify macro argument like this: #define TO_STRING(x) "a string with " #x and so when used, the result is as follows: TO_STRING(test) will expand to: "a string ...
1
vote
3answers
49 views

Linux Kernel Version Macro Definition

I'm wondering if there is a gcc macro that will tell me the Linux kernel version so I can set variable types appropriately. If not, how would I go about defining my own macro that does this?
1
vote
1answer
16 views

scheduling execution of MS Access DB

I have a MS Access 2007 DB that is being executed via Windows NT scheduler. Basically, I created this entry in Windows Scheduler that is run every night at midnight. ...
0
votes
2answers
18 views

Macros in excel: Find Similarities between two columns and fill the coincidences

I want a macro that search in a column and find coincidences with the other column the fill it with yellow to recongnize it. Column A 1137 Rows Colimn B 537 Rows Fill with yelllow in A the values ...
0
votes
1answer
27 views

bash script works in terminal, not as expected from Mutt (macro)

EDIT: Im not sure why it wasn't working before, but its working fine now. I added an & (to background the script)and <enter> at the end of the macro also, but it works with out it I ...
0
votes
1answer
29 views

Excel to copy realtime data and create a chart out of it

I am very new to VBA programming. I have a excel sheet where real time data is populated to a cell say for example Sheet1.A6 everysecond. I am in need of a macro which will run every 1 minute ...
0
votes
1answer
14 views

Sublime Text 2 snippet substitution RegEx: lookahead not taking accented characters

I'm trying to do a substitution where I need to find spaces followed by a number or a letter, with or without accents, to replace them with an underscore. I currently have this (note the space in the ...
0
votes
1answer
19 views

get in type mismatch with the .find in a IF condition

I am getting a type mismatch error for the following code. Why? If (Range("C:C").Find(What:=last_received, After:=ActiveCell, LookIn:= _ xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, ...
1
vote
1answer
28 views

Saving worksheet to PDF with automated filename

I've written the macro below so that the worksheet in use will print to PDF and the filename to be populated based on the contents of a specific cell. It almost works but for some reason whenever I ...
1
vote
1answer
29 views

Trying to debug memory leaks using Visual Studio 2008 Heap Debugger

We're trying to track down memory leaks in our Visual Studio C++ application. The application is unmanaged. I've been trying to use the VS Heap Debugger, to display file locations of leaked memory. ...
-4
votes
1answer
40 views

Excel macro : search a cell then write formulas

I want VBA macro code on excel to do the following: for example i have column "C" that contains some cells with value and what else is empty so , i want by macro , select column "C" , then looking to ...
0
votes
2answers
3k views

Can I run Excel from a .cmd script with all macros enabled?

How can I run excel from command line / cmd script such that it doesn't prompt if I want to enable macros in the spreadsheet I am running it with?
0
votes
0answers
16 views

Remove old macro and Create a new macro in visio file programmatically (C#)

Hi Requirement is like this 1. Remove existing macro in the visio document. 2. Add new macro in that document. string vdwFileName = @"C:\VisioHeaderXml\HeaderOnly.vdx"; string ...
0
votes
1answer
31 views

Excel VBA: <Unable to get the Activate property of the Worksheet class>

I am downloading the xlsm template file to the user. Once the doc is opened after download, getting "Unable to get the Activate property of the Worksheet class" error in the line ...
0
votes
1answer
52 views

C macro overloading for N-D arrays assignment

There are already many questions/answers about macro overloading. But, I cannot find a way to apply it to my particular problem. I would like to conveniently assign values to my 3D images in C. For ...
1
vote
0answers
9 views

trying to chart only positive values and have code which seems to take values but unable to copy paste… please please aid me

Have a table of values. Some of which are negative, some positive. I want to plot the positive values in a pie chart. I don't want to reorder the column. I have code below which seems to separate out ...
0
votes
0answers
8 views

vba how to make a pie chart of a table of data, EXCLUDING negative values in the range

Thank you for looking at my post. I want to create a pie chart of a table of data. I want it to only include the positive values in the table and ignore/skip negative values. I don't want to sort the ...
-1
votes
4answers
113 views

Defining smallest possible sized macro in C

I want to define a boolean macro in C that uses less than 4 bytes. I have looked into this, and maybe it is possible to define an asm macro, with gcc, that could be less. It is important that the ...
0
votes
1answer
57 views

In C, is there a better way to calculate uncertainty values?

What I've been doing is using a #define UNC (uncertainty) to toggle on and off the functionality for calculating x (the value) and dx (the uncertainty). It works pretty well, but it's not easy to read ...
1
vote
1answer
2k views

How to fetch data from XML file to excel sheet using VBA Macro

I used the following code to fetch data from XML to excel. But the problem is, the results are opened in a new workbook "Book1". But I want to get the results in a specific worksheet in the same ...
0
votes
0answers
23 views

Microsoft Excel Data Connections - Alter Connection String through VBA

I have a fairly straightforward question. I am trying to find a way to alter and change a connection string for an existing data connection in an excel workbook through VBA (macro code). The main ...
1
vote
2answers
21 views

Formula / Macro needed for converting rows to columns based on condition

So here's my dilemma, I'm converting a csv file from one ecommerce store to another, and I need to re-arrange the data. Transpose would work, however I need information to break to a new line after a ...
0
votes
0answers
22 views

skydrive excel web app

I've made a calculator which calculates gross and net value depending on tax. Something like this: Gross | Tax | Net -------------------------- 100 | 10% | is calculated when gross ...
0
votes
1answer
932 views

Docmd.TransferText question

b'h i will be programmatically importing a text file into a table. i have saved the import steps. i will use this: DoCmd.TransferText(TransferType, SpecificationName, TableName, FileName, ...
1
vote
0answers
14 views

How to solve this macro error that only shows up when running in IIS?

I have developed a .NET application that access to an Access database. That Access database has some macros that generate PDF files using the info from the database. The application works perfect in ...
0
votes
1answer
25 views

Inserting blank rows in active cell visual basic excel

When I click a button, I want to add3 rows after a cell which has content. How can i improve my codes below? for the first 3 rows, there are already contents in the cells. i tried to copy the 3 rows ...
1
vote
1answer
51 views

hiding formulas in formula bar

when i used the codes shown below in visual basic, the HYPERLINK part appears in the formula bar in the worksheet. i just want the "TextHere" to display in the formula bar. what addtional codes can i ...
4
votes
6answers
119 views

c define multiline macro?

#define DEBUG_BREAK(a)\ if ((a)) \ {\ __asm int 3;\ } I have defined a macro as above, and try to use it #include "test_define.h" int main() { DEBUG_BREAK(1 == 1); return 0; } ...
0
votes
2answers
32 views

DIR function in vba works diffrent when passing a value directly and by a variable

Hi i have some files ina paticular folder in my system when i use th ebelow code it gives all the files in that folder (passing the path directly) filenm = Dir("C:\Documents and ...
1
vote
0answers
16 views

Sorting strings in word macro

I need help with writing a function which will take an array of strings and sort this into a new array of strings based on only the number characters in the strings (ascending)? say I have the ...
22
votes
1answer
283 views

Can macros be overloaded by number of arguments?

How does this work? How can a C99/C++11 variadic macro be implemented to expand to different things on the sole basis of how many arguments are given to it?
1
vote
1answer
46 views

hyperlink in visual basic excel

what i want in the code is that when i click this cell B3 in sheet1 it will direct me to A5 in sheet2 then vice versa, when i click A5 in sheet2 it will bring back me to B3 in sheet1 ...
1
vote
1answer
27 views

create hyperlink in visual basic excel between worksheets

When I used this formula, Sub IndexingSheets() Sheets(1).Range("B3").Formula = _ "=HYPERLINK(""#" & ThisWorkbook.Sheets(2).Name & "!A5"", ""TextToDisplay"")" ...
1
vote
0answers
16 views

How to display 'Tooltip' for a Group (textbox + images) Assigned to Macro?

Context: I have several groups that I've made in Excel 2007 that each consist of a textbox and image(s) and are each assigned to a macro. What I would like is upon a mouseover/hover of the group, it ...
1
vote
1answer
31 views

Excel: Search for all zip files inside a folder

I have a macro (Loop through files in a folder using VBA?) that looks inside a folder for zip files, but the problem is that the last zip file has an empty string as a name. How can I avoid that ...
0
votes
2answers
58 views

Automatically incrementing an index in the following macro generated structs in C++

I have a template function which looks something like this: template <class T> void foo(T* t) { //do stuff using: someArray[idx]; //idx depends on T } There are a handful of possible ...
4
votes
2answers
86 views

Using the #define macro to standardize class declaration

I'm building a C++ DLL for one of my projects. I am trying to standardize the way that are class are defined. So instead of each time writing: class __declspec(dllexport) ClassName I'm building a ...
1
vote
5answers
85 views

Can I make a #define and use it in a throw?

Can I make something like this? #define N_VALID "is not a valid ID" ... throw N_valid; ... catch(char *message){ fprintf(stderr,"%s",message);}
0
votes
2answers
77 views

Hiding Cells in Excel with a macro

I am desperatly looking for help with my excel macro to hide rows if a certain criteria is met. I have tried to enter all the code previously provided in other question answers and just cannot get the ...
0
votes
1answer
34 views

how do I get my macro to automatically copy data from range of one book to another range in book 2

This is my second day using VBA and excel.I'd like my macro to automatically copy values from the woksheet "Consulting-for Paracon_aax.xls" for a range "E24"to "Q24" and paste the values to a ...
-2
votes
0answers
22 views

Macro to compare “main row”

Urgent help needed Workbook (two sheets with numbers) User manually selects range of cells (numbers in same row but different columns) Example (main selection): c d e f g h i j k l 1 ...
7
votes
5answers
233 views

what's this C++ macro meaning?

I can't figure out what this macro means: #define DECLARE_HANDLE(n) typedef struct n##__{int i;}*n DECLARE_HANDLE(HWND); I have learned from The C Program that "##" meaning connect the ...
-2
votes
0answers
31 views

i want sum or item(5) individually…how to run loop [closed]

sql4 = "SELECT OLTC,OLYY,OLNO,OLSR,OLSRNO,OLMCD,OLQW,SUM(OLSALVAL),odsalprc FROM ORDLAB " & _ "INNER JOIN ORDDSG ON OLTC=ODTC AND OLYY=ODYY AND OLCHR=ODCHR AND OLNO=ODNO AND OLSR=ODSR " ...
0
votes
2answers
21 views

How to make compiler check what's given to SIGNAL()?

In writing a Qt4 app, I clumsily wrote: QObject::connect(spinbox, SIGNAL(vlaueChanged(int)), .... and it compiled, and it ran, but of course the spinbox didn't have any effect. Such misspellings ...

1 2 3 4 5 110