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
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:
- How to add a contact to a specific list?Best solution by Stack Overflow
- How to add a list to the existing list jQuery?Best solution by designchemical.com
- How to block a friend in a friend list?Best solution by Yahoo! Answers
- How to solve a random yellow-printing problem?Best solution by lexmark.com
- How to delete a contact from a favorite list?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.