View Full Version : Multiple Nondefault Instances of Forms


dennyryan
01-25-2000, 12:42 PM
I can't understand the description of how you create these instances from the Help information. Can anyone give me a more complete example of the VBA code than just the Dim statement that is provided in the Help text?

Thanks,

Denny

R. Hicks
01-25-2000, 01:50 PM
Denny,
I can't seem to get the question from your post. But today is Tuesday and I'm thinking of other things.
The DIM statement is use to declare something, example:

Dim intResponse as Integer

This is means I'm going to use "intResponse" for something and it will be an integer value.

HTH
RDH

[This message has been edited by R. Hicks (edited 01-25-2000).]

[This message has been edited by R. Hicks (edited 01-25-2000).]

Travis
01-25-2000, 09:15 PM
Are you trying to open the same form multiple times?

If you are let me know, I have the code for that. It is long though and a little complex but by the time your done you will have some understanding of how Collections work.