Over 3000 Pages Of Reports, Books, Guides, Money-Making Ideas, Opportunities, Forms and Much More! With full text access to the reports, you can edit, format and print them as you wish. Use them to create advertisements, newsletters, press releases and booklets. You can also sell them as printed reports, or as report software by copying them onto floppy disks. Market them individually, or in sets. You can even market the CD-ROM!
Whether you are just getting started, or already operate a small or home-based business, the Report Broker 2000 CD-ROM is the perfect way to tap into the high-profit information publishing industry!
For complete details or to place your order, please visit http://www.quickreports.com
If you are not a paid subscriber, you must have signed up for our free trial at http://www.codeoftheweek.com. Our ezine is not an unsolicited message (in other words a spam email). Keep in mind that if you signed up for our free trial you can still receive a total of four issues at no cost to you. After you receive the four issues you will be notified about continuing your subscription.
If you do not wish to continue to receive this ezine, please email us at cancel@codeoftheweek.com
The source code in this issue is designed for Visual Basic 5.0 32-bit and above. It will work in VB 4.0 with small changes to the error handlers. It is geared towards the intermediate to advanced programmer.
If you have any questions about this issue, please email us at questions@codeoftheweek.com
This issue introduces a class for searching a directory and all its subdirectories for a particular file mask. This is similiar to the way the Find Files feature works in Windows 95.
There is one property and one method that are critical to using the cFindFiles class successfully.
Public Property Set StatusBox(txtStatus As Object) Public Function FindFiles(sPath As String, sSearchMask As String) As Collection
FindFiles will return a collection of matching filenames based on the sPath and sSearchMask. If any errors occur they will be raised to the caller.
If you want to additional criteria, we have added comments to an area in FindFiles where you can insert them. Some examples might be to search for files over a certain size or older than a certain number of days. This is a feature that one of our subscribers specifically asked for. If you have any source code you are interested in seeing in Code of the Week, email us at issueideas@codeoftheweek.com
This example shows how to use the cFindFiles class. It assumes you have a form with a label called lblStatus, a list box called lstFiles and two text boxes called txtPath and txtMask. txtPath will contain the path to start the search from (such as F:\ or C:\WINDOWS) and txtMask will be the file type to search for, such as *.txt or *.*
Dim cFind As New cFindFiles Dim Files As Collection Dim sFile As Variant Set cFind.StatusBox = lblStatus ' This is where the search path will be shown while searching Set Files = cFind.FindFiles(txtPath, txtMask, True) For Each sFile In Files lstFiles.AddItem sFile Next
To see the source code for this issue you must be a subscriber to Code of the Week. If you are a subscriber the source code is available at the following address: http://www.codeoftheweek.com/membersonly/bi/0044.html
That concludes this issue of COTW. We hope you find the source code useful in your development.
The below describes the ways you can supply us some feedback about COTW. We would like to see our members help mold COTW into the best Visual Basic source code resource available. But to do that we need your feedback about what you like and what you do not like about COTW.
If you are interested in advertising in COTW please email us at sponsor@codeoftheweek.com Our rates are VERY reasonable, actually they are almost FREE. We reach over three thousand Visual Basic developers each week.
If you have any suggestions for topics you would like to see covered or questions about this issue, please email them to info@codeoftheweek.com or use online feedback form at http://www.codeoftheweek.com/feedback.html.
If you have any source code you would like to submit for possible inclusion in COTW, please fill out our online submission form at http://www.codeoftheweek.com/submission.html.
Thank you for trying Code of the Week for Visual Basic.
Your free trial expires after you receive your fourth issue. If you want to continue to receive Code of the Week you can get 52 issues of COTW for only $19.95. This is a full year of Visual Basic source code and information to help with all your development. So don't wait, subscribe now! The quickest way to subscribe is to jump to our online order form at http://www.codeoftheweek.com/order.html