Hey there.
I have several instances of one form loaded. They all have an instantiated variable "Name." How do I select one of these forms based on the name variable?
Code:Public Sub MakeForms()
Dim x as New frmBlack(me)
x.show
End Sub
Printable View
Hey there.
I have several instances of one form loaded. They all have an instantiated variable "Name." How do I select one of these forms based on the name variable?
Code:Public Sub MakeForms()
Dim x as New frmBlack(me)
x.show
End Sub
Can you provide more details, please ¿
It doesn't seem like there's all that much more to tell, honestly. I made numerous instances of the same form. I need to look through all of them till I find the one with the given "Name" variable. The problem is, I have no idea how to do that. :p
I haven't tried this, but would CallByname help. I have a post saved for you
http://www.codeguru.com/forum/showthread.php?t=338766