Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Display the Find system dialog
[ All Languages » VB »  Windows]

Total Hit ( 3196)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


If you ever needed to programmatically enable your users to search for files, you certainly found useful the possibility of reusing the system Find dialog integrated in the Start menu and also available through the F3 key within the Explorer. The key to obtain such a dialog is the ShellExecute function:

Click here to copy the following block
Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" ( ByVal _
  hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, _
  ByVal lpParameters As String, _
  ByVal lpDirectory As String, ByVal nShowCmd As Long ) As Long

You just have to pass in the name of the directory from which you want the search to start as the lpFile argument. The lpOperation, instead, must be set to the string "find".

Click here to copy the following block
Const SW_SHOW = 5
ShellExecute Form1.hwnd, "find", "c:\", vbNullString, vbNullString, SW_SHOW


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.