-
Can I create multiple instances of a form? I have a search results page that displays a grid with records that match specific criteria defined by the user. I would like to give the ability to have multiple "Search Results" windows open at the same time.
Can I create mulptiple instances of a form that have the exact same layout with the only difference being the recordset that the grid is poulated from?
Thanks,
Kevin
VB6 w/SP4
-
Just use:
Code:
Dim other as New Form1
Dim different as New Form1
other.sRecSet = "SELECT ..."
different.sRecSet = "UPDATE ..."