"Word Cannot Edit the MSDraw" Error

Last reviewed: August 4, 1997
Article ID: Q140870
The information in this article applies to:
  • Microsoft Word for Windows, versions 6.0, 6.0a, 6.0c
  • Microsoft Word for Windows NT, version 6.0
  • Microsoft Word for Windows 95, version 7.0
  • Microsoft Word 97 for Windows

SYMPTOMS

When you attempt to edit an object created in Microsoft Draw, you receive the following error message:

   Word cannot edit the MSDraw.

CAUSE

Microsoft Draw is not installed on your system. Microsoft Draw is installed by Word 2.0. In addition, Word does not automatically convert the Microsoft Draw object to a Word picture.

STATUS

We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

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:

  1. Select the object.

  2. On the Edit menu, click Microsoft Drawing Object, and then click Convert.

  3. Select Convert To and select Microsoft Word Picture in the Object Type list.

  4. 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:

  1. Select the object.

  2. Press CTRL+SHIFT+F9 to unlink the field.

  3. 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:

  1. Insert Disk 1 of the Word 2.x disks, and run Setup.

  2. In the "Welcome to Microsoft Word for Windows Setup" dialog box, enter a the installation directory.

  3. Click Continue.

  4. In the "Choose the type of installation" dialog box, click the Custom Installation button.

  5. In the Word Setup Options dialog box, clear all the check boxes except the "Draw, Graph, Equation Editor, WordArt" check box.

  6. Click the Tools button.

  7. On the Options dialog box, clear all the check boxes except the "Draw" check box.

  8. Click OK.

  9. Click Setup button.

Method 6: Obtain MS Draw 97

If you are a registered Office user, you can download and install Microsoft Draw 97. MS Draw 97 makes the OfficeArt drawing tools available in any OLE- compliant application. You can obtain MS Draw 97 from the following Web site:

   http://www.microsoft.com/officefreestuff/


Additional query words: msdraw drawing picture ntword wordnt
Keywords : winword word6 word7 word95 kberrmsg kbole
Version : 6.0 6.0a 6.0c 7.0
Platform : WINDOWS
Issue type : kbbug
Solution Type : kbworkaround


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: August 4, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.