![]() |
|
#1
|
|||
|
|||
![]()
I'm glad it is working for you. I suspect your document is in Compatibility Mode.
My right-click menu gives Format Shape which does not have Format Text Box. If I set my document for Word 2007 Compatibility Mode, then I see the Format AutoShape/Picture command and can get to the Convert to Frame button. Here is a macro that changes a document to Word 2007 compatibility mode: Code:
Sub Word2007CompatibilityOn() ' ' Word2007CompatibilityOn Macro ' ' Charles Kenyon ' Written for WordArt Add-In ' Converts Active Document to Word 2007 format Dim Result As Long Result = MsgBox(Prompt:="This will convert this document to Word 2007 format. You will lose any features added in later versions." & _ vbCr & "Are you sure?", title:="Word 2007 Conversion Warning", Buttons:=vbInformation + vbYesNo) On Error GoTo SkipConversion ' in case this is run in an earlier version of Word If Result = vbNo Then GoTo SkipConversion ActiveDocument.SetCompatibilityMode (wdWord2007) MsgBox "Conversion completed. If you are using Word 2010 or later, you should see Compatibility Mode in the Title Bar.", vbInformation, "Done" On Error GoTo -1 Exit Sub SkipConversion: MsgBox "Conversion skipped", vbInformation, "OK" On Error GoTo -1 End Sub ' ========================================================================== Private Sub TitlebarShow() MsgBox ActiveDocument.ActiveWindow.Caption End Sub |
#2
|
|||
|
|||
![]() ![]() Not my personnel machine but an Enterprise machine with Domain and a MS365 Subscription. Apparently the Normal.dotx is old (Methuselah version?) and starts a new document that is in Compatibility mode. Normal.dotm has been updated. I like being compatible ![]() |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
lou1990lou | Word VBA | 2 | 01-20-2019 02:39 PM |
![]() |
robertj | Word | 8 | 08-19-2015 03:21 PM |
![]() |
citizenzen | Word | 3 | 02-01-2013 12:24 PM |
Locking/imbedding text | Stjamesg8 | Word | 1 | 04-12-2009 08:43 AM |
Locking Text | Boise User | Word | 0 | 01-24-2009 01:55 PM |