Hello, I want to reduce the amount of Userforms in my project.
Now I read that it is possible to use same Userform multiple times.
So I tried the following:

UserForms.Add("Infobox").Show vbModeless
UserForms.Add("Infobox").Show vbModeless

Works fine so far. I will get 2 windows with textboxes inside.
But I don't know how to access the Textbox.
Ordinary, if I simply would have opened the Userform with "Infobox.Show vbModeless", the following would work to add some text:

Infobox.TextBox_Infobox.Value = "Halloooooooooooo"

Why doesn't this work with "Userforms.Add .. " ?
How and where do I find the names of these new created "windows" ?
Seems the Window or UserForm-Name isn't "Infobox" anymore ? Or are numbers added somewhere ?
Don't know .. Maybe someone can help .. would be great .. Thanks very much