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 ...
0
votes
0answers
10 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 ...
13
votes
1answer
61 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
15 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"")"
...
0
votes
0answers
32 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 ...
0
votes
0answers
9 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
22 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
55 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 ...
1
vote
5answers
82 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
1answer
18 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 ...
4
votes
2answers
85 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 ...
6
votes
5answers
216 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 ...
0
votes
2answers
54 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
28 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 ...
0
votes
2answers
18 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
vote
1answer
37 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
...
0
votes
0answers
22 views
Running a Visual Studio macro from within a Unit Test
Is it possible to trigger a macro from within a unit test and get back it's returned value? The macro checks the integrity of certain solution files accessible from the DTE. Using the DTE from within ...
0
votes
1answer
13 views
Excel Macro to prefill online form using IE?
I am in need of assistance. I am trying to write a macro that would take the value in column A and place it on an online form in an input element with no ID but the name ("OldUrl"). Then the macro ...
0
votes
1answer
18 views
Excel Sum Similar Rows via Macros
I found an answer similar to my question on these boards. However, my data is setup differently and I wasn't getting the results I needed.
My data in Excel looks like the following:
ParcelNumber ...
1
vote
0answers
30 views
Opening an MS-Access database from the command line without running any of the startup macros?
Is there a way to open an MS-Access 2003 database from the command line without running any of the startup macros or displaying any errors?
I looked at the command line arguments for MS Access and ...
0
votes
0answers
32 views
Automate Source Data in Excel
I have two sheets in my excel file. One contains a pivot chart("pivot") while the other one contains data("Data"). What I want is after filling up a column from "Data Sheet", the pivot chart will be ...
-1
votes
2answers
29 views
vba macro: Which table my cursor is in?
Writing a macro I found out that I need to skip the table contents and place my cursor right after that, for this I am using a code as
Selection.Tables(cnt).Select
Selection.Collapse ...
0
votes
1answer
33 views
where will I put the codes when button is clicked?
i've created a macro to create a button when the sheet is activated. then i called it using the codes below: But everytime i go to different worksheet then back again to the sheet containing this ...
1
vote
1answer
25 views
do while loop based on a value available in cell (find) in vba
Hi i am writing a code in vb to check a particular value in a sheet, if the value is not available then it should go back to another sheet to take new value to find, if the value is found i have to do ...
1
vote
2answers
38 views
execute macro when cell value changes due to another macro
I have a sheet with two buttons. One button places a value in a cell (E2) and the other button counts that value (in E2) down by 1 every time it is pushed. I want the value in E2 cell to dictate the ...
-1
votes
1answer
44 views
Location of .txt file within an .xls [closed]
Can anybody with Excel knowledge help me? The nomenclature surrounding excel and its macros means I've hit a brick wall investigating this by myself.
In the spreadsheet available here ...
1
vote
1answer
42 views
Qt name collision, but no_keywords not an option
I have a dilemma. In a program I'm writing using Qt, I use a (non-Qt) library that uses a Qt keyword in its headers as a name (the library being pf_ring to be precise, and the name "slots") and so I ...
-1
votes
1answer
37 views
Macro code need advise
My presentation is like this: There are around 500 slides in the presentation, the first slide is an introduction, second slide is for instructions with the action button for the Start_time macro - ...
2
votes
3answers
177 views
Templates from C++ in C
I am trying to recreate some classes from the C++ standard library in C. For example, the std::pair class.
To emulate templates, I used macros of course. Here is an example of how it looks like:
...
0
votes
1answer
56 views
BITCOUNT macro in C
how can I count how many zero bits are in variable?
I must use macro like thist BITCOUNT(x,c) where x is my variable and c is count of zero bits in x
example: X = 00101001 and C = 5
1
vote
2answers
28 views
Visual basic macro- changing the colour of specific text
Im very new to visual basic and macros. what i have been trying to do is create a macro that will look through the whole document and check to see if any of the font is red;if it is red then i want to ...
-2
votes
0answers
19 views
Excel giving an item from a list to multiple users from 1 sheet
I'm hoping someone can help.
I've got a unique problem and I've looked but can't find an answer.
i have upward of 200 users and I need them all to work from a list in order and update the starting ...
0
votes
0answers
12 views
snprintf issue when pass a macro
define a macro somewhere
#define IDENTIFIER "identifier"
passing this macro into snprint()
char buf[SIZE] = {0};
if (snprintf(buf, sizeof(buf), "%08X_%08X_%s.zip", i, j, IDENTIFIER) ...
0
votes
0answers
9 views
Query or Function list for Polarion macros [closed]
I'm looking into creating some Polarion macros, but I'm sorta new to how these macros work to query work items. Where could I find a complete list of the types of functions that it uses, and a ...
1
vote
1answer
19 views
Solaris and Preprocessor Macros
Would someone post the results of cpp -dM < /dev/null from a Solaris 10 or above system?
I'm having trouble locating what preprocessor macros are typically defined. Solaris documentation does not ...
1
vote
1answer
17 views
In Excel, how to scan for Duplicate in Column A. Place info in another sheet
Here is my issue. I have a WorkSheet Named Cost Data
In Column A which is named HEITEM
I have for example
7658798
7513807
789456
7513807
Note:7513807 is a duplicate
In Columns B - AG I have data ...
-4
votes
1answer
47 views
Which of the following implementations is faster?
What I'm trying to do is fill the values of a specific matrix using unknown variables.
Here's the first implementation:
#define PHI(I,J,K) phi[xlength*ylength*(I)+xlength*(J)+(K)] //Macro that calls ...
5
votes
2answers
125 views
Derived Class with no overhead using templates?
I am trying to accomplish the following:
Object.
Debug version of object with extra functionality in functions for tracing purposes.
Now, I currently have a compile-time solution using macros, ...
0
votes
1answer
17 views
Type mismatch when tring to extract the date by calling a function in macro
I am using the below code. I am getting the "Type Mismatch : Error 13" when i am trying to execute it. I tried by putting all variable type (long, double, date, string) but non of them worked out.
...
0
votes
2answers
63 views
How to print macro name in c or c++
How to print macro name in c or c++
eg:
#define APINAME abc
#define PRINTAPI(x) printf("x")
I want to print PRINTAPI(APINAME) and not "abc"
2
votes
3answers
96 views
Call a C preprocessor macro multiple times (through a variable)
I'd like to clean up my assembly code and povide a way to call "NOP" multiple times through a macro:
#define NOP() asm(" nop")
#define NOP_N( N ) \
NOP(); \
NOP(); \
.... call NOP() N ...
0
votes
0answers
29 views
Using ListBox to upload data via macro
I'm currently trying to improve the process of adding a new invoice to an invoice database and attempting to achieve this via a Listbox written in VBA. So far I can get the Listbox and prompts to ...
0
votes
2answers
56 views
Function like macros returning a value
Recently came across following examples which returns a register read __ret but without a return statement
#define READWORD(offset) ({ \
unsigned short __ret=0;\
...
1
vote
0answers
36 views
excel sheet becoming slow and hangs after a code in macro
i have recently added the below piece of code in my macro to sort/filter a sheet and find a particular value and apply some formating based on the value found cell
Sheets("Extract").Select
...
2
votes
2answers
78 views
GoTo <Line number> in VBA
From the VBA help file:
GoTo Statement
Branches unconditionally to a specified line within a procedure.
Syntax
GoTo _line_
The required line argument can be any line label or ...
-1
votes
2answers
28 views
How to fix the Merge macro in my code?
I have a code that sorts and creates different ranged groups of values. I have a column with Metric Tons Per Hour in it that I sort and it groups any values from 6-8 together and creates a new column ...
2
votes
1answer
30 views
1004 error when trying to set name on xls worksheet
I'm trying to create worksheets with name taken from "sheet1" cells, but I 'm always getting 1004 error when executing Worksheets(Worksheets.Count).name = companyName
I tried setting the sheets name ...
0
votes
0answers
27 views
VBA on incoming email in Outlook and appending to subject line
Hopefully this is a fairly easy one, here's what I'm trying to do:
I work for an exam marking board, and we have examiners who email us directly with different queries through the day. We are ...
-2
votes
1answer
20 views
how to convert macro enabled excel to normal one?
My requirement is to enter some values in spreadsheet which has some validations which are done using macros. After saving the document i have to give this as input to other application which accepts ...
0
votes
2answers
129 views
Writing Excel VBA code/macro to populate Powerpoint Text boxes with Excel cell values
I'm attempting to take the value in Excel cells and value PowerPoint text boxes. I don't want to link a PowerPoint table to an Excel spreadsheet because the spreadsheet is constantly changing..values ...
