0
votes
4answers
109 views
[C++] Enum declaration inside a scope that is a parameter of a macro.
Hi,
I am trying to create a macro that takes a scope as a parameter.
I know, it is probably not a good thing etc etc.
I was trying this and got the problem that preprocessor looks …
0
votes
5answers
113 views
C Programming: Preprocessor, include files from macro
If I could find a way to do something similar to this, I could cut out hundreds of lines of code in my application, and dramatically increase maintainability. Anyone have any ideas …
0
votes
2answers
17 views
How do you delete rows in spreadsheet where condition met and location of condition unknown
I need to find the word Overdue" and Due in a spreadsheet but the column they appear in will be variable as will the number of records (rows). i need to delete all rows that do NO …
0
votes
2answers
20 views
how to get the RGB value of a pixel inside the Form workspace.
im creating a macro and need to check some pixels to make sure the mouse clicks the right spot. How wold you go about checking the RGB value of pixels in c#?
1
vote
2answers
18 views
can you delete a macro when a file is copied but preserve it in the original?
I have a workbook called Expenses Sheet.xls located in R:\LGS\FINANCES\ losts of people refer to it and often save a copy so they can manipulate the data. There is an autosave ma …
0
votes
3answers
54 views
Excel Help Needed: insert row with total under each group
i need to insert row with total and a page break under each group
e.g.
http://i1012.photobucket.com/albums/af250/nsy2204/question.jpg
(i cant post images so i posted the link..)
…
2
votes
2answers
89 views
taking java method names as function arg in clojure
All,
I want to create a function that takes a symbol representing a java method and applies it to some object:
(user=> (defn f [m] (. "foo" (m)))
When I execute this, I get …
2
votes
1answer
179 views
Why are #ifndef and #define used in c++ header files
I have been seeing code like this usually in the start of header files
#ifndef HEADERFILE_H
#define HEADERFILE_H
and at the end of the file is
#endif
I am confused about the …
1
vote
3answers
43 views
eval during emacs lisp macro expansion
How can I fix the simple macro foo in (elisp)Eval During Expansion?
None of the followings work:
(defmacro foo1 (a)
`(setq (eval ,a) t))
(defmacro foo2 (a)
`(setq ,(eval a) …
0
votes
5answers
84 views
Removing macro in legacy code
I have a lot of legacy code using macro of the form:
#define FXX(x) pField->GetValue(x)
The macro forces variable pField be in the scope:
.....
FIELD *pField = ....
.....
in …
0
votes
1answer
101 views
Help need Pls… excel macro: compare and copy between worksheets
Heres mine problem
If cell H of worksheet A = cell E of
worksheet B (contain words) and If
cell J of worksheet A = Cell H of
worksheet B (contain numbers) and If
cell K …
0
votes
1answer
23 views
Is there any way to add a specific category and flag an email in VBA?
I normally go through my email and flag anything for follow up and categorize for:
Phone Call
Email
Talk To
Setup meeting
Is there any way in a Outlook VBA macro, I can (in a s …
0
votes
2answers
61 views
excel macro help needed… to match if e.g. 500 to -500 then..
in a if statement, how do i match a positive number with a negative one
e.g. if 500 match with -500, cut and paste
one solution i thought of is changing one of the column by *-1 b …
0
votes
2answers
41 views
How can I call a VBA macro that is defined in a different file?
The situation is the following:
Macro Foo is defined in File foo.vss
Macro Bar is defined in File bar.vsd.
Bar() is at some point supposed to call Foo().
Is that possible?
If it …
1
vote
3answers
50 views
what is (__ASSERT_VOID_CAST (0))?
From assert.h file in C:
#define assert(expr) (__ASSERT_VOID_CAST (0))
I wonder what is (__ASSERT_VOID_CAST (0))? I try to find its implementation but could not find anywher …
