second line automatically indents Posted: 16 Aug 2013 02:15 PM PDT I'm writing something on Microsoft Word 2003. The first line is indented, and when I continue typing, the next line automatically indents too. If I backspace the indent, it gets rid of the space too. I tried typing something without an indent in the first line, but the second line still gets indented automatically. |
Word 2010 Template 1 is running when I restart or shut down Posted: 16 Aug 2013 02:06 PM PDT I'm running Windows 7 64-bit and Word 2010. When I either restart or shut down my computer, a Microsoft Word Information window appears: Do you want to save changes you made to Template 1? Save Don't Save Cancel I didn't have any applications open. Why am I getting this window? |
Prompting User To Select Files Via File Open Dialog - Options? Posted: 16 Aug 2013 01:32 PM PDT Hi all, I am writing a macro where I want the user to multi-select a bunch of templates which I would then run through and process. Two things: 1) not sure I am using the right/best object to do this (I thought there might be a .FileOpen() method off of .Application but there was not) 2) not able to set the dialog to default to showing just templates Here is the code as far as I got it. Too bad the Word 2007 help file does not make it easy to get to the enumeration list for this - could not find it! (for ListIndex). dim loFileDialog as FileDialog Set loFileDialog = Application.FileDialog(msoFileDialogFilePicker) ' set a new title loFileDialog.Title = "Choose templates to update" ' set the default type of files to show; NOTE: this does not seem to do anything (I found it in some sample code) ' loFileDialog.FiltersIndex = 2 ' fire it's show method to get it working lnUserChoice = loFileDialog.Show() ' process the result. Thanks, Albert Gostick |
Synchronous Scrolling Posted: 16 Aug 2013 11:53 AM PDT I have been attempting to use the Synchronous Scrolling feature on two new pcs. I can bring up two documents and use the side by side feature, yet when I click and the Synchronous Scrolling, nothing happens. The Synchronous Scrolling is not greyed out, but I get no response from clicking the button. Is there a known problem or is there something I am doing incorrect? Any input would be greatly appreciated. |
Recent folders incorrectly redirecting for network folders Posted: 16 Aug 2013 11:23 AM PDT Hi, I'm having an issue with the recent folders in Office 2013. Every time I click on recent folder it opens the wrong folder in the file explorer. For example when I open My Documents it correctly opens to my documents folder; however, when I click on Desktop it opens my documents folder. When I copy the link for my desktop folder it is the correct directory. This may be because these folders are stored/synced to the network since when I try local folders it works perfectly fine. Any assistance would be greatly appreciated. This issue occurs both with the Open and Save as functions. Thanks! |
header and footer and text margins Posted: 16 Aug 2013 10:38 AM PDT I have a standard format of letter template that I want to develop, with text, header, and footer areas, each with different margins. When I set this up, the footer is narrower than the text, and any mod to one affects them all proportionately. I cannot get my footer, which is different for the first page, to the same width as the text. Heeellllpppppppp |
Word - menus disappeared Posted: 16 Aug 2013 08:19 AM PDT Hi, have Office Pro 2010 installed, all working fine for several years, one day all menu toolbars except "Home" disappeared. The "Endnote" toolbar re-appeared, but none others. Not in full-screen mode etc. Any ideas??? seems like it might be a corrupt registry entry, but I have no idea how to fix this. Tried removing Office and re-installing, but with NO CHANGE! All other Office products (Excel PP etc) fine. Most frustrating..... thanks, Andrew |
re-install of office 2007 Posted: 16 Aug 2013 07:53 AM PDT We recently had to set our new windows 8 computer back to factory settings because of a printer problem. that works -but when we re-installed office 2007-word doesn't work. it is office professional-everything else works-but when you open word-k it says there is a problem with current settings and asks if you want it re-set to default settings-we click ok -but it still doesn't open. we tried the office fix it helper -but it doesn't see a problem-neither does the diagnostic tool .everything check ok. what else can we do (we tried re-install a second time-nothing changed. |
can't change existing documents from letter to a4 Posted: 16 Aug 2013 07:33 AM PDT How do I change existing documents from letter to A4. I went into size and tried to change it but I come up with a message that my margins are too large. Please assist. |
the name in the end tag of the element must match the element type in the start tag Posted: 16 Aug 2013 06:11 AM PDT Please, i need help with this problem. What would i do? I have been working at this document at least 2 weeks. I am going crayzy. my document is here: http://www.sendspace.com/file/nrohgz |
When trying to open/move/delete a Word file it says it's already open when Word isn't even running Posted: 16 Aug 2013 05:05 AM PDT Just recently when I try to move or delete a Word file it says it can't be done because "the document is still open in Word. word is not open at the time |
HRESULT: 0x800A1722 & HRESULT: 0x800A141C Posted: 16 Aug 2013 04:29 AM PDT Hello All, Can any one let me know "What is the reason for getting these error message HRESULT: 0x800A1722 & HRESULT: 0x800A141C". Here is the exact error message: System.Runtime. I am getting this error when I try to invoke Mail Merge at run time in C#. Here is my piece of code: Microsoft.Office.Interop.Word.Selection wrdSelection; Microsoft.Office.Interop.Word.MailMerge wrdMailMerge; Microsoft.Office.Interop.Word.MailMergeFields wrdMergeFields; Microsoft.Office.Interop.Word.Table wrdTable; string StrToAdd; myDocumentsPath = Environment.GetFolderPath(Environment.SpecialFolder.Personal); if (!Directory.Exists(myDocumentsPath + "\\Docs")) Directory.CreateDirectory(myDocumentsPath + "\\Docs"); BinaryReader br = new BinaryReader(TemplateStream); Stream sOut = File.Create(myDocumentsPath + "\\Docs\\" + "\\tempTemplate.doc"); BinaryWriter bw = new BinaryWriter(sOut); bw.Write(br.ReadBytes((int)TemplateStream.Length)); bw.Flush(); bw.Close(); // Create an instance of Word and make it visible. wrdApp = new Microsoft.Office.Interop.Word.Application(); // Add a new document. // Create a MailMerge Data file. CreateMailMergeDataFile(RepDataSet); Object TemplateFileName = myDocumentsPath + "\\Docs\\" + "\\tempTemplate.doc"; wrdDoc = wrdApp.Documents.Add(ref TemplateFileName, ref oMissing, ref oMissing, ref oMissing); wrdDoc.Select(); wrdSelection = wrdApp.Selection; wrdMailMerge = wrdDoc.MailMerge; wrdMailMerge.OpenDataSource(myDocumentsPath + "\\XpedeonDocs\\" + "\\DataDoc.doc", ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing); wrdMailMerge.Destination = Microsoft.Office.Interop.Word.WdMailMergeDestination.wdSendToNewDocument; wrdApp.Visible = true; Object oTrue = true; Object StepStart = 5; oDCFromInvokeMailMerge = oDC; wrdMailMerge.ShowWizard(ref StepStart, ref oFalse, ref oFalse, ref oFalse, ref oFalse, ref oTrue, ref oTrue); wrdMailMerge.Application.DocumentBeforeClose += new ApplicationEvents4_DocumentBeforeCloseEventHandler(Application_DocumentBeforeClose); // Release References. wrdSelection = null; wrdMailMerge = null; wrdMergeFields = null; wrdDoc = null; wrdApp = null; private void oWord_DocumentBeforeClose(Microsoft.Office.Interop.Word.Document doc, ref bool Cancel) { Microsoft.Office.Interop.Word.Application wordApplication = new Microsoft.Office.Interop.Word.Application(); try { if (bCorrespondance == true) { lExceptionList = CreateTaskForCorrespondance(null, oDCFromInvokeMailMerge, doc, "MAILMERGE"); } } catch (Exception ex) { XtraMessageBox.Show(ex.Message.ToString(), System.Windows.Forms.Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Information); } } Regards. G.V.N.Sandeep |
Office startet nicht im abgesicherten Modus vom BS Posted: 16 Aug 2013 02:29 AM PDT Hallo ich habe ein großes Problem. Da aktuell wieder mal die grafikkarte in meinen Lappi spinnt kann ich nur noch im abgesicherten Modus das Betriebsystem laufen lassen mit Netzwerktreibern und standart vga treiber. wenn ich normal starte bekomme ich bluescreen mit stop 116 grafiktreiberproblem. das liegt aber an der verbauten grafikkarte nvidia geforce 8600m gs axiomanschluß( nvidiafehler) ist bekannt !! so nun aber mein eigentliches problem. ich muß ganz dringen etwas bearbeiten am Lebenslauf und einige Anschreiben. habe Windows7 Home Premium 64bit , dazu Office 2010 Home & Business. leider startet es nicht bzw es benendet sich automatisch!! da bekomme ich nachfolgenden fehler angezeigt. was kann man da machen , weil ich habe zwar noch nen zweiten lappi da aber ohne office. |
Word 2013 Printing to One Note reverses print order Posted: 16 Aug 2013 01:29 AM PDT When I print using Word 2013 it defaults to printing in reverse order (without selecting the option in the printer properties) which is great when printing a physical copy on my inkjet printer. I use the Print to OneNote 2013 function often (to a single page) and the problem is that Word 2013 also prints this in reverse. I can't find an option anywhere to turn this off. I am currently printing to PDF (which also reverses) then print to OneNote with that reverse option, which while do-able, is very annoying. Is there anyway around this? Cheers |
Widows 8, already installed on my new Toshia Laptop Posted: 15 Aug 2013 10:03 PM PDT I had windows 8 installed on my computer, including Microsoft Office 2013. When I try to use MSO I get a box asking for Key number, this is not any where on my laptop. I would be pleased if you could assist me with this problem |
Office 2013 prints some files but not others - prints intermittently or selectively (Windows 8) Posted: 15 Aug 2013 08:34 PM PDT I just got a Windows 8 computer with Office 2013 and some of my Office files will print but not others. For example, I can print several Word or Powerpoint files but will open a particular file and it will not print at all. My laser printer starts to hum and make noise like a successful print job (with a slightly different noise) and then does not print. It does not show up as an error and it will not show up as a job in Queue. There are no errors, my printers lights up, starts to make noise and then will not print. This can even happen for certain pages withing a document. I have a Powerpoint files where the 1st page will not print but the rest of the file will print. I had to print an important Word doc today that would not print. I saved it as a PDF and then it printed successfully on the first try. I have hundreds of different office files and most are printing fine but many just will not print. Any ideas. |
Why do I get "operation cancelled" for help/check for updates in any Office 2010 application? Posted: 15 Aug 2013 06:44 PM PDT The full message is "this operation has been canceled due to restrictions on this computer. Please contact your system administrator" But I am the system administrator and am clueless. It happens for other functions as well like Getting Started. |
UserForm Template to Create Multiple Documents Posted: 15 Aug 2013 04:10 PM PDT I created a template that has several documents within the Template. The template has a Userform that has input fields to populate the documents. We were able to submit the document as a single document. Now there has been a change and each document must be submitted individually.Let me explain more clearly if I can: Template1 is a 12 page document template with a userform to populate the fields. Pages 1-4 of Template1 is Document1, pages 5-7 is Document2, pages 8-10 is Document3, and pages 11-12 is Document4. We used to be able to send Template1 and everything was OK, the receiving site would break down the documents individually. But now, the receiving site is requiring us to submit each document separately. So Document1, Document2, Document3, and Document4 must be sent individually. Each Document1-Document4 has similar information in them (i.e. Name, phone number, address, date of birth). It would be a real pain to have to create 4 different document templates and input the same sets of data 4 times. It is also a pain to cut/paste each document and then same separately. Here is my question...finally. Is there a way to create a template where we only have to input the data set one time in the UserForm and all 4 separate documents will be created from the information? |
What property do you set in a content control so that when you click placeholder text, it is highlighted then replaced with the first keystroke? Posted: 15 Aug 2013 04:01 PM PDT I have three content controls in a table, each in a different cell. In the first one when I click inside the placeholder text, it is all selected and is replaced with the firsts keystroke. This is the behavior I want. The other content controls when the placeholder is clicked, the insertion point simply moves inside the placeholder text and any keystrokes you type are simply added to the placeholder text. What am I doing wrong? I checked Properties and all content controls seem to have identical properties. I know if I select the title tab, I will get the desired behavior, but that's not really what I want to user to have to do--too hard to explain. All thoughts welcomed. I noticed just now that the controls that are working as desired have the Group button active--see the screen shot at the end. |
Unable to retain a split Excel spreadsheet imbedded into a Word file Posted: 15 Aug 2013 11:29 AM PDT I have new computer with Windows 7, replacing my Windows EP computer. I have a Word 2007 file with an imbedded Excel 2007 worksheet. That worksheet is "split", as indicated by the bar where the split is. However, using this new Windows 7 computer, whenever I leave the spreadsheet (within the Word file) I lose the split. What change do I need to make? Please advise. |