|
-
Oct 11th, 2000, 11:28 PM
#1
Thread Starter
New Member
I have a collection of modal forms. I want to call one (and only one)by random using (formname).show vbmodal. When I close this form, the program continues to show forms from the collection endlessly.
-
Oct 12th, 2000, 11:10 AM
#2
Addicted Member
Show us some code and we can probably help you.
-
Oct 22nd, 2000, 05:26 PM
#3
Thread Starter
New Member
'in the declarations:
Private frmCorrect As New Collection
'in the sub:
frmCorrect((Int(Rnd * 3)) + 1).Show vbModal
-
Oct 22nd, 2000, 06:01 PM
#4
transcendental analytic
well that should do the trick, put it in a loop, and the code will wait for you to close the modal form
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|