User Profile
Doug_Robbins_Word_MVP
MVP
Joined 4 years ago
User Widgets
Recent Discussions
Re: VBA to set logo in the header as Decorative
To also access the shapes in the Header(s) of the document, you would need to use something like: Sub alttext() Dim shp As InlineShape Dim doc As Document Dim h As Long Dim s As Long Set doc = ActiveDocument For Each shp In doc.InlineShapes If shp.Width >= InchesToPoints(2) And shp.Height >= InchesToPoints(1) Then shp.AlternativeText = "Figure. Caption." Else shp.Decorative = True End If Next shp For s = 1 To doc.Sections.Count With doc.Sections(s) For h = 1 To .Headers.Count For Each shp In .Headers(h).InlineShapes If shp.Width >= InchesToPoints(2) And shp.Height >= InchesToPoints(1) Then shp.AlternativeText = "Figure. Caption." Else shp.Decorative = True End If Next shp Next h End With Next s End Sub5Views1like1CommentRe: Delete footnote separator on one page only
You can't delete the Footnote Separator from just a single page. However, the separator probably appears on that page because there is perhaps a space, or some other invisible remnant of the footnote that you deleted and you will need to located whatever that is and delete it as well. If you cannot sort it out, upload a copy of the document so that we can look at it for you.15Views0likes0CommentsRe: Latest Build of Word Causing Layout Issues
MariaBalasanyanI see the same thing whether I open the file in Word in Microsoft 365 or in Office 2010. Of course that is probably because you had saved the file in the current version of Office. I believe that the solution to the problem lies with Jasper Reports.41Views0likes1CommentRe: Newest Office365 word update damages tables
mangruThis is how theKainynas (nuolaidos) {Customer_Organization}.docxopens in Word in Microsoft 365 Apps for enterprise Version 2409(Build 18025.20160 Click-to-Run) Current Channel The other document uses a 9pt font in the first table rather than 11pt and that table contains on extra empty cell on the right. I do not think those changes occurred by the document being opened in the later version.441Views1like2CommentsRe: Word will not print, all other apps print fine
stephaneadminTry using one of the free "Print to PDF" utilities such as PrimoPDF and see if that prints correctly. If you want to upload the pdf that you created using the Microsoft Print to PDF utility, I will investigate that issue.162Views0likes0CommentsRe: A4 paper size error (Word 2021)
NgTienThinh In the Windows Search facility, type Control Panel and then click on the Control Panel App and then on the Uninstall a Program under Programs and in the next screen that appears, select the Microsoft 365 Apps and then click on Change, then in the User Account Control dialog, click on Yes and in the next screen asking how would you like to repair your Microsoft 365 and Office program, select the Online Repair option.182Views0likes1CommentRe: Remove space after Chapter number in ToC and Navigation Headings
bookstaberWhile you can manually delete the spaces from the Table of Contents, if the Table of Contents is subsequently updated, the spaces will re-appear. A better option would be to make the colon a part of the Heading Numbering.250Views2likes0Comments