Process a combobox called from another userform
问题 I have a userform that contains a combobox where I can search through. If I recall this userform directly, the combobox works fine. If I instead start from another userform and press a button to open the userform with my combobox , the search won't work. I tried with "_Change". This is the applicable part of the first userform: If InStr(I1.Text, " ") > 0 Then New_Pat.First.Text = Left(I1.Text, Len(I1.Text) - 1 - (Len(I1.Text) - InStr(I1.Text, " "))) New_Pat.Second.Text = Right(I1.Text, Len(I1