In VB 6 I have a form that can be opened by a number of other forms. This form needs to know which form opened it, is there a quick and easy way to do this other than setting a global variable of type form?
Kev. :eek2:
Printable View
In VB 6 I have a form that can be opened by a number of other forms. This form needs to know which form opened it, is there a quick and easy way to do this other than setting a global variable of type form?
Kev. :eek2:
One way would be to place the source Forms Name in the Forms .Tag.
Ie.
Form3.Tag = Me.Name
Form3.Show
Exactly what I was looking for.
Thanks Bruce
Kev.