I want to be able to click a command button and the "find file" or "search for" program appears. The program that run when you click 'Start...Find...'
________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first
'People who live in windowed environments shouldn't cast pointers.'
Private Sub Command1_Click()
With New Shell32.Shell
.FindFiles
End With
End Sub [/tt]
This requires that you make a reference to the Microsoft Shell Controls and Automation library (SHDOC401.DLL). And a word of warning: the library has a dependence of Shell32.dll; this needs to be version 4.71 or later (W98, Me, 2000, XP). The correct version may be installed on W95 and/or NT4 if IE4's Active Desktop components were ever installed
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.