(c) 2002 Visual Studio Magazine 
Fawcette Technical Publications

Issue: March 2002
Section: Database Design
Author: Michael Domingo
Filename: vs0203dd


This ZIP contains:

- the complete project for the FindDBObjects add-in described in the article: finddbobjects.zip.

- the test project TestProject described in the article: testproject.zip.

- Listing 1 and Listing 2: listings.txt.


Note:

- The FindDBObjects Add-In is coded to use SQL Server Authentication. If you use
  Windows Integrated Security, you need to modify the code. In the GetDependencies
  method within the DBObjects class, change this line:

    .Connect sServer, "sa", ""

  to

    .LoginSecure = True
    .Connect sServer

- To compile the FindDBObject add-in:
    1) From within VB, select the "File" menu. Then select the "Make FindDBObject.dll..."
         menu item.
    2) Within the Make Project dialog box, select the FindDBObject project directory.
    3) Enter "FindDBObject.dll" in the filename text box.
    3) Click the OK button.