Is it possible to fire a click event from one form in another form?
What basically happens is that I have a form (form1) with a combobox. The user can then:
1) Enter/Select a name in the combobox that already exist in the database and in the click event of the combobox some fields are populated.
2) Enter a name that doesn't exist and the program takes the user to a form (form2) where he then enters the relevant details that is then added to the database.
What I want to try and accomplish is to fire the combobox click event (on form1) from the form (form2) where the user entered the info so that the fields can get populated and be there once the user returns to the original form (form1 - the one with the combobox) so that it's not necessary to re-enter the combobox and select the newly entered name for the click event to be fired.
Is this possible and how to do this?
What basically happens is that I have a form (form1) with a combobox. The user can then:
1) Enter/Select a name in the combobox that already exist in the database and in the click event of the combobox some fields are populated.
2) Enter a name that doesn't exist and the program takes the user to a form (form2) where he then enters the relevant details that is then added to the database.
What I want to try and accomplish is to fire the combobox click event (on form1) from the form (form2) where the user entered the info so that the fields can get populated and be there once the user returns to the original form (form1 - the one with the combobox) so that it's not necessary to re-enter the combobox and select the newly entered name for the click event to be fired.
Is this possible and how to do this?