ajeeshco
Well-known member
Hi,
In my Application I would like to set the status of a Form's controls using another Form. For that, what I'm doing now is passing the reference of the FirstForm to the SecondForm during the creation of the SecondForm as follows
In my Application I would like to set the status of a Form's controls using another Form. For that, what I'm doing now is passing the reference of the FirstForm to the SecondForm during the creation of the SecondForm as follows
Dim secondForm As SecondForm = New SecondForm(Me)
and I could set the status of the controls of the FirstForm.
I would like to know whether there is any other way (better way) to do the same. Is this something related with design patterns then plz send me links for reference.
Thx in Advance
and I could set the status of the controls of the FirstForm.
I would like to know whether there is any other way (better way) to do the same. Is this something related with design patterns then plz send me links for reference.
Thx in Advance