|
-
Aug 29th, 2000, 02:55 AM
#1
Thread Starter
Frenzied Member
how do I randomize calls to functions
like will
randomize
call function1
call function2
call function3
work?
NXSupport - Your one-stop source for computer help
-
Aug 29th, 2000, 03:04 AM
#2
Try this:
Code:
Private Sub Command1_Click()
Randomize
retVal = Int((3 * Rnd) + 1)
If retVal = 1 Then Call function1
If retVal = 2 Then Call function2
If retVal = 3 Then Call function3
End Sub
-
Aug 29th, 2000, 03:06 AM
#3
Thread Starter
Frenzied Member
NXSupport - Your one-stop source for computer help
-
Aug 29th, 2000, 04:48 AM
#4
transcendental analytic
You could also do a select case without having to store the returned value
[code]
Randomize
select case Int(3 * Rnd)
case 0
Call function1
case 1
Call function2
case 2
Call function3
end select
[code]
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
|