Makes the dialog visible. Returns "True" if the dialog has been closed with the OK button, otherwise "False."

Syntax:

Show() As Boolean
Return: Boolean
Example:
Dim Dlg As DotNetShortcutDialog
Dim Shortcut As String

Set Dlg = Application.Tools.RestypeEditors.DotNetShortcutDialog

Dlg.Shortcut = "CtrlA"
If (Dlg.Show) Then
    Shortcut = Dlg.Shortcut
End If

See also:

Class DotNetShortcutDialog


Last Updated: 04/26/05