SYMPTOMS
When you attempt to edit an object created in Microsoft Draw, you receive
the following error message:
Word cannot edit the MSDraw
RESOLUTION
WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN
RISK. Microsoft provides this macro code "as is" without warranty of any
kind, either express or implied, including but not limited to the implied
warranties of merchantability and/or fitness for a particular purpose.
Method 1: Convert the Object to a Word 6.0 Picture
Convert the object to a Word 6 picture by doing the following:
- Select the object.
- On the Edit menu, click Microsoft Drawing Object, and then click
Convert.
- Select Convert To and select Microsoft Word Picture in the Object Type
list.
- Click OK.
You can now edit the picture.
Method 2: Create a Macro to Convert Your Drawing Objects
Create the following macro and save it as an AutoOpen macro in your
Normal.dot template. This macro will automatically convert your drawing
objects to Microsoft Word Picture objects.
NOTE: this method does not work in Word 7.0.
Sub MAIN
Dim dlg As ConvertObject
EditFind .Find ="^g", .Direction=0
While EditFindFound()
GetCurValues dlg
If dlg.Class="MSDraw" Then
ConvertObject .Class="word.picture.6"
EndIf
EditFind .Find="^g", .Direction=0
Wend
End Sub
Method 3: Open the Object in the Drawing Layer
With the left mouse button, double-click the object to open the object in
the drawing layer.
Method 4: Unlink the Embed Field, and Edit Using the Picture Editor in Word
The Microsoft Draw object is an embed field. Unlink the field, and then
edit the object using Word's picture editor. To do this, use the following
steps:
- Select the object.
- Press CTRL+SHIFT+F9 to unlink the field.
- Double-click the object.
The object will open in the Picture Editor in Word.
Method 5: Install Microsoft Draw from the Word 2.x Disks
If you have the Microsoft Word version 2.x disks, you can choose to
install only Microsoft Draw. To install Microsoft Draw:
- Insert Disk 1 of the Word 2.x disks, and run Setup.
- In the "Welcome to Microsoft Word for Windows Setup" dialog box, enter a
the installation directory.
- Click Continue.
- In the "Choose the type of installation" dialog box, click the Custom
Installation button.
- In the Word Setup Options dialog box, clear all the check boxes except
the "Draw, Graph, Equation Editor, WordArt" check box.
- Click the Tools button.
- On the Options dialog box, clear all the check boxes except the "Draw"
check box.
- Click OK.
- Click Setup button.