PDA

View Full Version : Visual Basic 6 Help


Odain
10-17-2005, 08:24 PM
i am creating a database program and have 2 forms. one is a search form and the other is my display form. when i do my search on one form what is the best what to display the data related to the search in the display form. and also is there a way to make it where untill i do a new search that it uses the old search to display on other forms.


thanx in advance

Odain

TheShaner
10-17-2005, 09:27 PM
Well, I've done something similar before. What I did was create a table that was only used to store search results. When a search was done on one form, I'd then input it into that table. Then, your display form and other forms could always access that table for the results until a new search is ran.

-Shane