Loading multiple copies of a Form
I would like to know how to load multiple copies of a form.
Also if anyone can help, how can you make varibles in runtime? like say the contents of 2 varibles would make the text of 1 varible. Like A= Friend B= Frankie90222 so A+B would make the varible FriendFrankie90222, so you could now do FriendFrankie90222 = value
Re: Loading multiple copies of a Form
Quote:
Originally posted by Frankie902
Also if anyone can help, how can you make varibles in runtime? like say the contents of 2 varibles would make the text of 1 varible. Like A= Friend B= Frankie90222 so A+B would make the varible FriendFrankie90222, so you could now do FriendFrankie90222 = value
Not entirely sure what you're trying to ask, but why not just combine the variables into a third variable.
Code:
A = Friend
B = Frankie90222
C = A + B