Hi all,
I want to open a secondary form from my main form, using
Dim form As New Form2
form.Show()
and after the secondary form is closed to run a subroutine on the main form. For some reason this code
Dim form As New Form2
form.Show()
loadCombo()
doesnt wait till the second form is closed but keeps running even when the other form is visible.
i would prefare not calling the loadCombo() sub from the other form, but if there is not an other way out of it, i guess i will have to
Thanks in advance
ilias
I want to open a secondary form from my main form, using
Dim form As New Form2
form.Show()
and after the secondary form is closed to run a subroutine on the main form. For some reason this code
Dim form As New Form2
form.Show()
loadCombo()
doesnt wait till the second form is closed but keeps running even when the other form is visible.
i would prefare not calling the loadCombo() sub from the other form, but if there is not an other way out of it, i guess i will have to
Thanks in advance
ilias