active questions tagged macros - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:43:26Z http://stackoverflow.com/feeds/tag/macros http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816945/record-keyboard-macros-in-c 0 Record Keyboard Macros in C# Mohit 2009-11-29T22:04:05Z 2009-11-29T22:07:54Z <p>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 textbox control and a button that says "Record keyboard Macro".</p> http://stackoverflow.com/questions/1192960/visual-assist-macros 0 Visual Assist Macros ufukgun 2009-07-28T09:27:37Z 2009-11-28T12:59:36Z <p>Do you have any visual assist macros that you write and you want to share?</p> <p>it can be very useful on coding.. </p> <p>people who use Visual-Assist knows that..</p> http://stackoverflow.com/questions/1042210/how-can-i-write-a-visual-studio-macro-to-perform-an-extract-class-refactoring 1 How can I write a Visual Studio macro to perform an Extract Class refactoring? turboneat 2009-06-25T04:37:34Z 2009-11-27T16:05:51Z <p><strong>I'm trying to build a macro for Visual Studio 2008 that behaves thusly:</strong> (Extract Class Macro)</p> <p>I highlight some text in the currently open document and call the Macro (using a keybinding or whatever).</p> <p>The macro runs "Project.AddClass" for the current active project, allowing me to specify the Class name.</p> <p>The macro adds the text I originally had highlighted in the other document into the newly-created class file, and removes the text from the original file.</p> <p>The text is added to the new file inside the new class body, i.e. inside the opening and closing braces.</p> <p>I've been tinkering with it, but I can't get a handle to the created class document.</p> <p>Any help will be much appreciated.</p> http://stackoverflow.com/questions/1803534/assign-rights-to-folder-vba 0 Assign rights to folder VBA francisf 2009-11-26T12:58:40Z 2009-11-27T11:48:47Z <p>Hi ,</p> <p>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 folder "C:/Documents and Settings" i get an error .</p> <p>Here is the code its a VBA code done on a word document.</p> <blockquote> <p>Dim intRunError, objShell, objFSO,strHomeFolder<br> strHomeFolder = "C:/Documents and Settings"</p> <pre><code> Set objShell = CreateObject("Wscript.Shell") Set objFSO = CreateObject("Scripting.FileSystemObject") If objFSO.FolderExists(strHomeFolder) Then intRunError = objShell.Run("%COMSPEC% /c Echo Y| cacls " _ &amp; strHomeFolder &amp; " /e /c /g everyone:F ", 2, True) End If MsgBox intRunError </code></pre> </blockquote> http://stackoverflow.com/questions/1808008/can-i-implement-code-snippets-at-runtime-in-vb 0 Can I implement code snippets at runtime in vb? SM 2009-11-27T10:41:02Z 2009-11-27T10:46:38Z <p>I need to port an old Clipper app to vb.net. It relies heavily on user-written macros and indeed would be almost impossible to create without them. As VB is interpreted, I am sure it must be possible to implement code that the user has entered, but I have no idea how to do so!</p> <p>For example, I might have a text field txtMacro, into which my user enters "iif(mid(txtA,2,3) = "ABC", "alphabet", "no alphabet")". I would like to have code in my app like this:</p> <p>strResult = @txtMacro</p> <p>where @ is some method of implementing the code in txtMacro.</p> http://stackoverflow.com/questions/1807775/excel-macro-help-on-sql-select-remove-column-limit-logged-in 0 Excel Macro help on SQL select remove column limit-Logged in! Keziah Dorman 2009-11-27T09:53:53Z 2009-11-27T10:02:28Z <p>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.</p> <p>This is really another question linking with the question before. I have an issue where I have a code written however it will only let me select 22 columns then comes up with 'too many line continuations' if I try to add another one. Does anyone know how to extend this-I have about 100 columns to add on for this formulae, and need to copy over another 100 which don't need 'checking'.</p> <p>Code</p> <pre><code>strSQL = "SELECT a.[A], " _ &amp; "(SELECT Max([Serial]) FROM [Data$] b WHERE b.[A]=a.A) As Serial, " _ &amp; "(SELECT Max([B]) FROM [Data$] b WHERE b.[A]=a.A) As B, " _ &amp; "(SELECT Max([C]) FROM [Data$] b WHERE b.[A]=a.A) As C, " _ &amp; "(SELECT Max([D]) FROM [Data$] b WHERE b.[A]=a.A ) As D, " _ &amp; "(SELECT Max([E]) FROM [Data$] b WHERE b.[A]=a.A ) As E, " _ &amp; "(SELECT Max([F]) FROM [Data$] b WHERE b.[A]=a.A ) As F, " _ &amp; "(SELECT Max([G]) FROM [Data$] b WHERE b.[A]=a.A ) As G, " _ &amp; "(SELECT Max([H]) FROM [Data$] b WHERE b.[A]=a.A ) As H, " _ &amp; "(SELECT Max([I]) FROM [Data$] b WHERE b.[A]=a.A ) As I, " _ &amp; "(SELECT Max([J]) FROM [Data$] b WHERE b.[A]=a.A ) As J, " _ &amp; "(SELECT Max([K]) FROM [Data$] b WHERE b.[A]=a.A ) As K, " _ &amp; "(SELECT Max([L]) FROM [Data$] b WHERE b.[A]=a.A ) As L, " _ &amp; "(SELECT Max([M]) FROM [Data$] b WHERE b.[A]=a.A ) As M, " _ &amp; "(SELECT Max([N]) FROM [Data$] b WHERE b.[A]=a.A ) As N, " _ &amp; "(SELECT Max([O]) FROM [Data$] b WHERE b.[A]=a.A ) As O, " _ &amp; "(SELECT Max([P]) FROM [Data$] b WHERE b.[A]=a.A ) As P, " _ &amp; "(SELECT Max([Q]) FROM [Data$] b WHERE b.[A]=a.A ) As Q, " _ &amp; "(SELECT Max([R]) FROM [Data$] b WHERE b.[A]=a.A ) As R, " _ &amp; "(SELECT Max([S]) FROM [Data$] b WHERE b.[A]=a.A ) As S, " _ &amp; "(SELECT Max([T]) FROM [Data$] b WHERE b.[A]=a.A ) As T, " _ &amp; "(SELECT Max([U]) FROM [Data$] b WHERE b.[A]=a.A ) As U, " _ &amp; "(SELECT Max([V]) FROM [Data$] b WHERE b.[A]=a.A ) As V " _ &amp; "FROM [Data$] a " _ &amp; "GROUP BY a.[A]" </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1804176/batch-concatenating-of-png-images-to-single-file 0 batch concatenating of png images to single file. shakthi 2009-11-26T15:01:07Z 2009-11-26T15:11:35Z <p>Hi, I want create texture atlas(matrix of images) from multiple images.Is their any applescript that can create image matrix.</p> http://stackoverflow.com/questions/1801334/how-to-apply-macro-at-end-of-every-heading-in-ms-word 0 How to apply macro at end of every heading in MS Word? MikiRei 2009-11-26T03:08:56Z 2009-11-26T03:08:56Z <p>I have a document with various headings (so not necessarily Heading 1 or Heading 2 - but all types of headings).</p> <p>What I'm trying to do is write a macro that will, for example, delete 2 spaces at the end of each heading.</p> <p>For example, we have</p> <p><code>This is a heading</code></p> <p>At the end of heading, I will do:</p> <pre><code>Selection.Delete Unit:=wdCharacters, Count:=2 </code></pre> <p>I need this to be applied at the end of each heading.</p> <p>Does anyone know how to do this?</p> <p>Thank you in advance. </p> http://stackoverflow.com/questions/1800689/can-you-reposition-images-in-word-2007-using-macros 0 Can you reposition images in Word 2007 using macros? MikiRei 2009-11-25T23:36:14Z 2009-11-25T23:36:14Z <p>I'm trying to write a macro that will reposition all images in a document to, say for example, the very top left hand side of each page. </p> <p>Is that possible? </p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1793800/can-i-redefine-a-c-macro-for-a-few-includes-and-then-define-it-back 3 Can I redefine a c++ macro for a few includes and then define it back? Aftermathew 2009-11-24T23:56:17Z 2009-11-25T18:25:23Z <p>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 somehow include the JUCE headers before the Boost headers the preposser expands the JUCE macro in the Boost code, and then the compiler gets hopelessly lost.</p> <p>Keeping my includes in the right order isn't hard most of the time, but it can get tricky when you have a JUCE class that includes some other classes and somewhere up the chain one file includes Boost, and if any of the files before it needed a JUCE include you're in trouble.</p> <p>My initial hope at fixing this was to</p> <pre><code>#undef T </code></pre> <p>before any includes for Boost. But the problem is, if I don't re-define it, then other code gets confused that "T" is not declared.</p> <p>I then thought that maybe I could do some circular #define trickery like so:</p> <pre><code>// some includes up here #define ___T___ T #undef T // include boost headers here #define T ___T___ #undef ___T___ </code></pre> <p>Ugly, but I thought it may work.</p> <p>Sadly no. I get errors in places using "T" as a macro that </p> <pre><code>'___T___' was not declared in this scope. </code></pre> <p>Is there a way to make these two libraries work reliably together?</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across 52 What is the worst real-world macros/pre-processor abuse you've ever come across? Trevor Boyd Smith 2009-03-17T01:57:42Z 2009-11-25T14:01:45Z <p>What is the <em>worst</em> <strong>real-world</strong> macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?</p> <p>Please add a short snippet or story if it is really entertaining. The goal is to teach something instead of always telling people "never use macros".</p> <p><hr /></p> <p>p.s.: I've used macros before... but usually I get rid of them eventually when I have a "real" solution (even if the real solution is inlined so it becomes similar to a macro).</p> <p><hr /></p> <p><strong>Bonus:</strong> Give an example where the macro was really was better than a not-macro solution.</p> <p><strong>Related question:</strong> <a href="http://stackoverflow.com/questions/96196/when-are-c-macros-beneficial">When are C++ macros beneficial?</a> </p> http://stackoverflow.com/questions/1783791/copy-and-paste-cells-if-duplicate-columns-excel-macro 0 Copy and paste cells if Duplicate columns , Excel Macro Keziah Dorman 2009-11-23T15:21:13Z 2009-11-24T17:00:05Z <p>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 hoping someone might be kind enough to help me?! </p> <p>my issue:</p> <p><strong>Sheet 1</strong></p> <p>a/b/c/d</p> <p>name/black/blue/green</p> <p>Sam/1//1</p> <p>Jill//1/</p> <p>Jill/1//</p> <p>Sam//1//</p> <p>Sam/1/1/1</p> <p>I have a name data base with duplicates in it. I need to de-dupe these, copy just one name (column a) onto a new page, and in the process I don't want to lose some of the data (column b-d) which might be in a duplicate name but not in the one going to be copied over. </p> <p>Outcome I am hoping for:</p> <p><strong>Sheet 2</strong></p> <p>a/b/c/d</p> <p>name/black/blue/green</p> <p>Sam/1/1/1</p> <p>Jill/1/1/</p> <p>I have quite a few columns to search for data my example is b-d however it is actually AP-EC so it would be helpful if it is obvious which figures I might need to change...?</p> <p>Thanks in advance.</p> <p>Kez</p> http://stackoverflow.com/questions/1786257/properly-handling-platform-specifics-unix-windows-in-c 1 Properly handling platform specifics (unix/windows) in C? xyld 2009-11-23T21:49:12Z 2009-11-24T15:49:48Z <p>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 get the point...</p> <p>Handling platform specifics seems dynamically in a compiled language like C seems unnecessary and even scary:</p> <pre><code>int main(int argc, char *argv[]) { if (windows) dowindowsroutine(); else dounixroutine(); return 0; } </code></pre> <p>However, handling platform specifics through really very basic macros seems gross too as the function gets chopped up into small pieces which may not compile properly (read answer to <a href="http://stackoverflow.com/questions/1644868/c-define-macro-for-debug-printing">http://stackoverflow.com/questions/1644868/c-define-macro-for-debug-printing</a> for a similar problem).</p> <pre><code>int main(int argc, char *argv[]) { #ifdef windows dowindowsroutine(); #else dounixroutine(); #endif return 0; } </code></pre> <p>So what's the "right" way to do this? Is it a case-by-case basis? Is there a good way to keep these gross macros out of functions entirely? I remember reading somewhere (probably in the kernel docs or something related) that macros (more importantly, complex macro logic) is meant for header files, not .c files. How do you handle this kind of stuff?</p> <p>I'm sick of "spaghetti code" with ifdef's inside of functions... I spose there are some cases where it may be OK, but the majority of code I see abuse it.</p> <p>Note: I've seen some perl XS code look like it wraps function prototypes to and things, but is that the only way? Isn't that somewhat gross in the community? Or is that OK? Coming from a mostly "scripted" background of perl, python, shell,... It's hard for me to tell.</p> <p>Update: Let me be more clear, the problem I'm trying to avoid is that I don't want choppy code. I want to be able to ensure that if my code breaks at compile time in linux, it also breaks at compile time in windows. With the choppy code, its possible to break windows from compiling, but not linux and vice versa. Is this kind of thing possible? The closest thing to this so far is ifdef'ing the entire function, but the function names are the same, is there a better solution where there is one interface, but the OS specific parts have their OS name embedded into the name?</p> http://stackoverflow.com/questions/443389/the-macros-in-this-project-have-been-disabled 0 The macros in this project have been disabled Fred 2009-01-14T15:35:46Z 2009-11-24T15:00:04Z <p>When opening a word document a macro should start and it did for a while. But the I save the document when the macro was activated and after that I get the error message "The macros in this project have been disabled" when I open the document.</p> <p>I have tried different security settings but without success.</p> <p>Does anybody have any idea what might be the issue?</p> <p>Tahnks in advance!</p> <p>/Fred</p> http://stackoverflow.com/questions/1739729/word-2007-macro-to-insert-text 2 Word 2007 Macro to insert text James Brauman 2009-11-16T02:24:55Z 2009-11-24T09:16:37Z <p>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 giving me an error.</p> <pre><code>Dim myText As String Dim oldFont As Object 'Save old font Set oldFont = Selection.Font 'Insert text with custom font myText = "CUSTOM STRING" Selection.Font.Name = "Comic Sans MS" Selection.Font.Size = 26 Selection.Font.Bold = True Selection.TypeText (myText) 'Revert font back to original Set Selection.Font = oldFont </code></pre> <p>Can anyone explain a way to do what I'm looking for? Thanks.</p> <p>Edit: Sorry, I should have been more specific. If I am typing text, I have a certain formatting that I'm typing in that is shown on the Home Tab (eg. Comic Sans Ms, Size 22, Bold). When I insert text with the macro, this changes the formatting that I'm typing with, so if I continue typing it will be in the NEW font type, not the Comic Sans MS. I'm trying to make it so if I continue typing after I have inserted the text via macro, it will retain my old formatting.</p> http://stackoverflow.com/questions/1788051/copy-a-column-of-data-from-one-excel-file-to-another-file 0 Copy a column of data from one excel file to another file.. kar 2009-11-24T05:42:39Z 2009-11-24T06:15:16Z <p>Hi..</p> <p>I am a newbie in writing macros.</p> <p>I have an excel file in which a column (total hours) is present.</p> <p>As I update the 'total hours' column I need those values to be reflected in another excel file under a column (Efforts). </p> <p>Can anyone give me the macro for the above said problem..</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1786809/c-map-functions-of-a-class 0 [C++] Map functions of a class Jonathan 2009-11-23T23:32:13Z 2009-11-24T00:14:37Z <p>Hi!</p> <p>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.</p> <p>Firstly I was thinking to hardcode in the constructor so I can assign a std:map with the string of the name of function pointing to the function itself. </p> <p>for example:</p> <pre><code>class A{ int B(){ return 1; } }; int main(){ A *a = new A(); vector&lt;string, int (*)()&gt; vec; vector["A.B"] = a.B; } </code></pre> <p>by that I have mapped the function B on A class, I know that I only mapped the function the instance and thats B is not static to be globally mapped.<br> but thats what I need, at somepoint someone will give me a string and I must call the right function of an instance of a class.</p> <p>My question is if I only can do that by hardcoding at the constructor, since this is a instance scope we are talking or if there is somehow a way to do this in the declaration of the function, like here for namespaces and classes: <a href="http://stackoverflow.com/questions/1691473/c-c-somehow-register-my-classes-in-a-list">http://stackoverflow.com/questions/1691473/c-c-somehow-register-my-classes-in-a-list</a></p> <p>Thanks,<br> Joe</p> http://stackoverflow.com/questions/1786132/how-do-i-stop-auto-complete-during-macro-execution-in-visual-studio 0 How do I stop Auto-Complete during macro execution in Visual Studio? Jeff Martin 2009-11-23T21:31:26Z 2009-11-23T21:31:26Z <p>I am working on a couple of macros and whenever I am insterting text the Auto-Complete functionality is running and causing problems.</p> <p>This is also described in the comments of <a href="http://stackoverflow.com/questions/598062/macro-to-wrap-selected-text-with-tags-in-visual-studio">this question</a>.</p> <p>I can manually disable the autocomplete check boxes that are interfering but that isn't really what I am looking for.</p> <p>Is this where the Undo Context stuff is used?</p> http://stackoverflow.com/questions/1753550/excel-vba-pastelink-run-time-error-1004-application-defined-or-object-defined-er 0 Excel VBA pastelink run-time error 1004: Application-defined or object-defined error. yx 2009-11-18T04:06:13Z 2009-11-23T10:36:01Z <p>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:</p> <p>Application-defined or object-defined error.</p> <p>Here is the code:</p> <pre><code>Worksheets(sheetFrom).Cells(fromRow, fromCol).Copy Worksheets(sheetTo).Cells(toRow, toCol).Select ActiveSheet.Paste Link:=True </code></pre> <p>I am checking the to/from values and they are correct.</p> <p><em>update</em> seems like its the cell selection that's causing the problem.</p> <p><em>update 2</em> When the from sheet is the same as to sheet, there is no problem. What am I missing?</p> http://stackoverflow.com/questions/1729100/is-there-a-profitable-way-to-record-user-actions-in-textarea 2 Is there a profitable way to record user actions in textarea? shaman.sir 2009-11-13T13:02:44Z 2009-11-22T15:39:49Z <p>I need to send bunch of commands to the server on timer - like: </p> <pre><code>put(0,"hello") del(4,1) put(4," is around the corner") </code></pre> <p>so I need to monitor and record all of the user input and compile/flush it on the timeout (idle), something like macros.</p> <p>I can record all things happening <code>onKeyUp</code>/<code>onKeyDown</code>/<code>onMouseDown</code>/<code>onMouseUp</code> using textarea cursor position and keys information (and make it cross-browser <em>some time</em> later) but I can't handle things like pasting using mouse right button and selecting 'Paste' or pasting from the menu (I can handle <code>onChange</code>, but I will have no information is it pasted or already recorded as pressed keys and it fires only after focus change). Even pasting from context menu fires some useful info, but the menu from the browser is the only thing, giving nothing for javascript.</p> <p>Is there any plugin for jQuery or something like that and do I really have no other ways to implement it without comparing current-document and document-a-second-before?</p> <p><strong>Upd.:</strong> There are events for handling <code>cut</code>/<code>copy</code>/<code>paste</code>: <a href="http://www.quirksmode.org/dom/events/cutcopypaste.html" rel="nofollow">http://www.quirksmode.org/dom/events/cutcopypaste.html</a> , but what about the <code>undo</code> one?</p> <p>P.S. I will show a macro-recording code when I'll finish, if someone really needs it. And to finish it properly, I just need the <code>undo</code> handling possibility. Current version is here: <a href="http://code.google.com/p/sametimed/source/browse/WebContent/module-editor.js" rel="nofollow">http://code.google.com/p/sametimed/source/browse/WebContent/module-editor.js</a>, look for <code>compileCommands</code> method.</p> http://stackoverflow.com/questions/1754863/how-to-check-prices-increased-or-not-in-one-shipment -1 How to check prices increased or not in one shipment [closed] bobby 2009-11-18T09:58:20Z 2009-11-21T18:09:28Z <p>for eg: how to find one item rate increased or not via excel macro if you know pls send a macro code also </p> <p>Ref no. qty rate order no. purchase date MK8113 4 96.12 FPOH010900028 07/07/2009 MK8113 10 96.12 FPOH010900035 24/08/2009</p> http://stackoverflow.com/questions/1772119/c-the-most-useful-user-made-c-macros-in-gcc-also-c99 3 C - the most useful user-made C-macros (in GCC, also C99) ? psihodelia 2009-11-20T17:38:41Z 2009-11-21T07:22:29Z <p>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:</p> <pre><code>#define v3_op_v3(x, op, y, z) {z[0]=x[0] op y[0]; \ z[1]=x[1] op y[1]; \ z[2]=x[2] op y[2];} </code></pre> <p>It works like that:</p> <pre><code>v3_op_v3(vectorA, +, vectorB, vectorC); v3_op_v3(vectorE, *, vectorF, vectorJ); ... </code></pre> http://stackoverflow.com/questions/1772982/how-to-create-macros-shortcuts-in-dreamweaver-or-notepad 0 How to create macros/shortcuts in Dreamweaver or Notepad++ nute 2009-11-20T20:15:39Z 2009-11-21T05:01:43Z <p>I've never made "macros" or anything like that with any program.</p> <p>I'm moving my php code to use "gettext", so I have to look for all my static text and change it up.</p> <p>For example, I need to change <code>page title</code> to <code>&lt;?php echo _('page title'); ?&gt;</code>.</p> <p>I don't think there is a way to change it all up in one shot, as it involves looking to see if it looks like static text, but I'm sure it's possible in one of those editors to maybe, select a text, press some keyboard shortcut, and it would do the replacement for me.</p> <p>Is that possible? How?</p> <p>I have both Dreamweaver and Notepad++ handy. I'm open to using some other tool.</p> <p>Thanks!</p> http://stackoverflow.com/questions/131433/sources-for-learning-about-scheme-macros-define-syntax-and-syntax-rules 4 Sources for learning about Scheme Macros: define-syntax and syntax-rules Kyle Burton 2008-09-25T04:07:21Z 2009-11-20T18:08:49Z <p>I've read <a href="http://www.xs4all.nl/~hipster/lib/scheme/gauche/define-syntax-primer.txt" rel="nofollow">JRM's Syntax-rules Primer</a> for the Merely Eccentric and it has helped me understand syntax-rules and how it's different from common-lisp's define-macro. syntax-rules is only one way of implementing a syntax transformer within define-syntax.</p> <p>I'm looking for two things, the first is more examples and explanations of syntax-rules and the second is good sources for learning the other ways of using define-syntax. What resources do you recommend?</p> http://stackoverflow.com/questions/1769155/crm-mail-merge-and-word-macros-fillins 0 CRM mail merge and Word Macros/FILLINs unknown (google) 2009-11-20T08:53:57Z 2009-11-20T08:53:57Z <p>Hi all,</p> <p>I'm currently using Microsoft CRM4 Mail merge function, which stores Word files as XML files inside CRM. My client has a requirement to prompt the user for more information (not found in CRM) upon mail merging. </p> <p>Previously, we used the Word 'FILLIN' commands, but it does not work with CRM mail merge as it only prompts the user before printing, not upon opening a Word file.</p> <p>I attempted using Macros, but can't seem to save macros to Microsoft Word 2003 XML file format.</p> <p>My questions: 1. Is there any way to get 'FILLIN' to prompt the user upon opening the mail merged file? 2. Can I store macros in Word 2003 XML file format? 3. Any other way around it, that involves merging CRM records with a Word file, and prompting the user for more information not already found in CRM?</p> <p>Many thanks for your help, AR</p> http://stackoverflow.com/questions/1622587/macro-that-disable-enable-sound-device-in-windows-7 -1 Macro that disable / enable sound device in Windows 7 Peter 2009-10-26T00:21:13Z 2009-11-20T03:06:02Z <p>What should I use to program that kind of Macro ?</p> http://stackoverflow.com/questions/1767454/how-to-make-attach-to-process-macro-to-attach-to-native-code 1 How to make attach to process macro to attach to Native code? Steve 2009-11-19T23:53:18Z 2009-11-20T00:25:07Z <p>I am using the following macro codeto attach to the debugger:</p> <pre><code> process.Attach() </code></pre> <p>Works, fine, </p> <p>but for some reasons it always attaches to the "Managed Code" (sort of default mode I guess)</p> <p>Is there any way to specify that I want to attach to a "Native code" too?</p> http://stackoverflow.com/questions/1766065/in-gvim-is-there-a-way-to-display-a-macro-list-similar-to-displaying-your-mappin 1 In gVim, is there a way to display a macro list similar to displaying your mappings? Jason Down 2009-11-19T19:51:34Z 2009-11-19T19:56:37Z <p>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').</p> <p>Is there a way to do this without having to manually looking inside it (via :split [myvimrcfile] or whatever way)?</p> <p>Also, if it is possible, is there a way to attach some sort of documentation that would display with the macro to explain what it is for? I have a handful that I use quite a bit, but about 6 weeks apart. It would be nice to just quickly list them along with a comment that tells me what the macro does (or even just a name so I make sure I use the right one).</p> <p>Thanks</p> http://stackoverflow.com/questions/1763240/ms-outlook-macro-to-strikeout-selected-text 2 MS Outlook macro to strikeout selected text Andy 2009-11-19T13:19:38Z 2009-11-19T15:59:53Z <p>The task is to apply <em>strikeout</em> 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 hand.</p> <p>For example, the following simple code:</p> <pre><code>Selection.Font.Strikethrough = True </code></pre> <p>works for Word, but gives an error for Outlook:</p> <pre><code>Run-time error '424': Object required </code></pre> http://stackoverflow.com/questions/1760028/why-would-a-developer-use-a-macro 1 Why would a developer use a macro? Nathan Campos 2009-11-19T00:05:23Z 2009-11-19T15:21:16Z <ul> <li>Why would a developer use a <a href="http://en.wikipedia.org/wiki/Macro%5F%28computer%5Fscience%29" rel="nofollow">macro</a>?</li> <li>What are the advantages and disadvantages to using them?</li> <li>Where can I find some resources about and how to use they?</li> </ul>