IShellDispatch.RefreshMenu 方法
重新整理 [ 開始 ] 功能表的內容。 僅適用于 Windows XP 之前的系統。
語法
IShellDispatch.RefreshMenu()
IShellDispatch.RefreshMenu()
參數
這個方法沒有任何參數。
傳回值
JScript
這個方法不會傳回值。
VB
這個方法不會傳回值。
備註
此方法是透過 Shell.TrayProperties 方法實作和存取。
RefreshMenu提供的功能會在 Windows XP 或更新版本下自動處理。 請勿在 Windows XP 或更新版本上呼叫此方法。
範例
下列範例示範在 JScript、VBScript 和 Visual Basic 中使用 RefreshMenu 。
Jscript:
<script language="JScript">
function fnShellRefreshMenuJ()
{
var objShell = new ActiveXObject("shell.application");
objshell.RefreshMenu();
}
</script>
VBScript:
<script language="VBScript">
function fnShellRefreshMenuVB()
dim objShell
set objShell = CreateObject("shell.application")
objshell.RefreshMenu
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnShellRefreshMenuVB()
Dim objShell As Shell
Set objShell = New Shell
objshell.RefreshMenu
Set objShell = Nothing
End Sub
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 |
Windows 2000 專業版、Windows XP [僅限傳統型應用程式] |
最低支援的伺服器 |
Windows 2000 Server [僅限傳統型應用程式] |
標頭 |
|
Idl |
|
DLL |
|