Message Box Draft 1 Sub MsgBoxmacro() MsgBox "Question #1 here" MsgBox "Question #2 here" MsgBox "Question #3 here" MsgBox "Question #4 here" MsgBox "Question #5 here" MsgBox "Question #6 here" MsgBox "Question #7 here" End Sub Draft 2 Option Explicit Sub MsgBoxmacro() Dim ans1 As String Dim BMs As Bookmarks ... 13 Apr 2010 20:43
Using Sound Recorder in Word VBA SOMETIMES does not work I am recording short (< 60 secs) snipets of sound using Sound Recorder under control of Word VBA using the following Public Sub recordSound() Selection.InlineShapes.AddOLEObject ClassType:="SoundRec", FileName:="", LinkToFile:=False, DisplayAsIcon:=False End Sub All is OK most of the time but on some ma... 27 Mar 2010 02:17
VBA problem when recording sound using Sound Recorder (> 4 Gig mem I jave a VBA application in Word that records sound using Sound recorder. UNFORTUNATELY Sound Recorder does not work correctrly in a machine which has more than 4 Gig of memory http://support.microsoft.com/default.aspx/kb/284893?p=1 Can I test the amount of memory using VBA in Word so that I can give the ... 29 Mar 2010 19:14
translation models Does MSWord translating use dictionary based, intralingua, OR a statistical modeled translation approach, or is it a combination of these? Where can I read more about the MSWord translation approach? ... 27 Mar 2010 06:55
How do I populate the "Find" dialogue in Word with the contents of the clipboard? Hi I tried, and failed to create a macro. (I do a procedure hundreds of times every day so wanted to automate it) I press Control-F (to open the 'find' dialogue) and then press Control- V (to paste the contents) into the dialogue. As you can see from the code below, when I recorded the macro, it used '202... 30 Mar 2010 09:26
SQLDataAdapter Fill with startRecord parameter Hi. I can't unserstand how startRecord works; i think there is a problem. I'm using maxrecord=5. If i put zero 0, the dataset is filled with all values in table (rows.count is = @@rowcount) If i put 1 the dataset is filled only with 5 values, but row is not the first one in the table, is the second! If... 26 Mar 2010 03:36
Problem with VBA running a Word mail merge Need a bit of help, please. Am trying to use VBA (in Microsoft Access) to run the simplest kind of Word mail merge, but for the life of me I can't get the syntax right. The merge template in Word is already set up with a fixed tab-delimited text file as its source, so all that's needed is to run the merge... bu... 25 Mar 2010 23:12
Help with word Macro I'm in need of a macro to help me format upwards of 10000 word files. I have the two macros I will need to format each word doc, but I would like to automate this further by running it on a directory (including sub-directories). I'm not very familar with VBA so I'm stumbling through it. these reports will eith... 26 Mar 2010 10:25
Jump to a page, then select all the text on THAT page only Hi. I want to use Control-F to just to a specific page. When I arrive at that page, i want to copy all the text on that page only. It's possible to do by manually, not sure if it can be done using a macro. (if only there was a control-A that applied just to that one page) ... 26 Mar 2010 10:25
Task Pane and Word 2003 Template Hi, I'm developing a Word 2003 Template with a custom task pane. I try to compute the behavior that the task pane is only visible when i open the document as a template. when i open the document in doc mode, the task pane should be hidden. I've tried to use the command: "Application.CommandBars["Task Pane"... 25 Mar 2010 18:37 |