IShellDispatch.FindFiles メソッド
[ 検索: すべてのファイル ] ダイアログ ボックスを表示します。 これは、[ スタート ] メニューをクリックし、[ 検索] を選択した場合と同じです。
構文
IShellDispatch.FindFiles()
IShellDispatch.FindFiles()
パラメーター
このメソッドにはパラメーターはありません。
戻り値
JScript
このメソッドは値を返しません。
VB
このメソッドは値を返しません。
解説
このメソッドは、 Shell.FindFiles メソッドを使用して実装され、アクセスされます。
例
次の例は、JScript、VBScript、Visual Basic での FindFiles の使用を示しています。
Jscript:
<script language="JScript">
function fnShellFindFilesJ()
{
var objShell = new ActiveXObject("shell.application");
objShell.FindFiles();
}
</script>
Vbscript:
<script language="VBScript">
function fnShellFindFilesVB()
dim objShell
set objShell = CreateObject("shell.application")
objshell.FindFiles
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnShellFindFilesVB()
Dim objShell As Shell
Set objShell = New Shell
objShell.FindFiles
Set objShell = Nothing
End Sub
要件
要件 | 値 |
---|---|
サポートされている最小のクライアント |
Windows 2000 Professional、Windows XP [デスクトップ アプリのみ] |
サポートされている最小のサーバー |
Windows 2000 Server [デスクトップ アプリのみ] |
ヘッダー |
|
IDL |
|
[DLL] |
|