RC-WinTrans Object Model Help |
Win32ShortcutDialog.Show
|
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 Win32ShortcutDialog
Set Dlg = Application.Tools.RestypeEditors.Win32ShortcutDialog
Dlg.Id = "ID_SHORTCUT_TEST"
Dlg.Key = "A"
Dlg.Type = "CONTROL SHIFT NOINVERT VIRTKEY"
If (Dlg.Show) Then
MsgBox "Changed Shortcut"
End If
|
See also: