Results 1 to 4 of 4

Thread: randomize

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    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

  2. #2
    Guest
    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

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    thanks
    NXSupport - Your one-stop source for computer help

  4. #4
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    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
  •  



Click Here to Expand Forum to Full Width