How to generate cryptographically random numbers?

In visual basic, how to generate a random no. from a list of numbers.?

  • i mean, i want to insert some specific numbers in a list, then generate a random number from that list. how to do that??please help with the coding!!thnks!!

  • Answer:

    I can't help you with the coding. It's been years since I did anything with VB. But try entering the #s in an array n elements long, and then use the random number generator to generate a number between 1 and n. Round the results to an integer, and use that as the index into the array. And be sure to tell the teacher you got the answer from someone online.

NayaMee at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

Sub randoom() Dim myNumbers(10) As Integer myNumbers(1) = 13 myNumbers(2) = 14 . . . . Dim myIndex As Integer myIndex = Int(10 * Rnd()) MsgBox myNumbers(myIndex) End Sub

FlashDarkness

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.