In my app I have a search routine and form that I built. This form grabs all the database field names and populates a list box for the user to select which field they would like to search in. Unfortunately doing this requires that I have all fields indexed (creating a large index file). What I would really like to do is just index the fields that make sense to search on (not all fields make sense to search them like taxable a logical field), and then have the combo box populated with those field names. The easiest way I can see to do this is to just grab the index tag names, but it evades me on how I can just grab tag names on each database to populate the listbox. Can some one help me?