Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Locate a File Using a File Open Dialog BoxContent of Locate a File Using a File Open Dialog Box.vbsMD5 Hash: 308147EA731B3A8F42B255331A339ED2 |
||
' Description: Demonstration script that displays a File Open dialog box (open to the folder C:\Scripts), and then echoes back the name of the selected file.
Set objDialog = CreateObject("UserAccounts.CommonDialog") objDialog.Filter = "VBScript Scripts|*.vbs|All Files|*.*" objDialog.FilterIndex = 1 objDialog.InitialDir = "C:\Scripts" intResult = objDialog.ShowOpen If intResult = 0 Then Wscript.Quit Else Wscript.Echo objDialog.FileName End If | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |