How do I get to learn the NAME of a dialog?
I know that there is a VBA constant that identifies it by type, but say I want to pop-up the dialog for defining a character style. Where in the name of help do I find the definition of the constant identifier?
The sample code below merely proves that the Type is an integer value.
Examination of the dlg object provides no clue as to the true identity of the dlg object.
<pre> Dim i As Integer
For i = 1 To Dialogs.Count
Dim dlg As Dialog
Set dlg = Dialogs(i)
On Error Resume Next
With dlg
Debug.Print .Type
End With
Next i
End Sub
</pre>



