WD2000: wdDialogConvertObject Caption Property Returns Incorrect Value (220363)



The information in this article applies to:

  • Microsoft Word 2000

This article was previously published under Q220363

SYMPTOMS

When you insert an object into a document (on the Insert menu, click Object) and you have selected the Display as icon option, and
  • you change the Caption for the icon, -and-

  • you use the Visual Basic for Applications dialog collection to return the changed caption of the icon,
the value returned is not the new value of the object's icon caption.

For example, the following Visual Basic for Applications sample returns the object type instead of the new or changed icon caption for the selected object:
Sub GetObjIconCaption()
    Dim dlg As Dialog
    Set dlg = Application.Dialogs(wdDialogConvertObject)
    dlg.Update
    MsgBox dlg.Caption
End Sub
				

WORKAROUND

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. To work around this problem, you can use the IconLabel property of the OleFormat object to return the correct caption.

The following Visual Basic for Applications sample procedure loops through each inline object in a document and returns each object's caption:
Sub GetObjIconCaption()
   Dim OLEobj As Object   
   For Each OLEobj In ActiveDocument.InlineShapes
      MsgBox OLEobj.OLEFormat.IconLabel
   Next
End Sub
				

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.

MORE INFORMATION

To insert an object to display as an icon, you can use the following steps:
  1. On the Insert menu, click Object.
  2. In the Object type list box, scroll to select, for example, Microsoft Word Document.
  3. Click to select the Display as icon check box.
  4. Click OK.

REFERENCES

For more information about how to use the sample code in this article, click the article number below to view the article in the Microsoft Knowledge Base:

212536 OFF2000: How to Run Sample Code from Knowledge Base Articles

For more information about getting help with Visual Basic for Applications, please see the following Microsoft Knowledge Base article:

226118 OFF2000: Programming Resources for Visual Basic for Applications


Modification Type:MajorLast Reviewed:6/17/2005
Keywords:kbbug kbpending KB220363